﻿:root {
    /* Light B2B Corporate Theme */
    --bg-color: #ffffff;
    --bg-alt: #f4f5f7;
    
    --text-primary: #1a1a1a;
    --text-secondary: #5e626b;
    --text-muted: #8b909a;
    
    --accent-blue: #0073E6;
    --accent-blue-hover: #005bb5;
    
    --border-color: #e5e8ec;
    
    --font-main: 'Roboto', sans-serif;
    
    --radius-sm: 4px;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-primary);
    font-weight: 900;
    line-height: 1.2;
}

a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-blue);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    height: 64px;
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-shrink: 0;
}

.logo-1c {
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-blue);
    letter-spacing: -0.5px;
}

.logo-text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    font-weight: 700;
}

.main-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.main-nav a {
    font-size: 14px;
    font-weight: 500;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--accent-blue-hover);
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
}

.btn-outline:hover {
    background-color: rgba(0, 115, 230, 0.05);
}

/* --- Hero Section --- */
.hero {
    padding: 120px 0 80px;
    background-color: var(--bg-alt);
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content { max-width: 48%; position: relative; z-index: 10; }

.supertitle {
    color: var(--accent-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.supertitle::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: var(--accent-blue);
}

.hero-title {
    font-size: 48px;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-features {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-features li {
    font-size: 15px;
    color: var(--text-primary);
    position: relative;
    padding-left: 28px;
}

.hero-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230073E6" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat center;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-blue);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    max-width: 140px;
    line-height: 1.3;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: center;
}

.hero-subtext {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Hero Visual --- */
.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    z-index: 1;
}

.image-wrapper { width: 100%; height: 100%; position: relative; display: flex; align-items: center; justify-content: flex-end; }

/* Gradient fade removed as per request */

.dashboard-img { width: 100%; height: 100%; max-height: 700px; object-fit: contain; object-position: right center; display: block; filter: drop-shadow(-10px 10px 20px rgba(0,0,0,0.05)); }

/* --- About ERP Section --- */
.about-erp {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background-color: var(--bg-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.about-main h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-main p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-blue);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-weight: 700;
}

.card ul {
    list-style: none;
}

.card ul li {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-blue);
    border-radius: 50%;
}

/* --- Tasks Section --- */
.tasks-section {
    padding: 64px 0;
    background-color: var(--bg-alt); 
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.section-header .subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.tasks-group {
    margin-bottom: 40px;
}

.group-title {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.tasks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.task-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.task-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-blue);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.task-card h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.task-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, rgba(0, 115, 230, 0.05) 0%, #ffffff 100%);
    border: 1px solid var(--accent-blue);
    border-radius: 8px;
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.cta-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
}

.cta-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* --- Responsive Design --- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    width: 24px;
    height: 18px;
    position: relative;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    position: absolute;
    left: 0;
    transition: 0.3s;
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 8px; }
.mobile-menu-btn span:nth-child(3) { top: 16px; }

@media (max-width: 992px) {
    .hero-content {
        max-width: 100%;
        position: relative;
        z-index: 10;
        padding-top: 40px;
    }
    .hero-visual {
        width: 100%;
        opacity: 0.15;
    }

    .main-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tasks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-cards {
        grid-template-columns: 1fr;
    }
    .tasks-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .btn {
        width: 100%;
    }
}

/* =========================================
   TASKS SECTION NEW VARIANTS
========================================= */

.variant-indicator {
    display: inline-block;
    background: var(--accent-blue);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 16px;
}

/* ВАРИАНТ 1: Строгие 3 колонки */
.tasks-var1 {
    background-color: var(--bg-color);
    padding: 80px 0;
}
.tasks-layout-v1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.t-v1-col {
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.t-v1-col h3 {
    font-size: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--accent-blue);
    margin-bottom: 8px;
}
.t-v1-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.t-v1-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}
@media (max-width: 992px) {
    .tasks-layout-v1 { grid-template-columns: 1fr; }
}

