  /* ===== БЛОК ОТЗЫВОВ - СТИЛИСТИКА IGC ===== */
        .otzyvy-section {
            --otzyvy-ivory: #FDFCFA;
            --otzyvy-linen: #F8F5F0;
            --otzyvy-sage: #E8F0E8;
            --otzyvy-slate: #2C3E50;
            --otzyvy-taupe: #8C7C6C;
            --otzyvy-bronze: #B68D40;
            --otzyvy-bronze-light: #D4B483;
            --otzyvy-text-dark: #333333;
            --otzyvy-text-medium: #666666;
            --otzyvy-text-light: #888888;
            --otzyvy-border-light: #EAEAEA;
            --otzyvy-border-medium: #D9D9D9;
            --otzyvy-shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.06);
            --otzyvy-shadow-elevated: 0 10px 40px rgba(0, 0, 0, 0.08);
            --otzyvy-shadow-hover: 0 15px 50px rgba(182, 141, 64, 0.12);
            --otzyvy-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --otzyvy-radius: 12px;
            --otzyvy-card-radius: 14px;
            --otzyvy-overlay-bg: rgba(44, 62, 80, 0.85);
            --otzyvy-gradient: linear-gradient(135deg, var(--otzyvy-linen) 0%, var(--otzyvy-ivory) 100%);
            
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--otzyvy-text-dark);
            background-color: var(--otzyvy-ivory);
            overflow-x: hidden;
        }

        .otzyvy-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Герой-секция отзывов */
        .otzyvy-header {
            padding: clamp(3rem, 8vw, 5rem) 1rem clamp(3rem, 8vw, 5rem);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--otzyvy-gradient);
            padding-top: 1rem;
        }

        .otzyvy-wood-texture {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(90deg, rgba(140,124,108,0.03) 1px, transparent 1px),
                linear-gradient(180deg, rgba(140,124,108,0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.4;
            z-index: 0;
            pointer-events: none;
        }

        .otzyvy-content {
            max-width: 1440px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 10;
            text-align: left;
        }

        .otzyvy-headline {
            font-family: 'Georgia', 'Times New Roman', serif;
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            font-weight: 700;
            line-height: 1.1;
            color: var(--otzyvy-slate);
            margin: 1.5rem 0 2rem;
            animation: otzyvy-fadeIn 0.8s ease 0.4s forwards;
            opacity: 0;
            text-align: left;
        }

        .otzyvy-headline-accent {
            color: var(--otzyvy-bronze);
            position: relative;
            display: inline-block;
            padding-bottom: 0.3em;
        }

        .otzyvy-headline-accent::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--otzyvy-bronze), transparent);
            border-radius: 2px;
        }

        .otzyvy-intro {
            max-width: 1440px;
            margin: 0 auto;
            animation: otzyvy-fadeIn 0.8s ease 0.6s forwards;
            opacity: 0;
        }

        .otzyvy-description {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            color: var(--otzyvy-text-medium);
            line-height: 1.7;
            margin: 0;
            font-weight: 400;
            text-align: left;
        }

        /* Сетка отзывов */
        .otzyvy-grid {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 20px 5rem;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        /* Карточка отзыва */
        .otzyvy-card {
            background: white;
            border-radius: var(--otzyvy-card-radius);
            padding: 2.5rem 2rem;
            box-shadow: var(--otzyvy-shadow-subtle);
            border: 1px solid var(--otzyvy-border-light);
            transition: var(--otzyvy-transition);
            text-align: center;
            position: relative;
            cursor: pointer;
            animation: otzyvy-fadeIn 0.6s ease forwards;
            animation-play-state: paused;
            opacity: 0;
            transform: translateY(20px);
        }

        .otzyvy-card:nth-child(1) { animation-delay: 0.1s; }
        .otzyvy-card:nth-child(2) { animation-delay: 0.2s; }
        .otzyvy-card:nth-child(3) { animation-delay: 0.3s; }
        .otzyvy-card:nth-child(4) { animation-delay: 0.4s; }
        .otzyvy-card:nth-child(5) { animation-delay: 0.5s; }
        .otzyvy-card:nth-child(6) { animation-delay: 0.6s; }

        .otzyvy-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--otzyvy-shadow-hover);
            border-color: rgba(182, 141, 64, 0.3);
        }

        /* Логотип компании */
        .otzyvy-logo {
            width: 100%;
            max-width: 180px;
            height: 120px;
            margin: 0 auto 25px;
            padding: 20px;
            background: white;
            border: 1px solid var(--otzyvy-border-light);
            border-radius: var(--otzyvy-radius);
            transition: var(--otzyvy-transition);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .otzyvy-logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--otzyvy-bronze), transparent);
            opacity: 0;
            transition: var(--otzyvy-transition);
        }

        .otzyvy-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.8);
            transition: var(--otzyvy-transition);
        }

        .otzyvy-card:hover .otzyvy-logo {
            border-color: var(--otzyvy-bronze);
            transform: scale(1.05);
        }

        .otzyvy-card:hover .otzyvy-logo::before {
            opacity: 1;
        }

        .otzyvy-card:hover .otzyvy-logo img {
            filter: grayscale(0%) opacity(1);
        }

        /* Название компании */
        .otzyvy-company {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--otzyvy-slate);
            margin: 0;
            letter-spacing: 0.5px;
            transition: var(--otzyvy-transition);
            line-height: 1.4;
            font-family: 'Georgia', serif;
        }

        .otzyvy-card:hover .otzyvy-company {
            color: var(--otzyvy-bronze);
        }

        /* Иконка увеличения */
        .otzyvy-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 36px;
            height: 36px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--otzyvy-bronze);
            font-size: 0.9rem;
            opacity: 0;
            transform: scale(0.8);
            transition: var(--otzyvy-transition);
            z-index: 2;
            box-shadow: var(--otzyvy-shadow-subtle);
        }

        .otzyvy-card:hover .otzyvy-icon {
            opacity: 1;
            transform: scale(1);
        }

        /* Футер блока */
        .otzyvy-footer {
            text-align: center;
            margin-top: 80px;
            padding-top: 30px;
            border-top: 1px solid var(--otzyvy-border-medium);
            position: relative;
            max-width: 1440px;
            margin: 80px auto 0;
            padding: 30px 20px;
        }

        .otzyvy-footer::before {
            content: 'IGC';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--otzyvy-ivory);
            padding: 0 20px;
            font-family: 'Georgia', serif;
            font-size: 1.2rem;
            color: var(--otzyvy-bronze);
            letter-spacing: 3px;
            font-weight: 600;
        }

        .otzyvy-footer-text {
            font-size: 1.3rem;
            color: var(--otzyvy-slate);
            font-weight: 500;
            margin: 0;
            letter-spacing: 0.5px;
            font-family: 'Georgia', serif;
        }

        /* Модальное окно */
        .otzyvy-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--otzyvy-overlay-bg);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .otzyvy-modal.active {
            display: flex;
            opacity: 1;
        }

        .otzyvy-modal-content {
            background: white;
            border-radius: var(--otzyvy-card-radius);
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow: hidden;
            position: relative;
            animation: otzyvy-modalIn 0.3s ease forwards;
        }

        .otzyvy-modal-header {
            padding: 25px 30px;
            border-bottom: 1px solid var(--otzyvy-border-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--otzyvy-ivory);
        }

        .otzyvy-modal-title {
            font-family: 'Georgia', serif;
            font-size: 1.4rem;
            color: var(--otzyvy-slate);
            margin: 0;
            font-weight: 600;
        }

        .otzyvy-modal-close {
            background: none;
            border: none;
            color: var(--otzyvy-text-light);
            font-size: 1.2rem;
            cursor: pointer;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--otzyvy-transition);
        }

        .otzyvy-modal-close:hover {
            background: var(--otzyvy-border-light);
            color: var(--otzyvy-slate);
        }

        .otzyvy-modal-body {
            padding: 30px;
            overflow-y: auto;
            max-height: calc(90vh - 80px);
        }

        .otzyvy-modal-image {
            width: 100%;
            height: auto;
            border-radius: var(--otzyvy-radius);
            box-shadow: var(--otzyvy-shadow-subtle);
            border: 1px solid var(--otzyvy-border-light);
        }

        @keyframes otzyvy-fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes otzyvy-modalIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Адаптивность */
        @media (max-width: 1200px) {
            .otzyvy-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 25px;
            }
            
            .otzyvy-logo {
                max-width: 160px;
                height: 110px;
            }
        }

        @media (max-width: 992px) {
            .otzyvy-header {
                padding: 2rem 1rem 3rem;
            }
            
            .otzyvy-headline {
                font-size: 2.4rem;
                margin: 1rem 0 1.5rem;
            }
            
            .otzyvy-description {
                font-size: 1.1rem;
            }
            
            .otzyvy-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
                padding: 0 15px 4rem;
            }
            
            .otzyvy-card {
                padding: 2rem 1.5rem;
            }
            
            .otzyvy-logo {
                max-width: 140px;
                height: 100px;
                padding: 15px;
                margin-bottom: 20px;
            }
            
            .otzyvy-company {
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            .otzyvy-header {
                padding: 1.5rem 1rem 2.5rem;
            }
            
            .otzyvy-headline {
                font-size: 2rem;
            }
            
            .otzyvy-description {
                font-size: 1rem;
            }
            
            .otzyvy-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 0 10px 3rem;
            }
            
            .otzyvy-card {
                padding: 1.8rem 1.2rem;
            }
            
            .otzyvy-logo {
                max-width: 130px;
                height: 90px;
                padding: 12px;
                margin-bottom: 15px;
            }
            
            .otzyvy-footer {
                margin-top: 60px;
                padding: 30px 15px;
            }
            
            .otzyvy-footer-text {
                font-size: 1.1rem;
            }
            
            .otzyvy-modal-content {
                max-width: 95%;
            }
            
            .otzyvy-modal-header {
                padding: 20px;
            }
            
            .otzyvy-modal-body {
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            .otzyvy-grid {
                grid-template-columns: 1fr;
                max-width: 300px;
                margin: 0 auto;
                gap: 20px;
                padding-bottom: 2.5rem;
            }
            
            .otzyvy-card {
                padding: 2rem;
            }
            
            .otzyvy-logo {
                max-width: 160px;
                height: 110px;
            }
            
            .otzyvy-footer {
                margin-top: 40px;
                padding: 25px 10px;
            }
            
            .otzyvy-footer-text {
                font-size: 1rem;
            }
        }

        @media (max-width: 360px) {
            .otzyvy-headline {
                font-size: 1.8rem;
            }
            
            .otzyvy-description {
                font-size: 0.95rem;
            }
            
            .otzyvy-card {
                padding: 1.5rem;
            }
            
            .otzyvy-logo {
                max-width: 140px;
                height: 100px;
            }
        }

        /* Улучшенные анимации для touch */
        @media (hover: none) {
            .otzyvy-card:hover {
                transform: none;
            }
        }