/* --- НАСТРОЙКИ СТИЛЯ (Brutalism / Strict) --- */
        :root {
            --black: #111111;
            --white: #FFFFFF;
            --gray: #F5F5F5;
            --border: 1px solid #111111; /* Строгие тонкие рамки */
            --spacing: 80px; /* Отступы между секциями */
        }

        * {
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Manrope', sans-serif;
            background-color: var(--white);
            color: var(--black);
            line-height: 1.5;
            padding-top: 60px; /* Отступ для хедера */
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; padding: 0; margin: 0; }
        img { display: block; width: 100%; height: auto; background-color: #ddd; }

        /* --- ТИПОГРАФИКА --- */
        h1, h2, h3, h4 {
            margin: 0 0 20px 0;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem); /* Адаптивный заголовок */
            line-height: 1.1;
        }

        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 40px;
            border-left: 10px solid var(--black); /* Акцент слева */
            padding-left: 20px;
        }

        h3 { font-size: 1.25rem; }

        p {
            font-size: 1rem;
            margin-bottom: 20px;
            color: #333;
            max-width: 800px;
        }

        .text-small {
            font-size: 0.875rem;
            color: #555;
        }

        /* --- СЕТКА И КОНТЕЙНЕРЫ --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: var(--spacing) 0;
            border-bottom: var(--border);
        }

        /* --- КНОПКИ --- */
        .btn {
            display: inline-block;
            padding: 16px 32px;
            background: var(--black);
            color: var(--white);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .btn:hover {
            opacity: 0.8;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--black);
            color: var(--black);
        }

        /* --- ХЕДЕР --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--white);
            border-bottom: var(--border);
            z-index: 1000;
            display: flex;
            align-items: center;
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            font-weight: 800;
            font-size: 20px;
            letter-spacing: -0.03em;
        }

        /* --- ГЕРОЙ --- */
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            min-height: 80vh; /* Почти на весь экран */
            align-items: center;
        }

        .hero-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 40px;
            border-top: var(--border);
            padding-top: 20px;
        }

        /* --- КАТЕГОРИИ (Сетка) --- */
        .cat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--black); /* Цвет линий сетки */
            border: var(--border);
        }

        .cat-item {
            background: var(--white);
            padding: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 300px;
        }

        .cat-item:hover {
            background: #f9f9f9;
        }

        /* --- ТАБЛИЦА МАТЕРИАЛОВ --- */
        .materials-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
        }

        .materials-table th, .materials-table td {
            border: var(--border);
            padding: 15px;
            text-align: left;
            vertical-align: top;
        }

        .materials-table th {
            background: var(--black);
            color: var(--white);
            width: 30%;
        }

        /* --- ЭТАПЫ (Список) --- */
        .steps-list {
            counter-reset: step;
        }

        .step-item {
            position: relative;
            padding-left: 60px;
            margin-bottom: 40px;
        }

        .step-item::before {
            counter-increment: step;
            content: counter(step);
            position: absolute;
            left: 0;
            top: 0;
            width: 40px;
            height: 40px;
            background: var(--black);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }

        /* --- FAQ (Аккордеон) --- */
        details {
            border: var(--border);
            border-bottom: none;
            padding: 20px;
            cursor: pointer;
            transition: background 0.2s;
        }

        details:last-of-type {
            border-bottom: var(--border);
        }

        details[open] {
            background: var(--gray);
        }

        summary {
            font-weight: 700;
            list-style: none;
            font-size: 1.1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        summary::after {
            content: '+';
            font-size: 1.5rem;
        }
        
        details[open] summary::after {
            content: '-';
        }

        /* --- КОНТАКТЫ --- */
        .contacts-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-card {
            background: var(--gray);
            padding: 30px;
        }

        /* --- МОБИЛЬНАЯ АДАПТАЦИЯ --- */
        @media (max-width: 900px) {
            .hero-grid { grid-template-columns: 1fr; }
            .cat-grid { grid-template-columns: 1fr; }
            .contacts-grid { grid-template-columns: 1fr; }
            .materials-table th, .materials-table td { display: block; width: 100%; }
            .materials-table th { margin-top: 20px; }
            
            h1 { font-size: 2.5rem; }
        }