/* ===== RESET & BASE ===== */
:root {
    --black: #000000;
    --orange: #FF6B00;
    --orange-light: #FF8E53;
    --orange-dark: #CC5500;
    --gray-dark: #1A1A1A;
    --gray: #2D2D2D;
    --gray-light: #4A4A4A;
    --white: #FFFFFF;
    --cream: #F8F5F0;
    
    --font-sans: 'Inter', -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-mono: 'Manrope', monospace;
    
    --container: 1400px;
    --gutter: 2rem;
    
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== ПРЕЛОАДЕР ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--transition);
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    margin-bottom: 2rem;
    animation: rotate 3s linear infinite;
}

.preloader-text {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray);
}

.preloader.loaded {
    opacity: 0;
    pointer-events: none;
}

/* ===== АРХИТЕКТУРНАЯ НАВИГАЦИЯ ===== */
.arch-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-mark {
    font-size: 2rem;
    line-height: 1;
    color: var(--orange);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-primary {
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--gray-light);
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    display: flex;
    flex-direction: row;        /* горизонтальное расположение */
    align-items: center;        /* вертикальное выравнивание по центру */
    gap: 0.25rem;               /* небольшой отступ между текстом и стрелкой */
    transition: color 0.3s var(--transition);
}

.nav-number {
    font-size: 0.6875rem;
    color: var(--orange);
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.nav-label {
    font-size: 0.875rem;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--orange);
}

.nav-divider {
    width: 1px;
    height: 1.5rem;
    background: rgba(0, 0, 0, 0.1);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s var(--transition);
}

.nav-phone:hover {
    color: var(--orange);
}

.nav-cta {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 20px;
    position: relative;
}

.nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--black);
    transition: 0.3s var(--transition);
}

.nav-toggle span:first-child {
    top: 0;
}

.nav-toggle span:last-child {
    bottom: 0;
}

/* ===== НОВАЯ НАВИГАЦИЯ ===== */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: row;        /* горизонтально */
    align-items: center;        /* центрирование */
    gap: 0.25rem;               /* отступ между текстом и стрелкой */
}

.dropdown-icon {
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: transform 0.3s var(--transition);
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -2rem;
    width: 500px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--transition);
    z-index: 1000;
    padding: 2rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.dropdown-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--black);
    border-radius: 0.5rem;
    transition: all 0.3s var(--transition);
}

.dropdown-item:hover {
    background: rgba(255, 107, 0, 0.1);
    color: var(--orange);
    transform: translateX(5px);
}

.dropdown-item .dropdown-icon {
    font-size: 1rem;
    color: var(--orange);
}

.nav-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 1.5rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.contact-line i {
    color: var(--orange);
    font-size: 0.75rem;
}

.contact-line a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s var(--transition);
}

.contact-line a:hover {
    color: var(--orange);
}

/* ===== HERO - АРХИТЕКТУРНЫЙ ЧЕРТЁЖ ===== */
.hero-engineering {
    position: relative;
    min-height: 92vh;
    padding: 140px 40px 60px;
    background: 
        linear-gradient(
            90deg,
            rgba(15, 15, 15, 0.25) 0%,
            rgba(15, 15, 15, 0.15) 40%,
            transparent 70%
        ),
        url("media/hero.jpg") center right / cover no-repeat;
    overflow: hidden;
}

.architectural-coordinates {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    z-index: 2;
}

.architectural-coordinates .coord {
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.architectural-markers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.architectural-markers .marker {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulseMarker 3s ease-in-out infinite;
}

.architectural-markers .marker::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    animation: pulseMarkerRing 3s ease-in-out infinite;
}

@keyframes pulseMarker {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes pulseMarkerRing {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Основная композиция */
.hero-arch-composition {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 3;
}

/* === ЗОНА А: АННОТАЦИИ === */
.arch-annotation-zone {
    padding-top: 40px;
}

.annotation-main {
    position: relative;
    margin-bottom: 60px;
}

.annotation-line {
    position: absolute;
    left: -40px;
    top: 40px;
    bottom: -20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange), transparent);
}

.annotation-content {
    padding-left: 30px;
}

.annotation-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--orange);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 52px;
    line-height: 1.1;
    color: white;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title .title-line {
    display: block;
}

.hero-title .title-line.line-3 {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

.hero-title .title-line.line-3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    animation: lineDraw 1.2s ease forwards;
    animation-delay: 1s;
}

@keyframes lineDraw {
    to { transform: scaleX(1); }
}

.annotation-subtitle {
    max-width: 500px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.annotation-subtitle .subtitle-line {
    width: 40px;
    height: 1px;
    background: var(--orange);
    margin-bottom: 15px;
}

.annotation-subtitle p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Технические спецификации */
.tech-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.spec {
    text-align: center;
    position: relative;
}

.spec-value {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
}

.spec-label {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.spec-line {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--orange);
}

/* Дополнительные кнопки */
.hero-additional-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.hero-additional-actions .action-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-additional-actions .action-btn:hover {
    background: rgba(255, 107, 0, 0.2);
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.2);
}

.hero-additional-actions .action-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 0, 0.2);
    border-radius: 10px;
    flex-shrink: 0;
}

.hero-additional-actions .action-icon svg {
    width: 22px;
    height: 22px;
}

.hero-additional-actions .action-content {
    flex: 1;
}

.hero-additional-actions .action-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.hero-additional-actions .action-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* === ЗОНА B: ФОРМА === */
.arch-form-zone {
    padding-top: 30px;
}

.engineering-module {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.module-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 107, 0, 0.1);
}

.module-badge {
    font-size: 28px;
    margin-bottom: 15px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.module-title {
    font-size: 22px;
    color: white;
    margin-bottom: 8px;
}

.module-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

/* Форма */
.engineering-form {
    padding: 30px;
}

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

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.label-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 0, 0.2);
    border-radius: 6px;
    font-size: 12px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Разделитель */
.form-divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.divider-text {
    position: relative;
    display: inline-block;
    padding: 0 15px;
    background: rgba(10, 10, 10, 0.7);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Кнопка отправки */
.tg-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 25px;
    background: linear-gradient(135deg, var(--orange), #ff8c1a);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.tg-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
}

.btn-icon {
    font-size: 18px;
}

.btn-text {
    flex: 1;
    text-align: left;
}

.btn-arrow {
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.tg-submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Индикатор */
.form-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.indicator-dot {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    50% { opacity: 1; box-shadow: 0 0 0 8px rgba(0, 255, 136, 0); }
}

.indicator-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== СЕЛЕКТОР ПРОФИЛЕЙ ===== */
.profile-selector-engineer {
    position: relative;
    padding: 2rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    overflow: hidden;
    margin-top: 1rem;
}

/* Архитектурный фон */
.engineering-blueprint-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.blueprint-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255, 107, 0, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 107, 0, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.blueprint-axes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
}

.axis {
    position: absolute;
    background: rgba(255, 107, 0, 0.2);
}

.x-axis {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
}

.y-axis {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
}

.origin-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--orange);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: floatElement 20s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 70%;
    right: 15%;
    animation-delay: 5s;
}

.element-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes floatElement {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -20px) rotate(90deg); }
    50% { transform: translate(-20px, 30px) rotate(180deg); }
    75% { transform: translate(-30px, -10px) rotate(270deg); }
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 2;
}

/* Компактный заголовок */
.engineer-title-container {
    text-align: center;
    margin-bottom: 3rem;
}

.compact-stamp {
    display: inline-block;
    position: relative;
    padding: 1rem 0;
}

.stamp-line {
    width: 60px;
    height: 3px;
    background: var(--orange);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.stamp-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-align: center;
    display: block;
}

.stamp-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.02em;
}


/* Техническая спецификация */
.panel-technical {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.technical-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--orange);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.technical-data {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.data-item {
    flex: 1;
}

.data-value {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.data-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

/* Навигация */
.profile-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.nav-dots {
    display: flex;
    gap: 0.5rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--orange);
    transform: scale(1.2);
}

.nav-instruction {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    backdrop-filter: blur(10px);
}

.nav-instruction i {
    color: var(--orange);
}

.nav-instruction span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Премиальная статистика */
.engineering-stats-premium {
    margin-top: 4rem;
    padding: 2rem 0;
    background: linear-gradient(
        180deg,
        rgba(255, 107, 0, 0.1) 0%,
        transparent 100%
    );
    border-top: 1px solid rgba(255, 107, 0, 0.2);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon-wrapper {
    position: relative;
}

.stat-icon-inner {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 0, 0.2);
    border-radius: 0.75rem;
    color: var(--orange);
    font-size: 1.25rem;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== ФИЛОСОФИЯ ===== */
.philosophy {
    padding: 10rem 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 6rem;
    text-align: center;
}

.section-sequence {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.philosophy-card {
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s var(--transition);
}

.philosophy-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.card-icon {
    width: 48px;
    height: 48px;
}

.card-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--orange);
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-desc {
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.card-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-keywords span {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 107, 0, 0.1);
    color: var(--orange);
    border-radius: 2rem;
}

.philosophy-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
    background: var(--black);
    color: var(--white);
    border-radius: 1rem;
}

.cta-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cta-text p {
    opacity: 0.7;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition);
}

