/* css/theme-monolith.css - Тема Премиальных Хай-Тек Вилл (Темная) */

/* Применяется при body.theme-monolith */
body.theme-monolith {
    background-color: #121212;
    color: #F0F0F0;
    font-family: 'Montserrat', sans-serif;
}

body.theme-monolith h1,
body.theme-monolith h2,
body.theme-monolith h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}

/* Переменные темы */
:root {
    --mono-bg: #121212;             /* Матовый черный */
    --mono-bg-darker: #0A0A0A;      /* Глубокий черный */
    --mono-accent: #D4AF37;         /* Благородное золото */
    --mono-accent-hover: #F3E5AB;   /* Светло-золотой */
    --mono-text: #E5E5E5;           /* Белый */
    --mono-text-muted: #8E8E93;     /* Приглушенный серый */
    --mono-border: rgba(212, 175, 55, 0.2);
    --mono-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    --wa-gold: #D4AF37;
    --wa-gold-hover: #c49f27;
}

/* Шапка (Header) */
.mono-header {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--mono-border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.mono-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
    flex-shrink: 0;
    white-space: nowrap;
}

.logo-text-mono {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: white;
}

.logo-subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--mono-accent);
    margin-top: 4px;
    text-transform: uppercase;
}

body.theme-monolith .header-container {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    height: 80px;
    gap: 24px;
}

.mono-nav {
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-start;
    gap: clamp(14px, 1.5vw, 28px);
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
}

.mono-nav a {
    text-decoration: none;
    color: var(--mono-text);
    font-weight: 500;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
}

.mono-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--mono-accent);
    transition: width 0.3s ease;
}

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

.mono-nav a:hover::after {
    width: 100%;
}

body.theme-monolith .header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-shrink: 0;
    white-space: nowrap;
}

.mono-phone {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 0.84rem;
    transition: color 0.2s;
    letter-spacing: 0.03em;
    white-space: nowrap;
    flex-shrink: 0;
}

.mono-phone:hover {
    color: var(--mono-accent);
}

