
/* Block 1 */
.hero-banner {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        }

        .hero-content {
            position: relative;
            width: 100%;
            z-index: 2;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 60, 114, 0.85) 0%, rgba(42, 82, 152, 0.75) 100%);
            z-index: 2;
        }

        .hero-text-content {
            position: relative;
            z-index: 3;
            padding: 80px 0;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .hero-description {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            line-height: 1.6;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }

        .btn-hero-primary,
        .btn-hero-secondary {
            padding: 18px 35px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 220px;
        }

        .btn-hero-primary {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
            color: #ffffff;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
            background: linear-gradient(135deg, #ff5252 0%, #e53935 100%);
        }

        .btn-hero-secondary {
            background: transparent;
            color: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #ffffff;
            transform: translateY(-2px);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            color: #ffffff;
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
        }

        .stat-label {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-description {
                font-size: 1.1rem;
                margin-bottom: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .btn-hero-primary,
            .btn-hero-secondary {
                width: 100%;
                max-width: 280px;
                padding: 16px 30px;
                font-size: 1rem;
            }

            .hero-stats {
                gap: 40px;
            }

            .stat-number {
                font-size: 2.2rem;
            }

            .stat-label {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-stats {
                gap: 25px;
            }

            .stat-number {
                font-size: 1.8rem;
            }
        }

/* Block 2 */
.legal-services-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #0d6efd;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    border-radius: 50%;
    padding: 20px;
}

.service-image {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    text-align: center;
    margin-bottom: 20px;
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-features li {
    padding: 8px 0;
    color: #495057;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.service-stats {
    text-align: center;
    margin-top: 25px;
}

.stat-highlight {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.process-timeline {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 50px;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.timeline-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 15px;
}

.step-content p {
    color: #6c757d;
    line-height: 1.6;
}

.testimonials-preview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 25px;
    align-items: center;
}

.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-text {
    font-style: italic;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.6;
}

.client-name {
    color: #212529;
    font-size: 1.1rem;
}

.client-case {
    color: #6c757d;
    font-size: 0.9rem;
}

.cta-emergency {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
}

.emergency-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.emergency-text {
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-emergency {
    background: #ffffff;
    color: #dc3545;
    border: none;
    border-radius: 25px;
    padding: 15px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-emergency:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .testimonials-preview {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .legal-services-showcase {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .process-timeline {
        padding: 30px 20px;
    }
    
    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Block 3 */
.digital-transformation-legal {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.digital-transformation-legal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.digital-transformation-legal .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.tech-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tech-icon {
    flex-shrink: 0;
}

.tech-image {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    object-fit: cover;
}

.tech-content {
    flex: 1;
}

.tech-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.tech-description {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.tech-metrics {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.metric-item {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.innovation-stats {
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.stat-image {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    border-radius: 12px;
    object-fit: cover;
}

.stat-data {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.client-portal-preview {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.portal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 400px;
}

.portal-text {
    padding: 50px;
}

.portal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.portal-description {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.portal-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.portal-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 500;
}

.feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: cover;
}

.btn-portal-demo {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-portal-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.portal-visual {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    padding: 50px;
}

.portal-screenshot {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.portal-screenshot:hover {
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .tech-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .digital-transformation-legal {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .tech-card {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }
    
    .portal-content {
        grid-template-columns: 1fr;
    }
    
    .portal-text {
        padding: 40px 30px;
    }
    
    .portal-title {
        font-size: 1.6rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-box {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .tech-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-card {
        padding: 25px;
    }
    
    .portal-visual {
        padding: 30px;
    }
    
    .portal-text {
        padding: 30px 20px;
    }
}

/* Block 4 */
.consultation-request-form {
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.consultation-request-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.form-section-wrapper {
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.form-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.form-content-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.form-benefits {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.benefit-item:last-child {
    margin-bottom: 40px;
}

.benefit-badge {
    position: absolute;
    top: -10px;
    left: 40px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    padding: 12px;
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.benefit-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.trust-indicators {
    border-top: 2px solid rgba(13, 110, 253, 0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badge {
    width: 24px;
    height: 24px;
}

.trust-text {
    font-size: 0.85rem;
    color: #28a745;
    font-weight: 500;
}

.consultation-form-container {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.step-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-align: center;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: #0d6efd;
    font-weight: 600;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.field-group {
    position: relative;
}

.field-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.label-icon {
    width: 18px;
    height: 18px;
}

.form-input, .form-select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: #0d6efd;
    background: white;
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.15);
    transform: translateY(-2px);
}

.field-hint {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
}

.phone-input-wrapper {
    display: flex;
    gap: 1px;
}

.country-code {
    width: 100px;
    border-radius: 12px 0 0 12px;
    background: #e9ecef;
    border-right: none;
    font-size: 0.9rem;
    text-align: center;
}

.phone-number {
    flex: 1;
    border-radius: 0 12px 12px 0;
    border-left: none;
}

.urgency-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.urgency-option {
    position: relative;
}

.urgency-radio {
    display: none;
}

.urgency-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.urgency-label:hover {
    border-color: #0d6efd;
    background: rgba(13, 110, 253, 0.05);
}

.urgency-radio:checked + .urgency-label {
    border-color: #0d6efd;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-weight: 600;
}

.urgency-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dc3545;
}

.urgency-label.medium .urgency-dot {
    background: #ffc107;
}

.urgency-label.low .urgency-dot {
    background: #28a745;
}

.form-consent {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #0d6efd;
    margin-top: 30px;
}

.consent-checkbox {
    margin-bottom: 15px;
}

.consent-checkbox:last-child {
    margin-bottom: 0;
}

.consent-input {
    display: none;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #495057;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.consent-input:checked + .consent-label .checkbox-custom {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    border-color: #0d6efd;
}

.consent-input:checked + .consent-label .checkbox-custom::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.consent-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.consent-link:hover {
    text-decoration: underline;
}

.form-actions {
    text-align: center;
    margin-top: 35px;
}

.btn-submit-consultation {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.4);
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
}

.btn-submit-consultation:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.5);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #28a745;
    font-size: 0.85rem;
    font-weight: 500;
}

.security-icon {
    width: 16px;
    height: 16px;
}

.contact-alternatives {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f8f9fa;
}

.alternative-title {
    font-weight: 600;
    color: #495057;
    margin-bottom: 20px;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
}

.contact-method:hover {
    background: rgba(13, 110, 253, 0.05);
    transform: translateX(5px);
    color: inherit;
    text-decoration: none;
}

.method-icon {
    width: 24px;
    height: 24px;
    padding: 4px;
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    border-radius: 6px;
}

.method-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.method-label {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

.method-value {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 600;
}

.chat-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: auto;
}

.chat-status.online {
    background: #28a745;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media (max-width: 992px) {
    .form-content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
    
    .consultation-form-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .consultation-request-form {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .consultation-form-container {
        padding: 25px 20px;
    }
    
    .form-progress {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .form-progress::before {
        display: none;
    }
    
    .progress-step {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }
    
    .phone-input-wrapper {
        flex-direction: column;
    }
    
    .country-code, .phone-number {
        border-radius: 12px;
        border: 2px solid #e9ecef;
    }
    
    .urgency-options {
        gap: 8px;
    }
    
    .urgency-label {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .contact-methods {
        gap: 10px;
    }
    
    .contact-method {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .consultation-form-container {
        margin: 0 10px;
    }
    
    .btn-submit-consultation {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .form-benefits {
        padding: 25px 20px;
    }
    
    .benefit-item {
        gap: 15px;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
}