.cta-btn:hover {
    background: var(--orange-dark);
    transform: translateX(4px);
}

/* ===== ИНЖЕНЕРНЫЙ АТЛАС ===== */


.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
}

.map-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.7;
}


.projects-header h3 {
    font-size: 1.5rem;
}

.projects-filter {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.projects-grid {
    display: grid;
    gap: 1.5rem;
}

/* ===== СИСТЕМЫ ===== */
.systems {
    padding: 8rem 0;
}

.systems-tabs {
    margin-top: 4rem;
}

/* Улучшаем навигацию табов */
.tabs-nav {
    display: flex;
    gap: 1px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tab-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0.5rem;
    background: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    text-align: center;
    position: relative;
    min-height: 90px;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: white;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.1);
}

.tab-btn.active::before {
    background: var(--orange);
}

.tab-btn.active .tab-title {
    color: var(--orange);
    font-weight: 600;
}

.tab-btn.active .tab-sub {
    color: var(--orange);
    opacity: 0.8;
}

.tab-btn:hover:not(.active) {
    background: rgba(255, 107, 0, 0.03);
    transform: translateY(-2px);
}

.tab-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--black);
    transition: color 0.3s ease;
}

.tab-sub {
    font-size: 0.8rem;
    opacity: 0.7;
    color: var(--gray-light);
    transition: color 0.3s ease;
}

/* Адаптивность табов */
@media (max-width: 992px) {
    .tabs-nav {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1 0 calc(33.333% - 1px);
        min-height: 80px;
        padding: 1rem 0.5rem;
    }
}

@media (max-width: 768px) {
    .tab-btn {
        flex: 1 0 calc(50% - 1px);
        min-height: 70px;
    }
    
    .tab-title {
        font-size: 0.9rem;
    }
    
    .tab-sub {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        flex: 1 0 100%;
    }
    
    .tabs-nav {
        border-radius: 8px;
    }
}
/* Улучшаем содержимое табов */
.tabs-content {
    position: relative;
    min-height: 500px;
}

.tab-pane {
    animation: fadeIn 0.5s ease;
}

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

/* Улучшаем блок с деталями системы */
.system-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.detail-visual {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.visual-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: 
        translateX(calc(var(--layer-index) * 20px))
        translateY(calc(var(--layer-index) * 20px));
    transition: all 0.6s var(--transition);
    border-radius: 8px;
}

.layer:hover {
    transform: 
        translateX(calc(var(--layer-index) * 20px))
        translateY(calc(var(--layer-index) * 20px))
        scale(1.03);
    border-color: var(--orange);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.2);
}

.layer-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s var(--transition);
    backdrop-filter: blur(5px);
}

.layer:hover .layer-label {
    opacity: 1;
}

.detail-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 600;
}

