/**
 * ВОЛЗ Landing Page Styles (27.11.2025)
 * SEO-оптимізована сторінка оренди ВОЛЗ
 */

/* Hero Section */
.vols-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 50%, #0d1f3c 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.vols-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.vols-hero-content {
    position: relative;
    z-index: 10;
}

.vols-hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.vols-hero h1 strong {
    color: #3b82f6;
}

.vols-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.6;
}

.vols-hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.vols-stat {
    text-align: center;
}

.vols-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #3b82f6;
}

.vols-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Problem-Solution Section */
.vols-problem {
    padding: 60px 0;
    background: #f8f9fa;
}

.vols-problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.vols-problem-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.vols-problem-box.problem {
    border-left: 4px solid #ef4444;
}

.vols-problem-box.solution {
    border-left: 4px solid #10b981;
}

.vols-problem-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vols-problem-box.problem h3 {
    color: #ef4444;
}

.vols-problem-box.solution h3 {
    color: #10b981;
}

.vols-problem-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

/* Benefits Section */
.vols-benefits {
    padding: 60px 0;
    background: #fff;
}

.vols-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
}

.vols-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vols-benefit-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.vols-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.vols-benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vols-benefit-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.vols-benefit-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.vols-benefit-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* Comparison Table */
.vols-comparison {
    padding: 60px 0;
    background: #f8f9fa;
}

.vols-table {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.vols-table th, .vols-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.vols-table th {
    background: #1e293b;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.vols-table th:first-child {
    width: 30%;
}

.vols-table td {
    font-size: 15px;
    color: #374151;
}

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

.vols-table .highlight {
    background: #ecfdf5;
    color: #059669;
    font-weight: 600;
}

/* SLA Block */
.vols-sla {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.vols-sla-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.vols-sla-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vols-sla-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vols-sla-value {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.vols-sla-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Clients Section */
.vols-clients {
    padding: 60px 0;
    background: #fff;
}

.vols-clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.vols-clients-logos img {
    height: 50px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.vols-clients-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* CTA Section */
.vols-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.vols-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.vols-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.vols-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.vols-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.vols-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.vols-cta-btn.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.vols-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.vols-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.vols-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Form Section */
.vols-form-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.vols-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.vols-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 8px;
}

.vols-form-subtitle {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .vols-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vols-sla-grid {
        grid-template-columns: 1fr;
    }
    
    .vols-problem-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vols-hero h1 {
        font-size: 28px;
    }
    
    .vols-hero-stats {
        gap: 20px;
    }
    
    .vols-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .vols-table {
        font-size: 14px;
    }
    
    .vols-table th, .vols-table td {
        padding: 12px 16px;
    }
    
    .vols-cta h2 {
        font-size: 24px;
    }
}