/* ВАРИАНТ 2: Горизонтальные панели */
.tasks-var2 {
    background-color: var(--bg-alt);
    padding: 80px 0;
}
.tasks-layout-v2 {
    display: flex;
    flex-direction: column;
}
.t-v2-row {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}
.t-v2-row:last-child {
    border-bottom: none;
}
.t-v2-header h3 {
    font-size: 26px;
    position: sticky;
    top: 100px;
    color: var(--text-primary);
    line-height: 1.4;
}
.t-v2-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.t-v2-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}
.t-v2-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-3px);
}
.t-v2-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--accent-blue);
}
.t-v2-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}
@media (max-width: 992px) {
    .t-v2-row { grid-template-columns: 1fr; padding: 40px 0; gap: 30px; }
    .t-v2-header h3 { position: static; font-size: 22px; }
    .t-v2-content { grid-template-columns: 1fr; }
}

/* ВАРИАНТ 3: Асимметричная журнальная сетка */
.tasks-var3 {
    background-color: var(--bg-color);
    padding: 80px 0;
}
.tasks-layout-v3 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}
.t-v3-title {
    font-size: 22px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.t-v3-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.t-v3-card {
    background-color: var(--bg-alt);
    padding: 24px 30px;
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    transition: var(--transition-base);
}
.t-v3-card:hover {
    background-color: rgba(0, 115, 230, 0.03);
    border-left-width: 8px;
}
.t-v3-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.t-v3-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.t-v3-right-col {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
@media (max-width: 992px) {
    .tasks-layout-v3 { grid-template-columns: 1fr; gap: 40px; }
}

.tasks-cta-section {
    padding-bottom: 80px;
    background-color: var(--bg-color);
}

/* =========================================
   IMPLEMENTATION TYPES SECTION (ROADMAP)
========================================= */

.var3.implementation-types-section {
    background-color: #ffffff;
}

.types-layout-v3 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    margin-top: 48px;
    padding-left: 20px;
}

.types-layout-v3::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.v3-card {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 30px;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 40px;
    align-items: center;
    position: relative;
    margin-left: 60px;
    transition: var(--transition-base);
}

.v3-card::before {
    content: '';
    position: absolute;
    left: -57px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--border-color);
    border: 4px solid var(--bg-color);
    z-index: 2;
}

.v3-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateX(5px);
}

.v3-card.project {
    border-color: var(--accent-blue);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 115, 230, 0.08);
}

.v3-card.project::before {
    background: var(--accent-blue);
    box-shadow: 0 0 0 6px rgba(0, 115, 230, 0.1);
}

.v3-header {
    position: relative;
}

.v3-header h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.v3-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.v3-badge {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 12px;
    font-size: 11px;
    background-color: var(--accent-blue);
    color: #ffffff;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.v3-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
    list-style: none;
}

.v3-features li {
    font-size: 13px;
    margin-bottom: 0;
    position: relative;
    padding-left: 24px;
    color: var(--text-primary);
}

.v3-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%230073e6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
    background-size: cover;
}

.v3-action {
    text-align: right;
}

.v3-action .btn {
    width: auto;
}

@media (max-width: 1100px) {
    .v3-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .v3-action {
        text-align: left;
    }
}

/* =========================================
   PRICING SECTION NEW VARIANTS
========================================= */

.pricing-section {
    padding: 80px 0;
}

/* ВАРИАНТ 3: Каскадные карточки (Ступени) */
.pricing-v3-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    align-items: end; /* Каскад снизу вверх */
}
.p-step {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    overflow: hidden;
}
.step-1 { height: 100%; }
.step-2 { height: 105%; border-color: var(--accent-blue); }
.step-3 { height: 110%; }

.step-num {
    font-size: 80px;
    font-weight: 800;
    color: rgba(0,0,0,0.03);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}
.step-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--accent-blue);
    color: #fff;
    padding: 4px 16px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 0 0 8px 0;
}
.step-header h3 {
    font-size: 18px;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
    color: var(--text-primary);
}
.step-header p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.step-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 16px;
}
.step-desc {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: var(--text-primary);
}
.step-features {
    list-style: none;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    padding-left: 0;
}
.step-features li {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.step-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

/* Pricing Footer */
.pricing-footer-section {
    background: var(--bg-alt); /* To blend slightly from previous sections if needed, or white. Let's use white #ffffff */
    background: #ffffff;
    padding-bottom: 80px;
}
.pricing-disclaimer {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
}
.pricing-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 115, 230, 0.05) 0%, #ffffff 100%);
    border: 1px solid var(--accent-blue);
    border-radius: 8px;
    padding: 32px 40px;
}
.p-cta-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
}
.p-cta-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.p-cta-btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .pricing-v3-steps { grid-template-columns: 1fr; align-items: stretch; }
    .p-step { height: auto !important; }
    .pricing-cta-box { flex-direction: column; text-align: center; gap: 20px; }
}