.detail-desc {
    color: var(--gray-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Адаптивность для деталей */
@media (max-width: 992px) {
    .system-detail {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .detail-visual {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .system-detail {
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .detail-visual {
        height: 250px;
    }
    
    .detail-info h3 {
        font-size: 1.5rem;
    }
}
/* ===== КОРРЕКТИРОВКА ОТСТУПОВ МЕЖДУ ВСЕМИ БЛОКАМИ ===== */

/* Герой уже имеет большой нижний отступ, поэтому следующий блок поднимаем */
.systems {
    margin-top: 0; /* Еще больше поднимаем блок систем */
    padding-top: 3rem; /* Добавляем немного сверху для дыхания */
}

/* Профиль-селектор */
.profile-selector-engineer {
    margin-top: -2rem; /* Поднимаем к блоку систем */
    padding-top: 1rem;
}

/* Философия */
.philosophy {
    padding: 5rem 0 6rem 0; /* Уменьшили верхний отступ */
    margin-top: -2rem;
}

/* Инженерный атлас */
.atlas {
    padding: 5rem 0 6rem 0;
    margin-top: -2rem;
}

/* Инженерный цех */
.engineering {
    padding: 5rem 0 6rem 0;
    margin-top: -2rem;
}

/* Клуб владельцев */
.club {
    padding: 5rem 0 6rem 0;
    margin-top: -2rem;
}

/* Диалог */
.dialog {
    padding: 5rem 0 8rem 0; /* Больше снизу для футера */
    margin-top: -2rem;
}

/* Адаптивность отступов */
@media (max-width: 768px) {
    .systems {
        margin-top: -3rem;
        padding-top: 2rem;
    }
    
    .profile-selector-engineer {
        margin-top: -1rem;
        padding-top: 0.5rem;
    }
    
    .philosophy,
    .atlas,
    .engineering,
    .club,
    .dialog {
        padding: 4rem 0 5rem 0;
        margin-top: -1.5rem;
    }
}

@media (max-width: 480px) {
    .systems {
        margin-top: -2rem;
        padding-top: 1.5rem;
    }
    
    .philosophy,
    .atlas,
    .engineering,
    .club,
    .dialog {
        padding: 3rem 0 4rem 0;
        margin-top: -1rem;
    }
}
.system-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.detail-visual {
    position: relative;
    height: 400px;
}

.visual-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.visual-layers .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transform: 
        translateX(calc(var(--layer-index) * 20px))
        translateY(calc(var(--layer-index) * 20px));
    transition: transform 0.6s var(--transition);
}

.layer:hover {
    transform: 
        translateX(calc(var(--layer-index) * 20px))
        translateY(calc(var(--layer-index) * 20px))
        scale(1.05);
    border-color: var(--orange);
}

.layer-label {
    position: absolute;
    bottom: -2rem;
    left: 0;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.3s var(--transition);
}

.layer:hover .layer-label {
    opacity: 1;
}

.detail-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.detail-desc {
    color: var(--gray-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.detail-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec {
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.spec-label {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.spec-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
}

.detail-partners {
    padding: 2rem;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 1rem;
}

.detail-partners h4 {
    margin-bottom: 1rem;
    color: var(--orange);
}

.detail-partners ul {
    list-style: none;
}

.detail-partners li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.detail-partners li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--orange);
}

/* ===== ИНЖЕНЕРНЫЙ ЦЕХ ===== */
.engineering {
    padding: 8rem 0;
    background: var(--black);
    color: var(--white);
}

.engineering-header {
    text-align: center;
    margin-bottom: 4rem;
}

.engineering-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.showcase-video {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.video-container {
    position: relative;
    padding-top: 56.25%;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-controls {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

.video-play {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition);
}

.video-play:hover {
    background: var(--orange-dark);
    transform: scale(1.05);
}

.showcase-process {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--orange);
    min-width: 3rem;
}

.step-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.875rem;
    opacity: 0.7;
}

.process-cta {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.process-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.process-cta p {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.btn-outline {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition);
}

.btn-outline:hover {
    background: var(--orange);
    color: var(--white);
}

/* ===== КЛУБ ВЛАДЕЛЬЦЕВ ===== */
.club {
    padding: 8rem 0;
    background: var(--white);
}

.club-stories {
    display: grid;
    gap: 4rem;
    margin-bottom: 6rem;
}

.story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-media {
    position: relative;
}

.story-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s var(--transition);
}

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

.story-beforeafter {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 1rem;
}

.story-beforeafter div {
    padding: 0.5rem 1rem;
    background: var(--orange);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 2rem;
}

.story-content {
    padding: 2rem 0;
}

.story-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--gray-light);
}

.story-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.story-quote {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 3px solid var(--orange);
}

.story-author {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-light);
}

.club-partners {
    padding: 4rem;
    background: var(--cream);
    border-radius: 1rem;
}

.club-partners h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.partner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0.5rem;
    transition: all 0.3s var(--transition);
}

.partner:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-icon {
    font-size: 2rem;
}

.partner-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.partner-desc {
    font-size: 0.875rem;
    color: var(--gray-light);
}

/* ===== ДИАЛОГ С ИНЖЕНЕРОМ ===== */
.dialog {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.dialog-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.dialog-form {
    background: var(--white);
    padding: 4rem;
    border-radius: 2rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 3rem;
}

.form-subtitle {
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-top: 1rem;
}

.engineer-form {
    margin-bottom: 2rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-header {
    margin-bottom: 2rem;
}

.step-number {
    font-size: 0.875rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.role-selector {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.role-option {
    position: relative;
    cursor: pointer;
}

.role-option input {
    position: absolute;
    opacity: 0;
}

.role-content {
    padding: 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s var(--transition);
}

.role-option input:checked + .role-content {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.05);
}

.role-option:hover .role-content {
    border-color: var(--orange);
}

.role-icon {
    font-size: 2rem;
}

.role-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.role-desc {
    font-size: 0.875rem;
    color: var(--gray-light);
}

.form-navigation {
    display: flex;
    justify-content: flex-end;
}

.btn-next {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition);
}

.btn-next:hover {
    background: var(--orange-dark);
    transform: translateX(4px);
}

.form-guarantee {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 1rem;
}

.guarantee-icon {
    width: 40px;
    height: 40px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.guarantee-text {
    font-size: 0.875rem;
}

/* ===== БЕГУЩАЯ СТРОКА ===== */
.testimonials-ticker {
    margin-top: 4rem;
    background: rgba(255, 107, 0, 0.1);
    overflow: hidden;
    position: relative;
    height: 80px;
}

.ticker-track {
    display: flex;
    gap: 4rem;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
    padding: 1.5rem 0;
}

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

.ticker-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    border-right: 1px solid rgba(255, 107, 0, 0.3);
}

.quote {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--white);
}

.client {
    font-size: 0.875rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== ENGINEERING STATS ===== */
.engineering-stats {
    width: 100%;
    margin-top: 48px;
    padding: 26px 0;
    background:
        radial-gradient(1200px 300px at 50% 0%, rgba(255,107,0,0.18), transparent 70%),
        linear-gradient(180deg, #141414, #0f0f0f);
}

.stats-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.engineering-stats .stat {
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
    flex: 1;
    position: relative;
}

.engineering-stats .stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.18);
}

.engineering-stats .stat-icon {
    font-size: 42px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(255,107,0,0.45)) drop-shadow(0 0 14px rgba(255,107,0,0.25));
}

.engineering-stats .stat-text {
    display: flex;
    flex-direction: column;
}

.engineering-stats .stat strong {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
}

.engineering-stats .stat span {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1200px) {
    .philosophy-grid,
    .system-detail,
    .engineering-showcase,
    .story-card,
    .dialog-container,
    .hero-arch-composition {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-arch-composition {
        max-width: 800px;
    }
    
    .arch-form-zone {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-engineering {
        background: 
            linear-gradient(
                180deg,
                rgba(15, 15, 15, 0.3) 0%,
                rgba(15, 15, 15, 0.2) 100%
            ),
            url("media/hero.jpg") center / cover no-repeat;
    }
    
    .engineering-slider {
        height: 400px;
    }
    
    .engineering-stats .stats-inner {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .engineering-stats .stat {
        flex: 1 1 45%;
    }
    
    .engineering-stats .stat:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 1024px) {
    .engineering-profiles {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto 2.5rem;
        gap: 1.5rem;
    }
    
    .stamp-title {
        font-size: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-divider {
        width: 100%;
        height: 1px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --gutter: 1rem;
    }
    
    .nav-links,
    .nav-contact-info {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .atlas-container,
    .tabs-nav {
        grid-template-columns: 1fr;
    }
    
    .hero-engineering {
        padding: 120px 20px 40px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .tech-specs {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }
    
    .hero-additional-actions {
        grid-template-columns: 1fr;
    }
    
    .engineering-module {
        border-radius: 16px;
    }
    
    .module-header,
    .engineering-form {
        padding: 25px 20px;
    }
    
    .profile-selector-engineer {
        padding: 1.5rem 0 3rem;
        margin-top: 0.5rem;
    }
    
    .engineering-profiles {
        gap: 1rem;
    }
    
    .panel-visual {
        height: 160px;
    }
    
    .title-backplate {
        padding: 0.8rem 1rem;
        gap: 0.2rem;
    }
    
    .profile-title {
        font-size: 1.1rem;
    }
    
    .profile-subtitle {
        font-size: 0.75rem;
    }
    
    .panel-details {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }
    
    .panel-content {
        padding: 1.25rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .philosophy-cta {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .dialog-form {
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .annotation-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .arch-annotation-zone {
        padding-top: 20px;
    }
    
    .annotation-line {
        left: -20px;
    }
    
    .hero-engineering {
        padding: 40px 16px;
    }
    
    .arch-text-zone,
    .arch-form-zone {
        padding: 24px 16px;
    }
    
    .form-input {
        padding: 16px 16px 16px 40px;
        font-size: 14px;
    }
    
    .tg-submit-btn {
        padding: 16px;
        font-size: 15px;
    }
    
    .action-btn {
        padding: 14px;
    }
}

/* ===== АНИМАЦИИ ===== */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

/* FIXES */
.js-loading .hero-engineering,
.js-loading .hero-engineering *,
.js-loading section.profile-cta {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.hero-engineering > * {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

section.profile-cta * {
    box-sizing: border-box;
    color: #f3f4f6;
}
/* ===== ДОРАБОТКА HERO С ПОДЛОЖКОЙ ===== */
.hero-engineering {
    position: relative;
    min-height: 92vh;
    padding: 140px 40px 60px;
    background: 
        linear-gradient(
            90deg,
            rgba(15, 15, 15, 0.25) 0%,
            rgba(15, 15, 15, 0.15) 40%,
            transparent 70%
        ),
        url("media/hero.jpg") center right / cover no-repeat;
    overflow: hidden;
}

/* Архитектурный акцент - световая полоса */
.hero-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.accent-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40%;
    width: 600px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 107, 0, 0.08) 10%,
        rgba(255, 107, 0, 0.12) 20%,
        rgba(255, 107, 0, 0.08) 30%,
        transparent 100%
    );
    transform: skewX(-15deg);
    filter: blur(1px);
}

/* Главная подложка для текста */
.hero-backplate {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.text-plate {
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.65) 0%,
        rgba(20, 20, 20, 0.75) 50%,
        rgba(15, 15, 15, 0.6) 100%
    );
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px 56px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Декоративные элементы подложки */
.text-plate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--orange) 20%,
        var(--orange) 80%,
        transparent
    );
}

.text-plate::after {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--orange) 20%,
        var(--orange) 80%,
        transparent
    );
    opacity: 0.3;
}

/* Метка инженерного проекта */
.plate-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 16px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Контент на подложке */
.plate-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 45px;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    animation: lineExtend 1s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

@keyframes lineExtend {
    0% {
        opacity: 0;
        width: 0;
    }
    100% {
        opacity: 1;
        width: 80px;
    }
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 600px;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Индикаторы на подложке */
.plate-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.indicator {
    text-align: center;
    position: relative;
}

.indicator-number {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
}

.indicator-label {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.indicator-line {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--orange);
    opacity: 0.5;
}

/* Форма справа - архитектурный контраст */
.arch-form-zone {
    position: relative;
    z-index: 3;
}

.form-plate {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(20, 20, 20, 0.9) 100%
    );
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 40px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.form-plate::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 107, 0, 0.15) 0%,
        transparent 50%
    );
    pointer-events: none;
}

/* Адаптивность для подложки */
@media (max-width: 1200px) {
    .hero-arch-composition {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 800px;
    }
    
    .text-plate {
        max-width: 100%;
    }
    
    .accent-line {
        left: 30%;
        width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-engineering {
        padding: 120px 20px 40px;
    }
    
    .text-plate {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title::after {
        width: 60px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .plate-indicators {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .plate-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
        justify-content: center;
    }
    
    .accent-line {
        left: 20%;
        width: 300px;
        transform: skewX(-10deg);
    }
    
    .form-plate {
        padding: 32px 24px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .text-plate {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-title::after {
        width: 40px;
    }
    
    .form-plate {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .accent-line {
        display: none;
    }
}

/* Улучшение читаемости на контрастных фонах */
.text-plate * {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Минималистичные тени для глубины */
.text-plate {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
}

/* Эффект виньетирования по краям подложки */
.text-plate::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 0, 0.3),
        rgba(255, 107, 0, 0.1)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Парящий эффект для формы */
.form-plate {
    animation: floatPlate 6s ease-in-out infinite;
}

@keyframes floatPlate {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Динамическое освещение */
.hero-engineering::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at 30% 50%,
        rgba(255, 107, 0, 0.1) 0%,
        transparent 60%
    );
    pointer-events: none;
    z-index: 1;
    animation: lightSweep 15s ease-in-out infinite alternate;
}

@keyframes lightSweep {
    0% { transform: translateX(-10%); opacity: 0.5; }
    100% { transform: translateX(10%); opacity: 0.8; }
}
/* ===== ОБНОВЛЕННАЯ ФОРМА ===== */
.form-plate {
    background: rgba(15, 15, 15, 0.65);
    backdrop-filter: blur(10px);
    padding: 30px 35px;
}

.module-header {
    padding: 20px 25px 15px;
}

.engineering-form {
    padding: 25px 25px 30px;
}

.tg-submit-btn {
    padding: 16px 20px;
    font-size: 15px;
}

.btn-text {
    font-size: 14px;
}

/* Блок с Telegram каналом */
.telegram-channel {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.telegram-channel h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
}

.telegram-channel p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.telegram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: #0088cc;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.telegram-link:hover {
    background: #0077b3;
    transform: translateY(-2px);
}

.telegram-link i {
    font-size: 18px;
}
/* ===== ОБНОВЛЕНИЕ КНОПОК И ФОРМЫ ===== */

/* Делаем кнопки с обводкой и более заметными */
.hero-additional-actions .action-btn {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 2px solid rgba(255, 107, 0, 0.4) !important;
    transform: translateY(0) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(8px) !important;
    position: relative;
    overflow: hidden;
}

.hero-additional-actions .action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.hero-additional-actions .action-btn:hover::before {
    left: 100%;
}

.hero-additional-actions .action-btn:hover {
    border-color: var(--orange) !important;
    background: rgba(255, 107, 0, 0.15) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3) !important;
}

/* Улучшаем иконки внутри кнопок */
.hero-additional-actions .action-icon {
    background: rgba(255, 107, 0, 0.15) !important;
    border: 1px solid rgba(255, 107, 0, 0.3) !important;
    border-radius: 10px !important;
}

.hero-additional-actions .action-btn:hover .action-icon {
    background: rgba(255, 107, 0, 0.25) !important;
    border-color: var(--orange) !important;
    transform: scale(1.05);
}

/* Делаем форму более прозрачной */
.form-plate {
    background: rgba(15, 15, 15, 0.5) !important;
    backdrop-filter: blur(12px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.engineering-module {
    background: rgba(20, 20, 20, 0.4) !important;
    backdrop-filter: blur(10px) !important;
}

.module-header {
    background: rgba(255, 107, 0, 0.07) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Делаем градиентную обводку для формы */
.form-plate {
    position: relative;
}

.form-plate::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 0, 0.2),
        rgba(255, 255, 255, 0.1),
        rgba(255, 107, 0, 0.2)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Улучшаем видимость полей ввода в светлой форме */
.form-input {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--orange) !important;
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.15) !important;
}

/* Делаем Telegram канал более заметным */
.telegram-channel {
    background: linear-gradient(
        135deg,
        rgba(0, 136, 204, 0.12),
        rgba(255, 107, 0, 0.08)
    ) !important;
    border: 1px solid rgba(0, 136, 204, 0.25) !important;
}

/* Анимация свечения для кнопок */
@keyframes buttonGlow {
    0%, 100% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 5px 20px rgba(255, 107, 0, 0.25); }
}

.hero-additional-actions .action-btn {
    animation: buttonGlow 3s ease-in-out infinite;
}
/* ===== ГОРИЗОНТАЛЬНАЯ ПОЛОСКА НА ВСЮ ШИРИНУ ===== */
.hero-bottom-strip {
    position: relative;
    width: 100%;
    margin-top: 30px;
    padding: 16px 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(20, 20, 20, 0.9) 100%
    );
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    z-index: 5;
    animation: slideUpStrip 0.7s ease-out;
}

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

.strip-full-width {
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Общие стили для обеих частей */
.strip-left-part,
.strip-right-part {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    padding: 0;
}

/* Иконки */
.strip-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.strip-left-part .strip-icon {
    background: rgba(255, 107, 0, 0.15);
    color: var(--orange);
}

.strip-right-part .strip-icon {
    background: rgba(0, 136, 204, 0.15);
    color: #0088cc;
}

/* Левая часть: Форма телефона */
.strip-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 220px;
}

.strip-phone-input {
    width: 100%;
    padding: 14px 16px 14px 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.strip-phone-input:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

.strip-phone-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-label {
    position: absolute;
    top: -8px;
    left: 12px;
    background: var(--orange);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Кнопки */
.strip-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
}

.call-btn {
    background: linear-gradient(135deg, var(--orange), #ff8c1a);
    color: white;
}

.call-btn:hover {
    transform: translateX(3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.tg-btn {
    background: #0088cc;
    color: white;
}

.tg-btn:hover {
    background: #0077b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
}

.btn-arrow {
    font-weight: bold;
    font-size: 16px;
}

/* Текст Telegram */
.strip-telegram-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 150px;
}

.tg-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.tg-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

/* Разделитель */
.strip-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    margin: 0 10px;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .strip-full-width {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero-bottom-strip {
        padding: 14px 0;
    }
    
    .strip-full-width {
        padding: 0 20px;
        gap: 15px;
    }
    
    .strip-btn {
        padding: 12px 18px;
        font-size: 13px;
    }
    
    .strip-phone-input {
        padding: 12px 14px 12px 40px;
        font-size: 15px;
    }
    
    .tg-title {
        font-size: 13px;
    }
    
    .tg-subtitle {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .strip-full-width {
        flex-direction: column;
        gap: 15px;
    }
    
    .strip-left-part,
    .strip-right-part {
        width: 100%;
        justify-content: space-between;
    }
    
    .strip-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
        background: linear-gradient(
            to right,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
        );
    }
    
    .strip-input-wrapper {
        min-width: 200px;
    }
    
    .strip-telegram-text {
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .hero-bottom-strip {
        padding: 12px 0;
    }
    
    .strip-full-width {
        padding: 0 15px;
    }
    
    .strip-left-part,
    .strip-right-part {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    
    .strip-input-wrapper {
        min-width: 100%;
        order: 2;
    }
    
    .call-btn,
    .tg-btn {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .strip-icon {
        order: 1;
    }
    
    .strip-telegram-text {
        order: 2;
        min-width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .tg-subtitle {
        display: none;
    }
}
/* Адаптивность */
@media (max-width: 768px) {
    .hero-additional-actions .action-btn {
        border-width: 1.5px !important;
    }
    
    .form-plate {
        background: rgba(15, 15, 15, 0.6) !important;
    }
}
/* Делаем форму светлее и прозрачнее */
.hero-engineering .arch-form-zone .form-plate {
    background: rgba(20, 20, 20, 0.45) !important;
    backdrop-filter: blur(12px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}
/* Исправление для полоски - на всю ширину */
.hero-engineering {
    position: relative;
    padding-bottom: 0; /* Убрать нижний отступ */
}

.hero-bottom-strip {
    width: 100vw; /* На всю ширину экрана */
    margin-left: calc(-50vw + 50%); /* Центрирование */
    position: relative;
    left: 0;
    right: 0;
    margin-top: 40px; /* Отступ от основного контента */
}
@media (max-width: 768px) {
    .hero-bottom-strip {
        width: 100%;
        margin-left: 0;
        padding: 0 15px;
    }
    
    .strip-full-width {
        flex-direction: column;
    }
}
/* Самый простой вариант */
.hero-bottom-strip {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero-engineering {
    overflow-x: hidden;
}
.hero-bottom-strip {
    width: 100% !important;
    max-width: none !important;
    position: static !important;
}

.strip-full-width {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 20px !important;
}
/* Дополнительные стили для полоски - расширяем до конца */
.hero-bottom-strip {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.strip-full-width {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Убираем ограничения у контейнеров выше */
.hero-engineering,
.hero-engineering > *,
.hero-arch-composition {
    max-width: none !important;
}

/* Делаем так, чтобы внутренний контент полоски был центрирован */
.strip-full-width {
    display: flex;
    justify-content: center;
}

/* Если есть родительские ограничения, сбрасываем их */
body, html {
    overflow-x: hidden !important;
}

section {
    max-width: none !important;
}
/* Исправление - центрируем полоску */
.hero-bottom-strip {
    width: 100% !important;
    max-width: none !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    padding: 16px 0 !important;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(20,20,20,0.9) 100%) !important;
}

/* Контейнер внутри полоски центрируем */
.strip-full-width {
    max-width: 1400px !important; /* Такая же ширина как у основного контейнера */
    margin: 0 auto !important;
    padding: 0 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Убираем все трансформации и смещения */
body {
    overflow-x: hidden !important;
}

/* Проверяем родителей */
section, div {
    max-width: none !important;
}
/* Простое исправление полоски */
.hero-bottom-strip {
    width: 100%;
    max-width: none;
    margin: 20px 0 0 0;
    padding: 16px 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(20,20,20,0.9) 100%);
}

/* Убираем ограничения у родителей */
.hero-engineering {
    overflow-x: hidden;
}

/* Контейнер внутри полоски */
.strip-full-width {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
/* Telegram часть - красиво в строку */
.telegram-info {
    flex: 1;
    margin: 0 15px;
}

.telegram-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.telegram-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
}

/* Для мобильных */
@media (max-width: 768px) {
    .strip-full-width {
        flex-direction: column;
        gap: 15px;
    }
    
    .strip-left-part, .strip-right-part {
        width: 100%;
    }
    
    .telegram-tags {
        justify-content: center;
    }
}
/* НОВАЯ ПОЛОСКА НА ВСЮ ШИРИНУ */
.full-width-strip {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(20,20,20,0.9) 100%);
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.strip-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Telegram часть красиво */
.telegram-content {
    flex: 1;
    margin: 0 15px;
}

.telegram-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.telegram-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.telegram-features .feature {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

/* Адаптивность */
@media (max-width: 768px) {
    .strip-content {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .strip-left-part, .strip-right-part {
        width: 100%;
        justify-content: center;
    }
    
    .strip-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
        background: rgba(255, 255, 255, 0.2);
    }
}
/* ===== ИНЖЕНЕРНЫЙ ЗАГОЛОВОК ДЛЯ ВТОРОГО БЛОКА ===== */
.engineering-header-divider {
    margin: 0 auto 1.5rem; /* Убрали верхний отступ, уменьшили нижний */
    max-width: 900px;
    position: relative;
    padding: 0 1rem;
}

.header-content-wrapper {
    text-align: center;
    padding-top: 0; /* Убрали отступ сверху */
    position: relative;
}

.header-engineering-marks {
    display: flex;
    justify-content: center;
    gap: 1rem; /* Уменьшили расстояние между иконками */
    margin-bottom: 0.5rem; /* Уменьшили отступ снизу */
    opacity: 0.6;
}

.engineering-mark {
    font-size: 0.9rem;
    color: var(--orange);
    transition: transform 0.3s ease;
}

.engineering-mark:nth-child(1) { animation: pulse 2s ease-in-out infinite; }
.engineering-mark:nth-child(2) { animation: pulse 2s ease-in-out infinite 0.2s; }
.engineering-mark:nth-child(3) { animation: pulse 2s ease-in-out infinite 0.4s; }

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.engineering-section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
   line-height: 1.2; /* Уменьшили межстрочный интервал */
    margin-bottom: 0.5rem; /* Уменьшили отступ снизу */
    color: var(--black);
}

.engineering-section-title .title-part {
    display: block;
}

.engineering-section-title .accent {
    color: var(--orange);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.engineering-section-title .accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--orange), 
        transparent
    );
}

.header-technical-line {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.5rem auto 1rem;
    max-width: 200px;
}

.line-dash {
    width: 20px;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
}

.line-dash:nth-child(1) { width: 25px; }
.line-dash:nth-child(2) { width: 40px; background: var(--orange); opacity: 0.5; }
.line-dash:nth-child(3) { width: 25px; }

.engineering-section-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--gray-light);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

.engineering-section-subtitle::before,
.engineering-section-subtitle::after {
    content: '▸';
    position: absolute;
    top: 0;
    color: var(--orange);
    font-size: 0.8rem;
    opacity: 0.3;
}

.engineering-section-subtitle::before {
    left: 0;
}

.engineering-section-subtitle::after {
    right: 0;
    transform: rotate(180deg);
}

/* Адаптивность */
@media (max-width: 768px) {
    .engineering-header-divider {
        margin: 1.5rem auto 2rem;
    }
    
    .header-engineering-marks {
        gap: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .engineering-section-title {
        font-size: 1.6rem;
    }
    
    .engineering-section-subtitle {
        font-size: 1rem;
    }
    
    .header-technical-line {
        max-width: 150px;
    }
    
    .line-dash {
        width: 15px;
    }
    
    .line-dash:nth-child(1) { width: 20px; }
    .line-dash:nth-child(2) { width: 30px; }
    .line-dash:nth-child(3) { width: 20px; }
}

@media (max-width: 480px) {
    .engineering-header-divider {
        margin: 1rem auto 1.5rem;
        padding: 0 0.5rem;
    }
    
    .engineering-section-title {
        font-size: 1.4rem;
    }
    
    .engineering-section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .engineering-section-subtitle::before,
    .engineering-section-subtitle::after {
        display: none;
    }
}
/* ===== КОРРЕКЦИЯ ОТСТУПА И ПЛАВНЫЙ ПЕРЕХОД ===== */
.systems {
    margin-top: -1rem; /* Поднимаем блок выше */
    padding-top: 2rem; /* Уменьшаем верхний отступ */
    padding-bottom: 8rem;
    position: relative;
    z-index: 2; /* Чтобы был поверх других элементов */
}

/* Добавляем плавный переходный элемент */
.systems::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 30%,
        var(--white) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Уменьшаем отступы у инженерного заголовка */
.engineering-header-divider {
    margin: 0 auto 2rem !important; /* Убираем верхний margin */
    padding: 0 1rem;
}

.header-content-wrapper {
    padding-top: 0 !important; /* Убираем верхний отступ */
}

/* Делаем декоративную линию более тонкой и ненавязчивой */
.header-decorative-line {
    height: 0.5px;
    opacity: 0.2;
    width: 100px;
}

/* Уменьшаем отступы между элементами заголовка */
.header-engineering-marks {
    margin-bottom: 0.5rem !important;
}

.engineering-section-title {
    margin-bottom: 0.5rem !important;
}

.header-technical-line {
    margin: 0.25rem auto 0.5rem !important;
}

/* Для мобильных - еще меньше отступов */
@media (max-width: 768px) {
    .systems {
        margin-top: -2rem;
        padding-top: 1.5rem;
    }
    
    .engineering-header-divider {
        margin: 0 auto 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .systems {
        margin-top: -1rem;
        padding-top: 1rem;
    }
}
/* ===== ИНЖЕНЕРНЫЙ РАЗДЕЛИТЕЛЬ (ЗАМЕНА) ===== */
.engineering-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    max-width: 400px;
    position: relative;
}

.divider-line {
    flex: 1;
    height: 2px;
    position: relative;
}

.left-line {
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 107, 0, 0.1) 20%,
        rgba(255, 107, 0, 0.3) 50%,
        var(--orange) 100%
    );
}

.right-line {
    background: linear-gradient(90deg, 
        var(--orange) 0%,
        rgba(255, 107, 0, 0.3) 50%,
        rgba(255, 107, 0, 0.1) 80%,
        transparent 100%
    );
}

.divider-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.center-icon {
    font-size: 1.2rem;
    color: var(--orange);
    margin-bottom: 4px;
    animation: rotateGear 6s linear infinite;
}

@keyframes rotateGear {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.center-dots {
    display: flex;
    gap: 6px;
}

.center-dots .dot {
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulseDot 2s ease-in-out infinite;
}

.center-dots .dot:nth-child(1) { animation-delay: 0s; }
.center-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.center-dots .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulseDot {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Добавляем эффект свечения при наведении */
.engineering-divider:hover .center-icon {
    filter: drop-shadow(0 0 4px rgba(255, 107, 0, 0.5));
    animation-duration: 3s;
}

.engineering-divider:hover .left-line,
.engineering-divider:hover .right-line {
    height: 3px;
    transition: height 0.3s ease;
}

/* Для мобильных адаптируем */
@media (max-width: 768px) {
    .engineering-divider {
        max-width: 300px;
        margin: 0 auto 1rem;
    }
    
    .center-icon {
        font-size: 1rem;
    }
    
    .divider-center {
        padding: 0 15px;
    }
    
    .center-dots .dot {
        width: 3px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .engineering-divider {
        max-width: 250px;
        margin: 0 auto 0.75rem;
    }
    
    .center-icon {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .divider-center {
        padding: 0 10px;
    }
}
/* Улучшенные стили для карты */
.atlas-map-engineer {
    position: relative;
    height: 450px; /* Немного меньше */
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Интерактивная карта */
.map-interactive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: grab;
    z-index: 5;
}

.map-interactive-overlay:active {
    cursor: grabbing;
}

/* Улучшенные метки */
.marker-dot {
    width: 32px;
    height: 32px;
    background: #FF6B00;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 3px 10px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.marker-dot:hover {
    transform: scale(1.3);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.5);
    z-index: 100;
}

.marker-dot.selected {
    animation: pulse 1.5s infinite;
    box-shadow: 
        0 0 0 3px rgba(255, 107, 0, 0.3),
        0 0 0 6px rgba(255, 107, 0, 0.15),
        0 0 25px rgba(255, 107, 0, 0.4);
}

/* Анимированная метка при клике */
@keyframes pop {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.city-marker.clicked .marker-dot {
    animation: pop 0.4s ease;
}

/* Контекстное меню метки */
.marker-context {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e2e8f0;
}

.city-marker:hover .marker-context {
    opacity: 1;
    visibility: visible;
}

.context-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.context-title {
    font-weight: 600;
    font-size: 14px;
    color: #000;
}

.context-count {
    background: #FF6B00;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.context-projects {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

/* Улучшенная боковая панель */
.sidebar-block {
    max-height: 280px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sidebar-block.expanded {
    max-height: 500px;
}

.toggle-expand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px;
    background: #f8fafc;
    border: none;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-expand:hover {
    background: #e2e8f0;
    color: #000;
}

.toggle-expand i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.toggle-expand.expanded i {
    transform: rotate(180deg);
}

/* Компактные элементы ленты */
.feed-item {
    padding: 8px;
    margin-bottom: 6px;
    border-radius: 8px;
}

.feed-item-image {
    width: 40px;
    height: 40px;
}

.feed-item-title {
    font-size: 13px;
}

.feed-item-meta {
    font-size: 11px;
}

/* Интерактивная статистика */
.atlas-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
    flex: 1;
}

.stat-item:hover {
    background: rgba(255, 107, 0, 0.05);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF6B00;
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 13px;
    color: #64748b;
}

/* Интерактивные фильтры */
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-tag {
    position: relative;
    overflow: hidden;
}

.filter-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.filter-tag:hover::after {
    left: 100%;
}

/* Адаптивные улучшения */
@media (max-width: 1200px) {
    .atlas-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .atlas-map-engineer {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .atlas-map-engineer {
        height: 350px;
    }
    
    .marker-context {
        display: none; /* Скрываем контекстное меню на мобильных */
    }
    
    .atlas-stats {
        flex-direction: column;
        gap: 1rem;
    }
}
/* ===== СТАТУСНЫЙ ТЕХНИЧЕСКИЙ БЛОК — ФИНАЛЬНАЯ ВЕРСИЯ ===== */
.profile-selector-engineer {
    position: relative !important;
    background: #ffffff !important;
    padding: 6rem 0 8rem !important;
    overflow: hidden !important;
}

/* Фоновая сетка */
.blueprint-surface {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: 
        linear-gradient(to right, #f5f5f5 1px, transparent 1px),
        linear-gradient(to bottom, #f5f5f5 1px, transparent 1px) !important;
    background-size: 40px 40px !important;
    pointer-events: none !important;
    opacity: 0.4 !important;
}

.profile-selector-engineer .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    position: relative !important;
    z-index: 2 !important;
}

/* ===== ЗАГОЛОВОК ===== */
.profile-selector-engineer .title-bureau {
    text-align: center !important;
    margin-bottom: 4rem !important;
}

.profile-selector-engineer .pre-title {
    font-family: 'Manrope', monospace !important;
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.3em !important;
    text-transform: uppercase !important;
    color: #b0b0b0 !important;
    margin-bottom: 0.5rem !important;
}

.profile-selector-engineer .main-title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 3.5rem !important;
    font-weight: 400 !important;
    color: #1a1a1a !important;
    letter-spacing: -0.01em !important;
    line-height: 1.1 !important;
    margin-bottom: 0.75rem !important;
    position: relative !important;
    display: inline-block !important;
}

.profile-selector-engineer .title-accent {
    width: 8px !important;
    height: 8px !important;
    background: #FF6B00 !important;
    margin: 0.5rem auto 1rem !important;
    transform: rotate(45deg) !important;
}

.profile-selector-engineer .title-sub {
    font-size: 1.125rem !important;
    color: #6c6c6c !important;
    font-weight: 400 !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* ===== СЕТКА КАРТОЧЕК ===== */
.profile-selector-engineer .profiles-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)) !important;
    gap: 2.5rem !important;
    margin-bottom: 3rem !important;
}

/* ===== КАРТОЧКА ===== */
.profile-selector-engineer .profile-card {
    background: #ffffff !important;
    border: 1px solid #eaeaea !important;
    border-radius: 0 !important;
    position: relative !important;
    transition: all 0.25s ease !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: none !important;
}

.profile-selector-engineer .profile-card.active {
    border-color: #FF6B00 !important;
}

/* Угловые маркеры */
.profile-selector-engineer .profile-card .corner {
    position: absolute !important;
    width: 12px !important;
    height: 12px !important;
    border-style: solid !important;
    border-color: #FF6B00 !important;
    opacity: 0 !important;
    transition: opacity 0.2s ease !important;
    pointer-events: none !important;
}

.profile-selector-engineer .profile-card:hover .corner,
.profile-selector-engineer .profile-card.active .corner {
    opacity: 0.5 !important;
}

.corner.top-left {
    top: -1px !important;
    left: -1px !important;
    border-width: 2px 0 0 2px !important;
}
.corner.top-right {
    top: -1px !important;
    right: -1px !important;
    border-width: 2px 2px 0 0 !important;
}
.corner.bottom-left {
    bottom: -1px !important;
    left: -1px !important;
    border-width: 0 0 2px 2px !important;
}
.corner.bottom-right {
    bottom: -1px !important;
    right: -1px !important;
    border-width: 0 2px 2px 0 !important;
}

/* ===== ШАПКА КАРТОЧКИ ===== */
.profile-selector-engineer .card-header {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1.25rem !important;
    padding: 1.75rem 1.75rem 1rem 1.75rem !important;
    border-bottom: none !important;
}

/* Иконка */
.profile-selector-engineer .card-icon {
    flex-shrink: 0 !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #2d2d2d !important;
    background: transparent !important;
    border: none !important;
}

.profile-selector-engineer .card-icon svg {
    width: 32px !important;
    height: 32px !important;
    stroke: currentColor !important;
}

.profile-selector-engineer .profile-card.active .card-icon {
    color: #FF6B00 !important;
}

/* Заголовки */
.profile-selector-engineer .card-titles {
    flex: 1 !important;
}

.profile-selector-engineer .card-title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.6rem !important;
    font-weight: 500 !important;
    color: #1a1a1a !important;
    line-height: 1.2 !important;
    margin-bottom: 0.1rem !important;
}

.profile-selector-engineer .card-ref {
    font-family: 'Manrope', monospace !important;
    font-size: 0.6rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    color: #b0b0b0 !important;
    text-transform: uppercase !important;
    margin-bottom: 0.25rem !important;
}

.profile-selector-engineer .card-subtitle {
    font-size: 0.85rem !important;
    color: #6c6c6c !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
}

/* Статусный бейдж */
.profile-selector-engineer .card-status {
    flex-shrink: 0 !important;
}

.profile-selector-engineer .status-badge {
    display: inline-block !important;
    padding: 0.35rem 1.2rem !important;
    background: transparent !important;
    border: 1px solid #d0d0d0 !important;
    color: #6c6c6c !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    transition: all 0.2s ease !important;
}

.profile-selector-engineer .status-badge.active {
    background: #FF6B00 !important;
    border-color: #FF6B00 !important;
    color: white !important;
}

/* ===== КОНТЕНТ ===== */
.profile-selector-engineer .card-content {
    padding: 0.5rem 1.75rem 1.75rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

/* Пунктирный разделитель */
.profile-selector-engineer .features-divider {
    width: 30px !important;
    height: 1px !important;
    background: repeating-linear-gradient(90deg, #b0b0b0 0px, #b0b0b0 4px, transparent 4px, transparent 8px) !important;
    margin: 0.75rem 0 1.25rem !important;
}

/* Список характеристик */
.profile-selector-engineer .features-list {
    margin-bottom: 1.75rem !important;
}

.profile-selector-engineer .feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.95rem !important;
    color: #2d2d2d !important;
    margin-bottom: 0.7rem !important;
}

.profile-selector-engineer .feature-item::before {
    content: "→" !important;
    color: #4a4a4a !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    opacity: 0.7 !important;
    margin-right: 0.5rem !important;
}

.profile-selector-engineer .profile-card.active .feature-item::before {
    color: #FF6B00 !important;
    opacity: 1 !important;
}

/* КНОПКА */
.profile-selector-engineer .profile-action-btn {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 1rem 1.5rem !important;
    background: transparent !important;
    border: 2px solid #1a1a1a !important;
    border-radius: 0 !important;
    color: #1a1a1a !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

.profile-selector-engineer .profile-action-btn:hover {
    background: #1a1a1a !important;
    color: white !important;
}

.profile-selector-engineer .btn-arrow {
    transition: transform 0.2s ease !important;
}

.profile-selector-engineer .profile-action-btn:hover .btn-arrow {
    transform: translateX(5px) !important;
}

/* ===== ТЕХНИЧЕСКАЯ ПАНЕЛЬ (ВНУТРИ КАРТОЧКИ) ===== */
.profile-selector-engineer .card-spec {
    padding: 1.25rem 1.75rem !important;
    background: #f8f8f8 !important;
    border-top: 1px solid #eaeaea !important;
    margin-top: auto !important; /* прижимаем к низу */
}

.profile-selector-engineer .spec-label {
    font-family: 'Manrope', monospace !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    color: #999 !important;
    margin-bottom: 0.5rem !important;
}

.profile-selector-engineer .spec-value {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 2.2rem !important;
    font-weight: 300 !important;
    color: #1a1a1a !important;
    line-height: 1 !important;
    margin-bottom: 0.2rem !important;
}

.profile-selector-engineer .spec-desc {
    font-size: 0.7rem !important;
    color: #6c6c6c !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

/* Активная карточка — белая панель, оранжевые цифры */
.profile-selector-engineer .profile-card.active .card-spec {
    background: #ffffff !important;
    border-top-color: #FF6B00 !important;
}

.profile-selector-engineer .profile-card.active .spec-label {
    color: #FF6B00 !important;
}

.profile-selector-engineer .profile-card.active .spec-value {
    color: #FF6B00 !important;
    font-weight: 500 !important;
}

/* ===== НАВИГАЦИЯ ===== */
.profile-selector-engineer .profile-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem !important;
    margin-top: 3rem !important;
}

.profile-selector-engineer .nav-lines {
    display: flex !important;
    gap: 0.75rem !important;
}

.profile-selector-engineer .nav-line {
    width: 30px !important;
    height: 2px !important;
    background: #e0e0e0 !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

.profile-selector-engineer .nav-line.active {
    width: 45px !important;
    background: #FF6B00 !important;
}

.profile-selector-engineer .nav-hint {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.5rem 1.25rem !important;
    background: #f5f5f5 !important;
    color: #6c6c6c !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.03em !important;
}

.profile-selector-engineer .hint-icon {
    color: #FF6B00 !important;
    font-size: 0.9rem !important;
}

/* ===== ПОЛНОСТЬЮ СКРЫВАЕМ СТАРЫЕ ЭЛЕМЕНТЫ ===== */
.profile-panel,
.panel-visual,
.panel-image,
.image-overlay,
.visual-badge,
.title-backplate,
.profile-icon-wrapper,
.icon-ring,
.status-dot,
.panel-technical {
    display: none !important;
}

/* ===== АДАПТАЦИЯ ===== */
@media (max-width: 1024px) {
    .profile-selector-engineer .profiles-grid {
        grid-template-columns: 1fr !important;
        max-width: 550px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .profile-selector-engineer .main-title {
        font-size: 2.8rem !important;
    }
}

@media (max-width: 768px) {
    .profile-selector-engineer {
        padding: 4rem 0 5rem !important;
    }
    .profile-selector-engineer .main-title {
        font-size: 2.2rem !important;
    }
    .profile-selector-engineer .card-header {
        flex-wrap: wrap !important;
    }
    .profile-selector-engineer .card-status {
        width: 100% !important;
        margin-top: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .profile-selector-engineer .main-title {
        font-size: 1.8rem !important;
    }
    .profile-selector-engineer .title-sub {
        font-size: 1rem !important;
    }
    .profile-selector-engineer .card-title {
        font-size: 1.4rem !important;
    }
    .profile-selector-engineer .spec-value {
        font-size: 1.8rem !important;
    }
}
/* ===============================================
   ПРОМЫШЛЕННОЕ АТЕЛЬЕ – ВОЗДУШНАЯ ПРЕМИАЛЬНАЯ ВЕРСИЯ
   Светлый фон, матовое стекло, сохранены все эффекты
   =============================================== */

/* ---------- ОСНОВНОЙ КОНТЕЙНЕР ---------- */
.profile-atelier {
    position: relative;
    background: #3F4347; /* светло-серый с холодным отливом */
    padding: 3.5rem 0 5rem;
    overflow: hidden;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* ---------- ФАКТУРНЫЙ ФОН ---------- */
.atelier-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4wNCIgLz48L3N2Zz4=');
    opacity: 0.1; /* чуть тише на светлом фоне */
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255,107,0,0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,107,0,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.glow-spot {
    position: absolute;
    top: 20%;
    left: 30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

/* ---------- КОНТЕЙНЕР ---------- */
.profile-atelier .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* ---------- ЗАГОЛОВОК ---------- */
.atelier-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.pre-title {
    font-family: 'Manrope', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255,107,0,0.8); /* чуть ярче на светлом фоне */
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(255,107,0,0.3);
}

.main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255,107,0,0.4);
    position: relative;
    display: inline-block;
}

.title-underline {
    display: flex;
    justify-content: center;
    margin: 1rem 0 1.5rem;
}

.line-glow {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FF6B00, #FF8E53, #FF6B00, transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px #FF6B00;
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.8; box-shadow: 0 0 15px #FF6B00; }
    50% { opacity: 1; box-shadow: 0 0 30px #FF6B00; }
}

.title-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0.02em;
}

/* ---------- СЕТКА КАРТОЧЕК ---------- */
.atelier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

/* ---------- КАРТОЧКА – МАТОВОЕ СТЕКЛО ---------- */
.profile-card {
    background: rgba(250, 250, 252, 0.08); /* очень светлое стекло */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 16px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 20px 35px -10px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    overflow: hidden;
}

.profile-card.active {
    border-color: #FF6B00;
    border-width: 1.5px;
    box-shadow: 
        0 25px 40px -10px rgba(255,107,0,0.25),
        inset 0 1px 0 rgba(255,107,0,0.2);
    background: rgba(255, 255, 255, 0.12); /* чуть плотнее */
}

/* Внутреннее свечение */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255,107,0,0.12), transparent 70%);
    pointer-events: none;
    opacity: 0.5;
}

.profile-card.active .card-glow {
    opacity: 0.9;
}

/* ---------- УГЛОВЫЕ МАРКЕРЫ ---------- */
.corner-set {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border-style: solid;
    border-color: rgba(255,107,0,0.5);
    transition: all 0.2s ease;
}

.profile-card.active .corner {
    border-color: #FF6B00;
}

.corner.tl {
    top: 8px;
    left: 8px;
    border-width: 2px 0 0 2px;
}
.corner.tr {
    top: 8px;
    right: 8px;
    border-width: 2px 2px 0 0;
}
.corner.bl {
    bottom: 8px;
    left: 8px;
    border-width: 0 0 2px 2px;
}
.corner.br {
    bottom: 8px;
    right: 8px;
    border-width: 0 2px 2px 0;
}

/* ---------- ШАПКА КАРТОЧКИ ---------- */
.card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem 2rem 1rem 2rem;
    position: relative;
    z-index: 2;
}

/* ИКОНКА С НЕОНОВЫМ СВЕЧЕНИЕМ */
.card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B00;
    position: relative;
}

.card-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    filter: drop-shadow(0 0 10px rgba(255,107,0,0.7));
    transition: all 0.2s ease;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(255,107,0,0.35) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(12px);
    z-index: -1;
}

.profile-card.active .card-icon svg {
    filter: drop-shadow(0 0 20px rgba(255,107,0,1));
}

/* ЗАГОЛОВКИ */
.card-titles {
    flex: 1;
}

.card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.15rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.card-ref {
    font-family: 'Manrope', monospace;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255,107,0,0.9);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 5px rgba(255,107,0,0.3);
}

.card-subtitle {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* СТАТУСНЫЙ БЕЙДЖ */
.card-status {
    flex-shrink: 0;
}

.status-badge {
    display: inline-block;
    padding: 0.4rem 1.5rem;
    background: rgba(255,107,0,0.12);
    border: 1px solid rgba(255,107,0,0.4);
    color: #FF6B00;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    transition: all 0.2s ease;
}

.status-badge.active {
    background: #FF6B00;
    border-color: #FF6B00;
    color: #3F4347; /* под общий фон */
    box-shadow: 0 0 20px rgba(255,107,0,0.6);
}

/* ---------- КОНТЕНТ ---------- */
.card-content {
    padding: 0.5rem 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
}

/* ДИВАЙДЕР С ИКОНКОЙ */
.divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem 0 1.25rem;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,107,0,0.6), rgba(255,107,0,0.9), rgba(255,107,0,0.6), transparent);
}

.divider-icon {
    color: #FF6B00;
    font-size: 1.1rem;
    text-shadow: 0 0 10px #FF6B00;
}

/* СПИСОК ХАРАКТЕРИСТИК */
.features-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.feature-item::before {
    content: "▹";
    color: #FF6B00;
    font-size: 1rem;
    text-shadow: 0 0 6px #FF6B00;
}

/* КНОПКА – СТИЛЬ "ИНДУСТРИАЛЬНЫЙ" */
.profile-action-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.8rem;
    background: transparent;
    border: 2px solid #FF6B00;
    border-radius: 8px;
    color: #FF6B00;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.profile-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,107,0,0.2), transparent);
    transition: left 0.5s ease;
}

.profile-action-btn:hover {
    background: #FF6B00;
    color: #3F4347; /* под общий фон */
    border-color: #FF6B00;
    box-shadow: 0 0 20px rgba(255,107,0,0.4);
}

.profile-action-btn:hover::before {
    left: 100%;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.profile-action-btn:hover .btn-arrow {
    transform: translateX(8px);
}

/* ---------- ТЕХНИЧЕСКАЯ ПАНЕЛЬ – СВЕТЛОЕ СТЕКЛО ---------- */
.card-spec {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05); /* очень светлое стекло */
    border-top: 1px solid rgba(255,107,0,0.25);
    margin-top: auto;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(8px);
}

.spec-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Manrope', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,107,0,0.8);
    margin-bottom: 0.75rem;
}

.spec-dot {
    width: 6px;
    height: 6px;
    background: #FF6B00;
    border-radius: 50%;
    box-shadow: 0 0 10px #FF6B00;
}

.spec-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 20px rgba(255,107,0,0.6);
}

.spec-desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

/* ШКАЛА (ИНДИКАТОР) */
.spec-scale {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    overflow: hidden;
}

.scale-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #FF6B00, #FF8E53);
    border-radius: 2px;
    box-shadow: 0 0 10px #FF6B00;
    transition: width 0.5s ease;
}

.profile-card.active .card-spec {
    background: rgba(255,107,0,0.08);
    border-top-color: #FF6B00;
}

.profile-card.active .spec-label {
    color: #FF6B00;
}

.profile-card.active .spec-value {
    color: #FF6B00;
    text-shadow: 0 0 25px #FF6B00;
}

/* ---------- НАВИГАЦИЯ – СВЕТЛАЯ ---------- */
.atelier-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.nav-indicators {
    display: flex;
    gap: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,107,0,0.2);
}

.nav-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0;
    transition: all 0.2s ease;
}

.indicator-line {
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.indicator-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.2s ease;
}

.nav-indicator.active .indicator-line {
    width: 50px;
    background: #FF6B00;
    box-shadow: 0 0 10px #FF6B00;
}

.nav-indicator.active .indicator-label {
    color: #FF6B00;
}

.nav-hint {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 30px;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255,107,0,0.2);
}