.mono-btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background-color: transparent;
    border: 1px solid var(--mono-accent);
    color: var(--mono-accent);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.mono-btn-wa:hover {
    background-color: var(--mono-accent);
    color: black;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

@media (max-width: 1500px) {
    body.theme-monolith .header-container {
        gap: 16px;
    }

    .mono-nav {
        gap: 14px;
    }

    body.theme-monolith .header-actions {
        gap: 12px;
    }

    .mono-phone {
        display: none;
    }

    .mono-btn-wa {
        padding: 11px 16px;
        font-size: 0.69rem;
        letter-spacing: 0.1em;
    }
}

/* Герой-секция (Hero) */
.mono-hero {
    padding: 150px 0 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.mono-hero-container {
    position: relative;
    z-index: 2;
}

.mono-hero-content {
    max-width: 750px;
}

.mono-subtitle-top {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--mono-accent);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.mono-hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.mono-hero-text {
    font-size: 1.15rem;
    color: var(--mono-text-muted);
    margin-bottom: 45px;
    max-width: 600px;
    line-height: 1.7;
}

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

.mono-btn-primary {
    display: inline-block;
    padding: 18px 36px;
    background-color: var(--mono-accent);
    color: black;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.mono-btn-primary:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.mono-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.mono-btn-secondary:hover {
    border-color: var(--mono-accent);
    color: var(--mono-accent);
    transform: translateY(-2px);
}

.pulse-gold {
    width: 8px;
    height: 8px;
    background-color: var(--mono-accent);
    border-radius: 50%;
    position: relative;
}

.pulse-gold::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 14px;
    height: 14px;
    border: 1px solid var(--mono-accent);
    border-radius: 50%;
    animation: goldPulse 2s infinite;
}

@keyframes goldPulse {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Общие Секции */
.mono-section {
    padding: 120px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.mono-bg-darker {
    background-color: var(--mono-bg-darker);
}

.mono-section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.mono-section-heading h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.mono-section-heading p {
    color: var(--mono-text-muted);
    font-size: 1.05rem;
}

/* Грид философии */
.mono-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mono-philosophy-card {
    background-color: var(--mono-bg-darker);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mono-philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mono-accent), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mono-philosophy-card:hover {
    transform: translateY(-5px);
    border-color: var(--mono-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.mono-philosophy-card:hover::before {
    transform: scaleX(1);
}

.mono-card-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    color: var(--mono-accent);
    margin-bottom: 30px;
    font-weight: 700;
}

.mono-philosophy-card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mono-philosophy-card p {
    color: var(--mono-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Портфолио */
.mono-portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.mono-portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.portfolio-item-visual {
    height: 400px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mono-item-icon {
    opacity: 0.4;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
}

.mono-svg-inner {
    width: 80px;
    height: 80px;
    stroke: var(--mono-accent);
}

.mono-portfolio-item:hover .mono-item-icon {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.85;
}

.portfolio-item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.item-location {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--mono-accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.portfolio-item-info h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.portfolio-item-info p {
    color: var(--mono-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.item-specs {
    display: flex;
    gap: 40px;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

.mono-item-wa {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--mono-accent);
    padding-bottom: 4px;
    transition: all 0.3s;
}

.mono-item-wa:hover {
    color: var(--mono-accent);
    padding-left: 8px;
}

.item-reverse .portfolio-item-visual {
    order: 2;
}
.item-reverse .portfolio-item-info {
    order: 1;
}

/* Конфигуратор Премиум (Mono Calc) */
.mono-calc-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.mono-calc-options {
    background-color: var(--mono-bg-darker);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 4px;
}

.calc-control-group {
    margin-bottom: 35px;
}

.calc-control-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.mono-radio-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mono-btn-radio {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    padding: 16px 20px;
    color: var(--mono-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.mono-btn-radio input {
    display: none;
}

.mono-btn-radio:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.mono-btn-radio.active {
    border-color: var(--mono-accent);
    color: var(--mono-accent);
    background-color: rgba(212, 175, 55, 0.03);
}

.mono-select-custom select {
    width: 100%;
    padding: 16px 20px;
    background-color: var(--mono-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
}

.mono-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mono-checkbox-label {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--mono-text-muted);
    user-select: none;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 500 !important;
}

.mono-checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: -2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
}

.mono-checkbox-label:hover input ~ .checkmark {
    border-color: var(--mono-accent);
}

.mono-checkbox-label input:checked ~ .checkmark {
    background-color: var(--mono-accent);
    border-color: var(--mono-accent);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.mono-checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.mono-checkbox-label .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.mono-checkbox-label input:checked ~ span {
    color: white;
}

/* Результат конфигуратора */
.mono-calc-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mono-result-box {
    background-color: var(--mono-bg-darker);
    border: 1px solid var(--mono-border);
    padding: 50px 40px;
    position: relative;
}

.mono-result-title {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--mono-text-muted);
    font-weight: 700;
}

.mono-result-price {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 2.6rem;
    color: var(--mono-accent);
    font-weight: 800;
    margin: 15px 0 25px;
    letter-spacing: -0.03em;
}

.mono-result-disclaimer {
    font-size: 0.8rem;
    color: var(--mono-text-muted);
    line-height: 1.5;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mono-result-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mono-result-form input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.mono-result-form input:focus {
    border-color: var(--mono-accent);
}

.mono-calc-submit-btn {
    width: 100%;
    padding: 18px;
    background-color: var(--mono-accent);
    color: black;
    border: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.mono-calc-submit-btn:hover {
    background-color: white;
    box-shadow: 0 10px 25px rgba(212,175,55,0.2);
}

/* Формы обратной связи VIP */
.mono-contacts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mono-contacts-left h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.mono-contacts-left p {
    color: var(--mono-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 45px;
}

.mono-contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mono-c-link {
    font-size: 1rem;
    color: white !important;
    margin-bottom: 0 !important;
}

.mono-c-link span {
    color: var(--mono-accent);
    font-weight: 700;
    margin-right: 10px;
}

.mono-contacts-right {
    background-color: var(--mono-bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 45px;
}

.mono-vip-form h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mono-input-group {
    position: relative;
    margin-bottom: 30px;
}

.mono-input-group input {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}

.mono-input-group label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 0.9rem;
    color: var(--mono-text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
}

.mono-input-group input:focus ~ label,
.mono-input-group input:not(:placeholder-shown) ~ label {
    top: -12px;
    font-size: 0.75rem;
    color: var(--mono-accent);
    letter-spacing: 0.1em;
}

.mono-input-group input:focus {
    border-bottom-color: var(--mono-accent);
}

.mono-form-submit-btn {
    width: 100%;
    padding: 18px;
    background-color: transparent;
    border: 1px solid var(--mono-accent);
    color: var(--mono-accent);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s;
}

.mono-form-submit-btn:hover {
    background-color: var(--mono-accent);
    color: black;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

/* Подвал */
.mono-footer {
    background-color: #080808;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 40px 0;
    font-size: 0.8rem;
}

.mono-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--mono-text-muted);
    flex-wrap: wrap;
    gap: 20px;
}

.mono-footer-content a {
    color: var(--mono-accent);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.mono-footer-content a:hover {
    color: white;
}

/* ========================================== */
/* НОВЫЕ БЛОКИ: УСЛУГИ, О КОМПАНИИ, ЭТАПЫ, ОТЗЫВЫ, FAQ, КОНТАКТЫ */
/* ========================================== */

/* Услуги списком */
.mono-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.mono-service-box {
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mono-service-box:hover {
    border-color: var(--mono-accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.mono-service-box h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.mono-service-box p {
    font-size: 0.9rem;
    color: var(--mono-text-muted);
    line-height: 1.6;
}

/* О компании */
.mono-about-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}
.mono-about-left h2 {
    font-size: 2.8rem;
    color: white;
    margin: 16px 0 24px;
    line-height: 1.2;
    text-transform: uppercase;
}
.mono-about-left p {
    font-size: 1.05rem;
    color: var(--mono-text-muted);
    line-height: 1.7;
}
.mono-about-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.mono-stat-card {
    background: var(--mono-bg-darker);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}
.mono-stat-card:hover {
    border-color: var(--mono-accent);
}
.mono-stat-number {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--mono-accent);
    line-height: 1;
    margin-bottom: 12px;
}
.mono-stat-label {
    font-size: 0.85rem;
    color: var(--mono-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Этапы работы */
.mono-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.mono-step-card {
    background: #161616;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
}
.mono-step-card:hover {
    border-color: var(--mono-accent);
    transform: translateY(-5px);
}
.step-num-gold {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mono-accent);
    margin-bottom: 24px;
    display: inline-block;
}
.mono-step-card h3 {
    font-size: 1.2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.mono-step-card p {
    font-size: 0.85rem;
    color: var(--mono-text-muted);
    line-height: 1.6;
}

/* Отзывы */
.mono-reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.mono-review-box {
    background: var(--mono-bg-darker);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    transition: all 0.3s ease;
}
.mono-review-box:hover {
    border-color: var(--mono-accent);
}
.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #222;
    border: 1px solid var(--mono-accent);
    color: var(--mono-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}
.reviewer-meta h4 {
    font-size: 1.15rem;
    color: white;
    font-weight: 600;
}
.reviewer-meta p {
    font-size: 0.8rem;
    color: var(--mono-text-muted);
}
.reviewer-text {
    font-size: 0.95rem;
    color: var(--mono-text-muted);
    line-height: 1.7;
    font-style: italic;
}

/* FAQ Accordion */
body.theme-monolith .faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
body.theme-monolith .faq-item {
    background: var(--mono-bg-darker);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}
body.theme-monolith .faq-item.active {
    border-color: var(--mono-accent);
}
body.theme-monolith .faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 32px;
    background: none;
    border: none;
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}
body.theme-monolith .faq-question:hover {
    color: var(--mono-accent);
}
body.theme-monolith .faq-arrow {
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--mono-accent);
    border-right: 2px solid var(--mono-accent);
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}
body.theme-monolith .faq-item.active .faq-arrow {
    transform: rotate(-135deg);
}
body.theme-monolith .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 32px;
}
body.theme-monolith .faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}
body.theme-monolith .faq-answer p {
    font-size: 0.9rem;
    color: var(--mono-text-muted);
    line-height: 1.6;
}

/* Контакты */
.mono-contacts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.mono-contacts-left h2 {
    font-size: 2.8rem;
    color: white;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.mono-contacts-left p {
    font-size: 1.05rem;
    color: var(--mono-text-muted);
    margin-bottom: 40px;
}
.mono-contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mono-c-link {
    font-size: 0.95rem;
    color: white;
}
.mono-c-link span {
    color: var(--mono-accent);
    font-weight: 700;
    margin-right: 8px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}
.mono-contacts-right {
    background: #1A1A1A;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px 40px;
    position: relative;
}
.mono-vip-form h3 {
    font-size: 1.4rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}
.mono-input-group {
    position: relative;
    margin-bottom: 24px;
}
.mono-input-group input {
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    color: white;
    font-size: 1rem;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s;
}
.mono-input-group input:focus {
    border-color: var(--mono-accent);
}
.mono-input-group label {
    position: absolute;
    top: 16px;
    left: 0;
    color: var(--mono-text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.mono-input-group input:focus + label,
.mono-input-group input:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 0.75rem;
    color: var(--mono-accent);
    letter-spacing: 0.05em;
}
.mono-form-submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--mono-accent);
    color: black;
    border: none;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.mono-form-submit-btn:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(255,255,255,0.1);
}

/* ========================================== */
/* АДАПТИВНОСТЬ ДЛЯ ТЕМЫ MONOLITH              */
/* ========================================== */
@media (max-width: 992px) {
    body.theme-monolith .header-container {
        grid-template-columns: auto auto;
        gap: 12px;
        height: auto;
        padding: 14px 0;
    }

    .mono-nav {
        display: none;
    }

    .mono-services-grid,
    .mono-about-container,
    .mono-steps-grid,
    .mono-reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mono-philosophy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .mono-portfolio-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .portfolio-item-visual {
        height: 300px;
    }
    .item-reverse .portfolio-item-visual {
        order: 0;
    }
    .item-reverse .portfolio-item-info {
        order: 1;
    }
    .mono-calc-wrapper {
        grid-template-columns: 1fr;
    }

    .mono-contacts-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .mono-hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    body.theme-monolith,
    body.theme-monolith #monolith-site,
    body.theme-monolith .mono-section,
    body.theme-monolith .mono-header,
    body.theme-monolith .mono-hero {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body.theme-monolith .container,
    body.theme-monolith .header-container,
    .mono-services-grid,
    .mono-service-box,
    .mono-section-heading,
    .mono-section-heading h2,
    .mono-section-heading p {
        min-width: 0;
        max-width: 100%;
    }

    body.theme-monolith .container {
        width: 100vw;
        max-width: 100vw;
        margin-left: 0;
        margin-right: 0;
        padding-left: 16px;
        padding-right: 16px;
    }

    .logo-text-mono {
        font-size: 1.08rem;
        letter-spacing: 0.18em;
    }

    .logo-subtext {
        font-size: 0.5rem;
        letter-spacing: 0.14em;
    }

    .mono-btn-wa {
        padding: 10px 12px;
        font-size: 0.63rem;
        letter-spacing: 0.08em;
    }

    .mono-hero-content {
        max-width: none;
    }

    .mono-hero-content h1 {
        font-size: 2.3rem;
        text-wrap: balance;
    }

    .mono-hero {
        min-height: auto;
        padding: 100px 0 70px;
        background-position: center;
    }

    .mono-hero-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .mono-hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    .mono-btn-primary, .mono-btn-secondary {
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    .mono-services-grid,
    .mono-philosophy-grid,
    .mono-steps-grid,
    .mono-reviews-grid {
        gap: 18px;
    }

    .portfolio-item-info h3,
    .mono-about-left h2,
    .mono-contacts-left h2 {
        font-size: 1.9rem;
    }

    .item-specs {
        flex-direction: column;
        gap: 10px;
    }

    .mono-calc-options,
    .mono-result-box,
    .mono-contacts-right,
    .mono-review-box,
    .mono-service-box,
    .mono-step-card,
    .mono-philosophy-card {
        padding: 24px 18px;
    }

    .mono-calc-wrapper,
    .mono-calc-options,
    .mono-calc-result,
    .mono-result-box,
    .mono-radio-buttons,
    .mono-checkboxes,
    .mono-result-form {
        min-width: 0;
        max-width: 100%;
        overflow-x: hidden;
    }

    .calc-control-group label,
    .mono-checkbox-label,
    .mono-checkbox-label span,
    .mono-btn-radio,
    .mono-result-title,
    .mono-result-disclaimer,
    .mono-calc-submit-btn {
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .mono-result-price {
        max-width: 100%;
        font-size: clamp(1.55rem, 8vw, 2rem);
        line-height: 1.1;
        white-space: normal;
        overflow-wrap: anywhere;
        letter-spacing: 0;
    }

    .mono-calc-submit-btn {
        min-height: 52px;
        padding: 14px 12px;
        font-size: 0.72rem;
        line-height: 1.25;
        letter-spacing: 0.08em;
    }

    body.theme-monolith .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
        gap: 12px;
    }

    body.theme-monolith .faq-answer {
        padding: 0 20px;
    }

    body.theme-monolith .faq-item.active .faq-answer {
        padding-bottom: 18px;
    }

    .mono-section {
        padding: 80px 0;
    }
    .mono-section-heading h2 {
        font-size: 2rem;
        overflow-wrap: anywhere;
    }

    .mono-service-box h4,
    .mono-service-box p {
        overflow-wrap: anywhere;
    }

    .mono-contacts-right {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .logo-text-mono {
        font-size: 0.96rem;
        letter-spacing: 0.14em;
    }

    .mono-btn-wa {
        min-width: 66px;
        padding: 9px 10px;
        font-size: 0.58rem;
        letter-spacing: 0.06em;
    }

    .mono-btn-wa span {
        display: none;
    }

    .mono-btn-wa::after {
        content: 'VIP';
    }

    .mono-hero-content h1,
    .mono-section-heading h2,
    .portfolio-item-info h3,
    .mono-about-left h2,
    .mono-contacts-left h2 {
        font-size: 1.7rem;
    }
}