/* =========================================
   CASES SECTION NEW VARIANTS
========================================= */
.cases-section {
    padding: 80px 0;
}

/* ВАРИАНТ 1: Сетка карточек (Grid) */
.cases-var1 {
    background: var(--bg-alt);
}
.cases-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}
.filter-btn {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-base);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--accent-blue);
    color: #fff;
    border-color: var(--accent-blue);
}
.cases-v1-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.case-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
}
.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: rgba(0, 115, 230, 0.3);
}
.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.tag {
    background: var(--bg-alt);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--text-secondary);
}
.tag-nda {
    background: rgba(255, 60, 60, 0.1);
    color: #ff3c3c;
    font-weight: 600;
}
.case-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.case-scope {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.case-result {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
}

/* ВАРИАНТ 4: Горизонтальные плашки (Типографика) */
.cases-v4 {
    background: var(--bg-alt);
    padding: 80px 0;
}
.cases-v4-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}
.case-plate {
    display: flex;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    background: var(--bg-surface);
}
.case-plate:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.cp-left {
    width: 320px;
    flex-shrink: 0;
    background: #11131a; /* Единая тёмная колонка */
    color: #ffffff;
    padding: 32px;
    display: flex;
    flex-direction: column;
}
.cp-industry {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 32px;
    opacity: 0.6;
}
.cp-metrics {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: auto;
}
.cp-val {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 4px;
}
.cp-val span {
    color: #666;
    font-weight: 300;
}
.cp-lbl {
    font-size: 13px;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cp-right {
    flex-grow: 1;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cp-meta {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cp-dot {
    opacity: 0.3;
    margin: 0 6px;
}
.cp-title {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.cp-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 800px;
}
.cp-action {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-blue);
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s;
}
.case-plate:hover .cp-action {
    opacity: 0.7;
}

/* ВАРИАНТ 3: Асимметричная журнальная сетка */
.cases-v3-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}
.case-featured {
    background: linear-gradient(135deg, #0b0d14 0%, #1a1e2d 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 400px;
}
.case-featured .case-bg-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity="0.05"><path d="M0 100L100 0H0V100Z" fill="%23ffffff"/></svg>');
    background-size: cover;
    z-index: 1;
}
.case-featured .case-content {
    position: relative;
    z-index: 2;
}
.case-featured .tag {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.case-featured h3 {
    font-size: 28px;
    margin: 16px 0;
    color: #ffffff;
}
.case-featured .case-scope {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.case-featured .case-result {
    border-top-color: rgba(255,255,255,0.2);
    color: #ffffff;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
}

.case-side-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: min-content;
    gap: 24px;
}
.case-small {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition-base);
}
.case-small:hover {
    border-color: var(--accent-blue);
    transform: translateY(-3px);
}
.case-small h4 {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.3;
}
.case-small p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Универсальный подвал для кейсов */
.cases-footer-section {
    background: var(--bg-alt);
    padding-bottom: 80px;
}
.cases-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .cases-v3-layout { grid-template-columns: 1fr; }
    .case-side-grid { grid-template-columns: repeat(2, 1fr); }
    .case-plate { flex-direction: column; }
    .cp-left { width: 100%; padding: 24px; }
    .cp-metrics { flex-direction: row; gap: 32px; }
    .cp-right { padding: 24px; }
}

@media (max-width: 768px) {
    .case-side-grid { grid-template-columns: 1fr; }
    .cases-actions { flex-direction: column; }
    .cp-metrics { flex-direction: column; gap: 16px; }
}

/* =========================================
   CASES — УЛУЧШЕНИЯ
========================================= */

/* Тег отрасли — слегка выделен цветом */
.tag-industry {
    background: rgba(0, 115, 230, 0.08);
    color: var(--accent-blue);
    font-weight: 600;
}