.hint-icon {
    color: #FF6B00;
    font-size: 1rem;
}

/* ---------- АДАПТАЦИЯ ---------- */
@media (max-width: 1024px) {
    .atelier-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }
    .main-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .profile-atelier {
        padding: 2.5rem 0 4rem;
    }
    .main-title {
        font-size: 2.6rem;
    }
    .card-header {
        flex-wrap: wrap;
    }
    .card-status {
        width: 100%;
        margin-top: 0.5rem;
    }
    .nav-indicators {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    .title-sub {
        font-size: 1rem;
    }
    .card-title {
        font-size: 1.5rem;
    }
    .spec-value {
        font-size: 2rem;
    }
}

/* ---------- СКРЫВАЕМ СТАРЫЕ КОНФЛИКТУЮЩИЕ ЭЛЕМЕНТЫ ---------- */
.profile-selector-engineer,
.profile-panel,
.panel-visual,
.panel-image,
.image-overlay,
.visual-badge,
.title-backplate,
.profile-icon-wrapper,
.icon-ring,
.status-dot,
.panel-technical {
    display: none !important;
}
/* ===== ФОН ДЛЯ СЕКЦИИ ПРОИЗВОДСТВО (как в .profile-atelier) ===== */
.engineering {
    position: relative;
    background: #3F4347;  /* тот же холодный серый */
    overflow: hidden;
}

