/* included.css | v14 system */

.v14-included-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.v14-included-header {
    margin-bottom: 40px;
}

.v14-included-header h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: var(--v14-dark) !important;
    margin-bottom: 12px !important;
    text-align: left !important;
}

.v14-included-header p {
    font-size: 16px !important;
    color: #666 !important;
    margin: 0 !important;
    line-height: 1.65 !important;
}

.v14-included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.v14-included-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.v14-included-card-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--v14-red);
}

.v14-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v14-included-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--v14-dark);
    line-height: 1.5;
}

.v14-included-list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-radius: 50%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='%23e8f5e9'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%2316a34a' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/20px no-repeat;
}

.v14-optional-list li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='%23fff3e0'/%3E%3Cpath d='M10 6v4M10 13v1' stroke='%23e67e22' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/20px no-repeat;
}

/* CTA внизу */
.v14-included-cta {
    background: var(--v14-dark);
    border-radius: 20px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.v14-included-cta-text {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
    max-width: 620px;
}

.v14-included-cta-text strong {
    display: block;
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 6px;
}

.v14-included-btn {
    background: var(--v14-red);
    color: #fff;
    border: none;
    padding: 0 32px;
    height: 52px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--v14-transition);
    text-transform: none;
    letter-spacing: 0;
}

.v14-included-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .v14-included-grid { grid-template-columns: 1fr; }
    .v14-included-cta { flex-direction: column; align-items: flex-start; gap: 20px; }
    .v14-included-btn { width: 100%; justify-content: center; }
}