/* Счётчик в фильтре */
.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(0,0,0,0.08);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    margin-left: 4px;
    vertical-align: middle;
}
.filter-btn.active .filter-count {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* KPI-блок на большой карточке */
.case-kpi-row {
    display: flex;
    gap: 28px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.case-kpi-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.kpi-value {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.5px;
}
.kpi-label {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA-ссылка внутри большой карточки */
.case-cta-link {
    margin-top: 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.3px;
    transition: color 0.2s;
}
.case-featured-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.case-featured-link:hover .case-cta-link {
    color: #ffffff;
}
.case-featured-link:hover {
    opacity: 0.95;
}

/* KPI-блок на малых карточках */
.case-kpi-row--small {
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    margin-top: 12px;
    gap: 16px;
}
.kpi-value--small {
    font-size: 16px;
    font-weight: 900;
    color: var(--accent-blue);
    line-height: 1;
}
.kpi-label--small {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Ссылка «Читать кейс →» на малых карточках */
.case-read-link {
    display: block;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-blue);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s, transform 0.2s;
    letter-spacing: 0.3px;
}
.case-small:hover .case-read-link {
    opacity: 1;
    transform: translateX(0);
}
.case-small {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.case-small h4 {
    color: var(--text-primary);
}

/* NDA-карточка — тонкий акцент */
.case-small--nda {
    border-color: rgba(0, 115, 230, 0.2);
    background: rgba(0, 115, 230, 0.02);
}
.case-small--nda:hover {
    border-color: var(--accent-blue);
}
.tag-nda {
    background: rgba(0, 115, 230, 0.08);
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 11px;
}

/* Тег продукта */
.tag-product {
    background: rgba(0, 115, 230, 0.06);
    color: #005bb5;
    border: 1px solid rgba(0, 115, 230, 0.2);
    font-weight: 600;
}

/* Бейдж варианта */
.variant-badge {
    display: inline-block;
    background: var(--accent-blue);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Вариант 2 — 3 колонки равная сетка */
.cases-v1-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.case-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,115,230,0.35);
    box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}
.case-card h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin: 12px 0 10px;
    color: var(--text-primary);
    flex-grow: 1;
}
.case-card .case-scope {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.case-card--nda {
    border-color: rgba(0,115,230,0.18);
    background: rgba(0,115,230,0.015);
}
.case-card--nda:hover {
    border-color: var(--accent-blue);
}
.case-card .case-read-link {
    margin-top: 16px;
}

/* Ссылка «Читать кейс» на карточках .case-card */
.case-card:hover .case-read-link {
    opacity: 1;
    transform: translateX(0);
}

/* Адаптив для 3-колонной сетки */
@media (max-width: 1100px) {
    .cases-v1-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .cases-v1-grid { grid-template-columns: 1fr; }
}

/* =============================================
   ВАРИАНТ 3 — Горизонтальные карточки
============================================= */
.cases-hlist {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.case-hcard {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 0;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.case-hcard:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 6px 24px rgba(0, 115, 230, 0.1);
    transform: translateX(4px);
    z-index: 1;
}

/* Левая колонка — большая цифра */
.case-hcard__kpi {
    background: var(--accent-blue);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    min-height: 120px;
}

.case-hcard__num {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.case-hcard__sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.case-hcard__sub2 {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

/* Тело карточки */
.case-hcard__body {
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.case-hcard__body h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    margin: 0;
}

.case-hcard__body p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.case-hcard__stats {
    display: flex;
    gap: 16px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.case-hcard__stats span {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-blue);
    background: rgba(0, 115, 230, 0.07);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Стрелка */
.case-hcard__arrow {
    padding: 0 24px;
    font-size: 20px;
    color: var(--border-color);
    transition: color 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.case-hcard:hover .case-hcard__arrow {
    color: var(--accent-blue);
    transform: translateX(4px);
}

/* NDA вариант */
.case-hcard--nda .case-hcard__kpi {
    background: #3d5a80;
}

.case-hcard--nda {
    border-color: rgba(61, 90, 128, 0.2);
}

.case-hcard--nda:hover {
    border-color: #3d5a80;
    box-shadow: 0 6px 24px rgba(61, 90, 128, 0.12);
}

@media (max-width: 900px) {
    .case-hcard { grid-template-columns: 160px 1fr auto; }
    .case-hcard__num { font-size: 26px; }
}

@media (max-width: 640px) {
    .case-hcard { grid-template-columns: 1fr; }
    .case-hcard__kpi { flex-direction: row; align-items: center; gap: 12px; padding: 16px 20px; min-height: auto; }
    .case-hcard__num { font-size: 22px; margin-bottom: 0; }
    .case-hcard__arrow { display: none; }
}

/* =============================================
   ВАРИАНТ 4 — Широкие карточки 2 в ряд
============================================= */
.cases-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.case-card-wide {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.case-card-wide:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 115, 230, 0.4);
    box-shadow: 0 12px 40px rgba(0, 115, 230, 0.1);
}

.case-card-wide--nda {
    border-color: rgba(0, 115, 230, 0.18);
    background: rgba(0, 115, 230, 0.012);
}

.case-card-wide--nda:hover {
    border-color: var(--accent-blue);
}

/* Верхняя часть */
.case-card-wide__head {
    padding: 28px 28px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.case-card-wide__head h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin: 0;
}

.case-card-wide__head p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Нижняя часть — KPI + CTA */
.case-card-wide__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-alt);
    gap: 16px;
}

.case-card-wide--nda .case-card-wide__foot {
    background: rgba(0, 115, 230, 0.03);
    border-top-color: rgba(0, 115, 230, 0.12);
}

.case-card-wide__kpis {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.wide-kpi {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wide-kpi__val {
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-blue);
    line-height: 1;
    letter-spacing: -0.5px;
}

.wide-kpi__lbl {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.case-card-wide__cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s;
}

.case-card-wide:hover .case-card-wide__cta {
    color: var(--accent-blue);
}

@media (max-width: 900px) {
    .cases-grid-2col { grid-template-columns: 1fr; }
}

/* =============================================
   ВАРИАНТ 3+ — Улучшенные горизонтальные
============================================= */
.cases-hlist-v2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hcard2 {
    display: grid;
    grid-template-columns: 220px 1fr;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hcard2:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateX(6px);
}

/* Левая цветная колонка */
.hcard2__kpi {
    background: var(--hcard-color, #0073E6);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Название отрасли */
.hcard2__industry {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

/* Было → Стало */
.hcard2__main {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.hcard2__was {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

.hcard2__arrow-small {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.hcard2__now {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.5px;
}

.hcard2__what {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Разделитель */
.hcard2__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 12px 0;
}

/* Вторая метрика */
.hcard2__secondary {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hcard2__sec-val {
    font-size: 16px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.3px;
}

.hcard2__sec-lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Правая часть — текст */
.hcard2__body {
    padding: 22px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.hcard2__body h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    margin: 0;
}

.hcard2__body p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.hcard2__cta {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 4px;
    transition: color 0.2s;
}

.hcard2:hover .hcard2__cta {
    color: var(--accent-blue);
}

/* NDA вариант — полосатая левая колонка */
.hcard2--nda .hcard2__kpi {
    background: repeating-linear-gradient(
        135deg,
        var(--hcard-color, #374151),
        var(--hcard-color, #374151) 10px,
        var(--hcard-color-dark, #1f2937) 10px,
        var(--hcard-color-dark, #1f2937) 20px
    );
}

@media (max-width: 900px) {
    .hcard2 { grid-template-columns: 180px 1fr; }
    .hcard2__now { font-size: 22px; }
}

@media (max-width: 640px) {
    .hcard2 { grid-template-columns: 1fr; }
    .hcard2__kpi {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
        padding: 16px 20px;
    }
    .hcard2__divider { display: none; }
    .hcard2__secondary { display: none; }
}

/* =============================================
   ВАРИАНТ 6 — Акцентная полоса + центральная цифра
============================================= */
.v6-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.v6-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--v6-color, #0073E6);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.v6-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.09); }

.v6-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.v6-card__industry { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--v6-color, #0073E6); }

.v6-card__result { margin-bottom: 20px; }
.v6-card__change { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.v6-change__was { font-size: 20px; font-weight: 700; color: var(--text-muted); text-decoration: line-through; text-decoration-color: var(--border-color); }
.v6-card__change svg { color: var(--v6-color, #0073E6); flex-shrink: 0; margin-bottom: 2px; }
.v6-change__now { font-size: 44px; font-weight: 900; color: var(--v6-color, #0073E6); line-height: 1; letter-spacing: -1.5px; }
.v6-card__result-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin: 0; }

.v6-card__divider { height: 1px; background: var(--border-color); margin-bottom: 16px; }
.v6-card__title { font-size: 15px; font-weight: 700; line-height: 1.35; color: var(--text-primary); margin: 0 0 10px; flex-grow: 1; }
.v6-card__pain { font-size: 13px; color: var(--text-secondary); line-height: 1.55; margin: 0 0 20px; }

.v6-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border-color); }
.v6-card__tags { display: flex; flex-wrap: wrap; gap: 4px; }
.v6-card__cta { font-size: 12px; font-weight: 700; color: var(--text-muted); white-space: nowrap; flex-shrink: 0; transition: color 0.2s; }
.v6-card:hover .v6-card__cta { color: var(--v6-color, #0073E6); }
.v6-card--nda { border-top-style: dashed; }

@media (max-width: 1100px) { .v6-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .v6-grid { grid-template-columns: 1fr; } .v6-change__now { font-size: 36px; } }

/* =============================================
   ВАРИАНТ 7 — Типографика, один цвет
============================================= */
.v7-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.v7-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    transition: background 0.15s ease;
}

.v7-card + .v7-card {
    border-top: 1px solid var(--border-color);
}

.v7-card:hover {
    background: #f8faff;
}

/* === Левая колонка: единый тёмный цвет === */
.v7-card__left {
    background: linear-gradient(160deg, #0b0d14 0%, #1a1e2d 100%);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.v7-card--nda .v7-card__left {
    background: linear-gradient(160deg, #0f1420 0%, #1a2236 100%);
}

/* Отрасль — мелкие капители */
.v7-card__label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 14px;
    display: block;
}

/* Блок было → стало */
.v7-card__metric {
    margin-bottom: 16px;
}

.v7-card__before-after {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    line-height: 1;
    margin-bottom: 5px;
}

.v7-ba__was {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,0.22);
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,0.15);
    letter-spacing: -0.3px;
}

.v7-ba__sep {
    font-size: 14px;
    color: rgba(255,255,255,0.2);
}

.v7-ba__now {
    font-size: 34px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1;
}

.v7-card__metric-label {
    font-size: 10px;
    color: rgba(255,255,255,0.38);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* Разделитель и доп. метрика */
.v7-card__extra {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 12px;
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.v7-extra__val {
    font-size: 15px;
    font-weight: 800;
    color: rgba(255,255,255,0.7);
    letter-spacing: -0.3px;
}

.v7-extra__lbl {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === Правая колонка: типографика === */
.v7-card__right {
    padding: 28px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    border-left: 1px solid var(--border-color);
}

/* Строка метаданных */
.v7-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    line-height: 1;
}

.v7-meta__product {
    font-weight: 700;
    color: var(--accent-blue);
    letter-spacing: 0.2px;
}

.v7-meta__dot {
    color: var(--border-color);
    font-size: 13px;
}

.v7-meta__type,
.v7-meta__scale {
    color: var(--text-muted);
    font-weight: 400;
}

.v7-meta__nda {
    color: var(--text-muted);
    font-weight: 600;
}

/* Заголовок — крупнее, чем в других вариантах */
.v7-card__title {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.2px;
}

/* Боль — читаемая, с нормальным межстрочником */
.v7-card__pain {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    max-width: 640px;
}

/* CTA — текстовая ссылка */
.v7-card__cta {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.2px;
    transition: color 0.15s;
    margin-top: 2px;
}

.v7-card:hover .v7-card__cta {
    color: var(--accent-blue);
}

@media (max-width: 900px) {
    .v7-card { grid-template-columns: 200px 1fr; }
    .v7-ba__now { font-size: 28px; }
    .v7-card__right { padding: 20px 24px; }
}

@media (max-width: 640px) {
    .v7-card { grid-template-columns: 1fr; }
    .v7-card__left { padding: 20px; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 16px; }
    .v7-card__metric { margin-bottom: 0; }
    .v7-card__extra { border-top: none; padding-top: 0; margin-top: 0; }
}