.engineering-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.engineering-bg .noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4wNCIgLz48L3N2Zz4=');
    opacity: 0.1;
    pointer-events: none;
}

.engineering-bg .grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255,107,0,0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,107,0,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.engineering-bg .glow-spot {
    position: absolute;
    top: 20%;
    left: 30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

/* Поднимаем контент над фоном */
.engineering .container,
.engineering-header,
.engineering-showcase {
    position: relative;
    z-index: 10;
}
/* === ДЕКОР ДЛЯ ЗАГОЛОВКА ПРОИЗВОДСТВА === */

/* Верхние иконки (как в .profile-atelier) */
.header-engineering-marks {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.engineering-mark {
    font-size: 1.4rem;
    color: var(--orange);
    animation: pulseMark 2s ease-in-out infinite;
}

.engineering-mark:nth-child(1) { animation-delay: 0s; }
.engineering-mark:nth-child(2) { animation-delay: 0.3s; }
.engineering-mark:nth-child(3) { animation-delay: 0.6s; }

@keyframes pulseMark {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* Компактная версия разделителя (меньше отступы) */
.engineering-divider.compact {
    margin: 0.5rem auto 1rem;
    max-width: 300px;
}

.engineering-divider.compact .center-icon {
    font-size: 1.2rem;
}

/* Декоративные чёрточки вокруг заголовка */
.engineering-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.title-decor-left,
.title-decor-right {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.title-decor-left {
    background: linear-gradient(90deg, transparent, var(--orange), rgba(255,107,0,0.3));
}

.title-decor-right {
    background: linear-gradient(90deg, rgba(255,107,0,0.3), var(--orange), transparent);
}

/* Подзаголовок */
.engineering-section-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.75rem;
    font-weight: 300;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .engineering-title {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .title-decor-left,
    .title-decor-right {
        width: 60px;
    }
    
    .engineering-section-subtitle {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
}
.engineering {
    padding: 3rem 0 6rem; /* верх: 3rem, право/лево 0, низ: 6rem */
}

.engineering-header {
    margin-bottom: 1rem; /* раньше было 4rem */
}
.nav-logo-img {
    height: 50px;        /* фиксированная высота под размер текущей навигации */
    width: auto;         /* ширина автоматически подстраивается */
    object-fit: contain; /* сохраняем пропорции */
    display: block;      /* убираем лишние отступы */
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .nav-logo-img {
        height: 40px;    /* чуть меньше на узких экранах */
    }
}
/* ===== FIX: инженерный цех — планшет и мобильная версия ===== */

@media (max-width: 1100px) {
  #engineering.engineering {
    padding: 42px 16px 56px !important;
  }

  #engineering .engineering-header {
    margin-bottom: 24px !important;
  }

  #engineering .engineering-title {
    display: block !important;
    max-width: 760px !important;
    margin: 0 auto !important;
    font-size: 42px !important;
    line-height: 1.08 !important;
    text-align: center !important;
  }

  #engineering .title-decor-left,
  #engineering .title-decor-right {
    display: none !important;
  }

  #engineering .engineering-showcase {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    max-width: 860px !important;
    margin: 0 auto !important;
  }

  #engineering .showcase-video,
  #engineering .showcase-process {
    width: 100% !important;
    max-width: 100% !important;
  }

  #engineering .video-container {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    min-height: 0 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  #engineering .video-container video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  #engineering .process-steps {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
  }

  #engineering .step {
    margin: 0 !important;
    padding: 18px !important;
    border-radius: 20px !important;
  }
}

