:root {
    --v9-red: #e30613;
    --v9-text: #1a1a1a;
    --v9-gray: #666;
    --v9-bg-light: #f8f9fa;
    --v9-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v9-reviews-section {
    padding: 60px 0;
    background: #fff;
}

.v9-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.v9-review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: var(--v9-transition);
}

.v9-review-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.07);
    border-color: rgba(227, 6, 19, 0.2);
}

.v9-review-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
}

/* ЛЕВАЯ КОЛОНКА */
.v9-review-aside {
    background: var(--v9-bg-light);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    border-right: 1px solid #eee;
}

.v9-logo-box {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.v9-company-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.v9-scan-link {
    position: relative;
    width: 140px;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.v9-scan-img {
    width: 100%;
    display: block;
    transition: var(--v9-transition);
}

.v9-scan-overlay {
    position: absolute;
    inset: 0;
    background: rgba(227, 6, 19, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--v9-transition);
}

.v9-scan-link:hover .v9-scan-overlay { opacity: 1; }
.v9-scan-link:hover .v9-scan-img { transform: scale(1.1); }

/* Иконка лупы (чистый CSS) */
.v9-scan-zoom {
    width: 20px; height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: relative;
}
.v9-scan-zoom::after {
    content: ''; position: absolute;
    width: 2px; height: 8px; background: #fff;
    bottom: -5px; right: -3px; transform: rotate(-45deg);
}

/* ПРАВАЯ КОЛОНКА */
.v9-review-main {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
}

.v9-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.v9-company-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--v9-text);
}

.v9-review-date {
    font-size: 14px;
    color: var(--v9-gray);
}

.v9-quote-icon {
    width: 40px; height: 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e30613' opacity='0.1'%3E%3Cpath d='M14.017 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151c-2.432.917-3.995 3.638-3.995 5.849h4v10h-9.983zm-14.017 0v-7.391c0-5.704 3.748-9.57 9-10.609l.996 2.151c-2.437.917-4 3.638-4 5.849h3.983v10h-9.979z'/%3E%3C/svg%3E") no-repeat center;
}

.v9-review-body {
    flex-grow: 1;
    margin-bottom: 40px;
}

.v9-text-content {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.v9-text-content p { margin-bottom: 15px; }

.v9-highlight {
    background: rgba(227, 6, 19, 0.05);
    padding: 15px 20px;
    border-left: 3px solid var(--v9-red);
    border-radius: 0 10px 10px 0;
}

.v9-author-info {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
}

.v9-author-info strong { font-size: 16px; color: var(--v9-text); }
.v9-author-info span { font-size: 14px; color: var(--v9-gray); }

/* ФУТЕР КАРТОЧКИ */
.v9-review-footer {
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.v9-project-label { font-size: 14px; color: var(--v9-gray); font-weight: 500; }

.v9-project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--v9-red);
    font-weight: 700;
    font-size: 14px;
    transition: var(--v9-transition);
}

.v9-project-link:hover {
    gap: 12px;
}

@media (max-width: 991px) {
    .v9-review-grid { grid-template-columns: 1fr; }
    .v9-review-aside { 
        flex-direction: row; 
        justify-content: space-around; 
        padding: 25px;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .v9-review-main { padding: 30px; }
}