        /* Токены из дизайн-библиотеки Pinterest (папка design) */
        :root {
            /* Базовые цвета */
            --white: #ffffff;
            --plum: #211922;
            --red: #e60023;
            --olive: #62625b;
            --warm-silver: #91918c;

            /* Цвет поверхностей */
            --sand: #e5e5e0;
            --warm-light: #e0e0d9;
            --fog: #f6f6f3;
            --dark: #33332e;

            /* Интерактив */
            --focus-blue: #435ee5;
            --link-blue: #2b48d4;
            --success-green: #103c25;
            --error-red: #9e0a0a;

            /* Типографика */
            --font: 'Nunito Sans', -apple-system, system-ui, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;

            /* Скругления */
            --radius-sm: 12px;
            --radius-btn: 16px;
            --radius-card: 20px;
            --radius-lg: 28px;
            --radius-xl: 40px;
        }

        /* Воздушный reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: var(--white);
            color: var(--plum);
            font-family: var(--font);
            font-size: 16px;
            font-weight: 400;
            line-height: 1.40;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius-sm);
        }

        a {
            text-decoration: none;
            color: var(--link-blue);
        }

        /* Типографика по системе */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            color: var(--plum);
            line-height: 1.2;
        }

        h1 {
            font-size: 56px;
            font-weight: 600;
            letter-spacing: -1px;
            margin-bottom: 24px;
        }

        h2 {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: -1.2px;
            margin-bottom: 24px;
            text-align: center;
        }

        h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        p {
            color: var(--olive);
            margin-bottom: 16px;
        }

        @media (min-width: 768px) {
            h1 {
                font-size: 70px;
                line-height: 1.05;
            }

            h2 {
                font-size: 36px;
            }
        }

        /* Кнопки Pinterest */
        .btn-red {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            background: var(--red);
            color: var(--white);
            padding: 12px 24px;
            border-radius: var(--radius-btn);
            font-family: var(--font);
            font-size: 16px;
            font-weight: 700;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: center;
        }

        .btn-red:hover {
            opacity: 0.9;
        }

        .btn-red:focus-visible {
            border-color: var(--focus-blue);
            box-shadow: 0 0 0 2px rgba(67, 94, 229, 0.3);
        }

        .btn-sand {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            background: var(--sand);
            color: var(--plum);
            padding: 12px 24px;
            border-radius: var(--radius-btn);
            font-family: var(--font);
            font-size: 16px;
            font-weight: 600;
            border: 2px solid transparent;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .btn-sand:hover {
            background: #dcdcd6;
        }

        .btn-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--warm-light);
            color: var(--plum);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            font-size: 20px;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* Формы (из preview.html) */
        .form-input {
            width: 100%;
            background: var(--white);
            color: var(--plum);
            border: 1px solid var(--warm-silver);
            padding: 14px 16px;
            border-radius: var(--radius-btn);
            font-family: var(--font);
            font-size: 16px;
            outline: none;
            margin-bottom: 16px;
            transition: all 0.2s;
        }

        .form-input:focus {
            border-color: var(--focus-blue);
            box-shadow: 0 0 0 2px rgba(67, 94, 229, 0.3);
        }

        select.form-input {
            appearance: none;
            background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23211922%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
            background-repeat: no-repeat;
            background-position: right 16px top 50%;
            background-size: 12px auto;
        }

        /* Layout & Utilities */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        .section {
            padding: 80px 0;
        }

        .section-desc {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 48px;
            font-size: 16px;
            color: var(--olive);
        }

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

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

        .masonry-grid {
            column-count: 1;
            column-gap: 24px;
        }

        @media (min-width: 600px) {
            .masonry-grid {
                column-count: 2;
            }
        }

        @media (min-width: 900px) {
            .masonry-grid {
                column-count: 3;
            }
        }

        /* Карточки */
        .card {
            background: var(--white);
            border: 1px solid var(--sand);
            border-radius: var(--radius-card);
            overflow: hidden;
            display: inline-block;
            width: 100%;
            /* для masonry */
            margin-bottom: 24px;
            padding: 24px;
            transition: transform 0.2s ease;
        }

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

        /* Пины - карточки с картинкой */
        .pin-card {
            background: var(--white);
            border-radius: var(--radius-card);
            overflow: hidden;
            display: inline-block;
            width: 100%;
            margin-bottom: 24px;
            box-shadow: none;
            border: 1px solid var(--sand);
        }

        .pin-card-img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            background: var(--fog);
            border-radius: var(--radius-sm);
            margin: 8px 8px 0 8px;
            width: calc(100% - 16px);
        }

        .pin-card-body {
            padding: 16px;
        }

        /* Блоки с иконками/шагами */
        .flex-row {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        @media (min-width: 768px) {
            .flex-row {
                flex-direction: row;
                flex-wrap: wrap;
            }
        }

        .flex-col {
            flex: 1;
            min-width: 250px;
        }

        .styled-list {
            list-style: none;
            padding: 0;
        }

        .styled-list li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
            color: var(--plum);
            font-weight: 500;
        }

        .styled-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--red);
            font-size: 20px;
            top: -3px;
        }

        /* Уникализация CSS */
        .uniq-block {
            display: none;
        }

        /* Аккордеон FAQ */
        .faq-item {
            border-bottom: 1px solid var(--sand);
            padding: 20px 0;
            cursor: pointer;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
            font-weight: 700;
            color: var(--plum);
        }

        .faq-answer {
            display: none;
            margin-top: 12px;
            color: var(--olive);
            font-size: 16px;
        }

        .faq-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--fog);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--plum);
            transition: 0.2s;
        }

        .faq-item:hover .faq-icon {
            background: var(--warm-light);
        }

        /* Специфичные блоки */
        .hero-section { position: relative; padding: 64px 0 80px; overflow: hidden; background: linear-gradient(rgba(33, 25, 34, 0.65), rgba(33, 25, 34, 0.8)), url('../images/hero_legal_consulting.png') center/cover no-repeat; border-radius: 0 0 var(--radius-xl) var(--radius-xl); }
        .hero-section h1 { color: var(--white); }
        .hero-section .styled-list li { color: var(--white); }
        .hero-layout { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
        
        /* Специфичные модификаторы для главной страницы */
        .home-hero { padding: clamp(40px, 8vw, 64px) 0 clamp(48px, 10vw, 80px); border-radius: 0 0 clamp(24px, 6vw, var(--radius-xl)) clamp(24px, 6vw, var(--radius-xl)); }
        .home-hero h1 { 
            font-size: clamp(34px, 8vw, 56px); 
            line-height: 1.1; 
            margin-bottom: clamp(16px, 4vw, 24px); 
            text-wrap: balance; 
        }
        .home-hero .hero-layout { gap: clamp(32px, 8vw, 48px); }
        @media (min-width: 768px) {
            .home-hero h1 { font-size: 70px; line-height: 1.05; margin-bottom: 24px; }
        }

        @media(min-width: 1024px) {
            .hero-layout {
                grid-template-columns: 1fr 400px;
                gap: 64px;
            }
        }

        .hero-form-card {
            background: var(--white);
            padding: 32px;
            border-radius: var(--radius-lg);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }

        .timeline-step {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            margin-bottom: 32px;
            position: relative;
        }

        .timeline-step:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 24px;
            top: 56px;
            bottom: -20px;
            width: 2px;
            background: var(--sand);
        }

        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--sand);
        }

        .comparison-table th {
            background: var(--fog);
            color: var(--plum);
            font-weight: 700;
            text-align: left;
            padding: 16px 24px;
            border-bottom: 1px solid var(--sand);
        }

        .comparison-table td {
            padding: 16px 24px;
            border-bottom: 1px solid var(--sand);
            color: var(--olive);
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .status-yes {
            color: var(--success-green);
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .status-no {
            color: var(--error-red);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .quote-block {
            padding: 32px 40px;
            background: var(--warm-light);
            border-radius: var(--radius-lg);
            font-size: 20px;
            font-weight: 600;
            color: var(--plum);
            line-height: 1.4;
            text-align: center;
            max-width: 900px;
            margin: 48px auto;
            position: relative;
        }

        .quote-block::before {
            content: '"';
            font-size: 80px;
            color: var(--white);
            position: absolute;
            top: 10px;
            left: 20px;
            opacity: 0.5;
            font-family: serif;
        }

        .avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--sand);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--plum);
            font-weight: 700;
            margin-right: 16px;
            flex-shrink: 0;
            overflow: hidden;
        }

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

        .footer {
            background: var(--dark);
            padding: 40px 0;
            color: var(--warm-silver);
            text-align: center;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .footer a {
            color: var(--white);
            text-decoration: underline;
        }

        /* Внутренние страницы: Хлебные крошки */
        .breadcrumbs-wrapper {
            padding: 16px 0;
            background: var(--fog);
            border-bottom: 1px solid var(--sand);
        }

        .breadcrumbs {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 14px;
            font-weight: 600;
            font-family: var(--font);
        }

        .breadcrumb-item {
            color: var(--warm-silver);
        }

        .breadcrumb-item a {
            color: var(--olive);
            text-decoration: none;
            transition: 0.2s;
        }

        .breadcrumb-item a:hover {
            color: var(--plum);
        }

        .breadcrumb-item .separator {
            margin: 0 12px;
            color: var(--sand);
        }

        .breadcrumb-item.active {
            color: var(--plum);
        }