@media (max-width: 640px) {
  #engineering.engineering {
    padding: 34px 14px 44px !important;
  }

  #engineering .engineering-divider.compact {
    margin-bottom: 12px !important;
  }

  #engineering .section-sequence {
    margin-bottom: 10px !important;
  }

  #engineering .sequence-number {
    font-size: 11px !important;
    line-height: 1.35 !important;
    letter-spacing: .06em !important;
    text-align: center !important;
  }

  #engineering .engineering-title {
    font-size: 30px !important;
    line-height: 1.12 !important;
    letter-spacing: -0.03em !important;
  }

  #engineering .engineering-section-subtitle {
    font-size: 12px !important;
    line-height: 1.35 !important;
    letter-spacing: .08em !important;
    padding: 0 !important;
    color: #666 !important;
  }

  #engineering .engineering-showcase {
    gap: 18px !important;
  }

  #engineering .video-container {
    border-radius: 18px !important;
  }

  #engineering .video-play {
    transform: scale(.9) !important;
  }

  #engineering .process-steps {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  #engineering .step {
    display: grid !important;
    grid-template-columns: 42px 1fr !important;
    gap: 12px !important;
    padding: 14px !important;
  }

  #engineering .step-number {
    font-size: 18px !important;
    line-height: 1 !important;
  }

  #engineering .step-content h4 {
    font-size: 16px !important;
    line-height: 1.2 !important;
    margin-bottom: 5px !important;
  }

  #engineering .step-content p {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }
}
/* Local Makhachkala proof — самостоятельный светлый блок. */
.local-proof {
    position: relative;
    padding: 76px 0;
    overflow: hidden;
    background: #fff;
    color: #202124;
    border-top: 1px solid #ece8e3;
    border-bottom: 1px solid #ece8e3;
}

.local-proof::before {
    content: "05 / МХЧ";
    position: absolute;
    right: 3vw;
    top: 18px;
    color: rgba(255,107,0,.055);
    font: 800 clamp(72px, 14vw, 190px)/1 Manrope, sans-serif;
    letter-spacing: -.06em;
}

.local-proof__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    padding: clamp(22px, 3vw, 36px);
    border: 1px solid #e7e1da;
    border-radius: 30px;
    background: linear-gradient(135deg, #fbfaf8 0%, #f5f1ec 100%);
    box-shadow: 0 22px 60px rgba(27, 24, 20, .08);
}

.local-proof__eyebrow {
    display: inline-flex;
    padding: 8px 12px;
    border-left: 3px solid #ff6b00;
    background: rgba(255,107,0,.1);
    color: #ff8a32;
    font: 700 11px/1.3 Manrope, sans-serif;
    letter-spacing: .12em;
}

.local-proof__lead h2 {
    max-width: 100%;
    margin: 18px 0 14px;
    font: 700 clamp(30px, 3.2vw, 44px)/1.08 "Playfair Display", serif;
    letter-spacing: -.025em;
}

.local-proof__lead p { max-width: 100%; margin: 0; color: #65615d; font: 400 16px/1.65 Inter, sans-serif; }
.local-proof__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; background: transparent; }
.local-proof__facts article {
    min-height: 190px;
    padding: 24px;
    background: #fff;
    border: 1px solid #e8e2dc;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(27, 24, 20, .055);
}
.local-proof__facts b { color: #ff6b00; font: 700 34px/1 "Playfair Display", serif; }
.local-proof__facts h3 { margin: 24px 0 10px; font: 700 19px/1.2 Manrope, sans-serif; }
.local-proof__facts p { margin: 0; color: #706b66; font: 400 14px/1.6 Inter, sans-serif; }

@media (max-width: 980px) {
    .local-proof__grid { gap: 22px; }
}

@media (max-width: 680px) {
    .local-proof { padding: 44px 0; }
    .local-proof__grid { padding: 24px 18px; border-radius: 22px; }
    .local-proof__facts { grid-template-columns: 1fr; }
    .local-proof__facts article { min-height: 0; }
}
