
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 32, 69, 0.85) 0%, rgba(30, 58, 138, 0.75) 50%, rgba(15, 32, 69, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    padding: 4rem 0;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: #cbd5e1;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    font-weight: 400;
}

.hero-description-secondary {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    font-size: 0.95rem;
    color: #f1f5f9;
}

.feature-icon {
    font-size: 1.1rem;
    color: #60a5fa;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
    color: white;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    color: white;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        justify-content: center;
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Block 2 */
.property-valuation-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f1f7ff 100%);
    position: relative;
}

.property-valuation-process::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23e3f2fd" opacity="0.5"/><circle cx="80" cy="40" r="1.5" fill="%23bbdefb" opacity="0.7"/><circle cx="40" cy="80" r="2.5" fill="%23e1f5fe" opacity="0.4"/></svg>');
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.process-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 400;
}

.process-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-main-image:hover {
    transform: translateY(-5px);
}

.process-intro {
    padding: 2rem 0;
}

.intro-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.intro-description {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.intro-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3182ce;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
    margin-top: 0.5rem;
    display: block;
}

.process-steps {
    margin-top: 4rem;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

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

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3182ce, #63b3ed);
}

.step-number {
    background: linear-gradient(135deg, #3182ce, #63b3ed);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.step-icon {
    background: #ebf8ff;
    color: #3182ce;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: #3182ce;
    color: white;
    transform: scale(1.1);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.step-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.step-details {
    margin-top: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.detail-item i {
    color: #38a169;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.detail-item span {
    color: #4a5568;
    font-weight: 500;
}

.process-cta {
    background: linear-gradient(135deg, #3182ce, #2c5282);
    padding: 4rem 2rem;
    border-radius: 25px;
    margin-top: 5rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(49, 130, 206, 0.3);
}

.cta-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    color: #e2e8f0;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cta-primary {
    background: white;
    color: #3182ce;
    border-color: white;
}

.btn-cta-primary:hover {
    background: #f7fafc;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    color: #2c5282;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-cta-secondary:hover {
    background: white;
    color: #3182ce;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .process-title {
        font-size: 2.2rem;
    }
    
    .intro-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Block 3 */
.client-testimonials {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
        }

        .testimonials-title {
            font-size: 3rem;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .testimonials-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        .testimonials-grid {
            margin-bottom: 60px;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .client-photo {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
            border: 3px solid #e2e8f0;
        }

        .client-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a365d;
            margin: 0;
        }

        .client-location {
            font-size: 0.9rem;
            color: #64748b;
            margin: 5px 0;
        }

        .rating-stars {
            display: flex;
            gap: 3px;
        }

        .rating-stars .fas.fa-star {
            color: #fbbf24;
            font-size: 0.9rem;
        }

        .testimonial-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.7;
            color: #374151;
            margin-bottom: 20px;
            flex-grow: 1;
            font-style: italic;
        }

        .testimonial-details {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: auto;
        }

        .property-type,
        .service-type {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: #2563eb;
            font-weight: 500;
            padding: 6px 12px;
            background: #eff6ff;
            border-radius: 20px;
        }

        .testimonials-summary {
            margin-bottom: 60px;
            padding: 50px 0;
            background: white;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .summary-stats {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .stat-box {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: #f8fafc;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stat-icon i {
            color: white;
            font-size: 1.5rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a365d;
            margin: 0;
            line-height: 1;
        }

        .stat-label {
            font-size: 1rem;
            color: #64748b;
            margin: 0;
        }

        .summary-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 20px;
        }

        .summary-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #374151;
            margin-bottom: 15px;
        }

        .summary-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }

        .feature-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            color: white;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .testimonials-cta {
            text-align: center;
            padding: 50px 40px;
            background: linear-gradient(135deg, #1e3a8a, #2563eb);
            border-radius: 24px;
            color: white;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .cta-description {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            line-height: 1.6;
        }

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

        .btn-cta-primary,
        .btn-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .btn-cta-primary {
            background: white;
            color: #2563eb;
        }

        .btn-cta-primary:hover {
            background: #f1f5f9;
            transform: translateY(-2px);
            color: #1d4ed8;
        }

        .btn-cta-secondary {
            background: transparent;
            color: white;
            border-color: white;
        }

        .btn-cta-secondary:hover {
            background: white;
            color: #2563eb;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .client-testimonials {
                padding: 60px 0;
            }

            .testimonials-title {
                font-size: 2.2rem;
            }

            .testimonials-subtitle {
                font-size: 1.1rem;
            }

            .testimonial-card {
                padding: 25px;
                margin-bottom: 25px;
            }

            .testimonial-header {
                flex-direction: column;
                text-align: center;
            }

            .client-photo {
                margin: 0 0 15px 0;
            }

            .summary-stats {
                margin-bottom: 40px;
            }

            .summary-title {
                font-size: 1.8rem;
            }

            .cta-title {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-cta-primary,
            .btn-cta-secondary {
                width: 280px;
                justify-content: center;
            }
        }

/* Block 4 */
.valuation-methods {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.valuation-methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(45deg, rgba(37, 117, 252, 0.03), rgba(139, 69, 19, 0.03));
    z-index: 1;
}

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

.methods-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.methods-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.method-main-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.method-main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.method-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem;
    color: white;
}

.overlay-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay-text {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.methods-intro {
    padding: 2rem 0;
}

.intro-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.intro-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.intro-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #2575fc;
    font-weight: 500;
}

.credential-icon {
    width: 18px;
    color: #ff6b35;
}

.methods-grid {
    margin: 4rem 0;
}

.method-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.method-icon-wrapper {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.method-icon-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
}

.method-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.method-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.method-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.method-details {
    margin-bottom: 2rem;
}

.detail-group {
    margin-bottom: 1.5rem;
}

.detail-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2575fc;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.detail-list li::before {
    content: '•';
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.method-accuracy {
    border-top: 2px solid #f8f9fa;
    padding-top: 1.5rem;
}

.accuracy-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.accuracy-fill {
    height: 100%;
    background: linear-gradient(90deg, #2575fc, #6a11cb);
    border-radius: 20px;
    transition: width 1s ease-in-out;
}

.accuracy-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.methods-comparison {
    margin: 4rem 0;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.comparison-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.comparison-table th {
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table th:first-child {
    border-radius: 15px 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 15px 0 0;
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.criteria-cell {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
    text-align: left !important;
}

.method-cell {
    vertical-align: middle;
}

.rating {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.rating.excellent {
    color: #28a745;
}

.rating.good {
    color: #ffc107;
}

.rating.average {
    color: #fd7e14;
}

.rating-text {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.methods-process {
    margin: 4rem 0;
}

.process-content {
    padding: 2rem 0;
}

.process-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.process-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.selection-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.selection-step {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s ease;
}

.selection-step:hover {
    transform: translateX(5px);
}

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.process-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.methods-cta {
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-cta-primary {
    background: #ff6b35;
    color: white;
    border: 2px solid #ff6b35;
}

.btn-cta-primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    color: white;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #2575fc;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .methods-title {
        font-size: 2rem;
    }
    
    .method-card {
        margin-bottom: 2rem;
    }
    
    .intro-credentials {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .selection-steps {
        gap: 1rem;
    }
    
    .selection-step {
        padding: 1rem;
    }
}

/* Block 5 */
.order-form-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

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

.form-title {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #059669;
    font-weight: 500;
    font-size: 0.95rem;
}

.benefit-item i {
    color: #10b981;
    font-size: 1.1rem;
}

.form-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(226, 232, 240, 0.6);
    backdrop-filter: blur(10px);
}

.valuation-form {
    width: 100%;
}

.form-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 40px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #374151;
    margin: 0;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 20px;
    color: #9ca3af;
    font-size: 1rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.form-input {
    width: 100%;
    padding: 20px 20px 20px 52px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1rem;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    color: #374151;
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: #ffffff;
}

.form-input:focus + .input-icon,
.form-input:not(:placeholder-shown) + .input-icon {
    color: #6366f1;
}

.form-actions {
    text-align: center;
    margin-bottom: 40px;
}

.submit-button {
    position: relative;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border: none;
    padding: 20px 48px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-width: 280px;
    box-shadow: 0 10px 25px -3px rgba(99, 102, 241, 0.3), 0 4px 6px -2px rgba(99, 102, 241, 0.2);
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.button-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    transition: left 0.4s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -3px rgba(99, 102, 241, 0.4), 0 8px 12px -2px rgba(99, 102, 241, 0.25);
}

.submit-button:hover .button-overlay {
    left: 0;
}

.submit-button:active {
    transform: translateY(0);
}

.form-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 32px;
}

.privacy-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 32px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.privacy-notice i {
    color: #10b981;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-alternatives {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.alternative-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.alternative-item:hover {
    background: rgba(99, 102, 241, 0.08);
    transform: translateY(-2px);
}

.alternative-item i {
    color: #6366f1;
    font-size: 1.2rem;
}

.alternative-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

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

.alternative-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.alternative-link:hover {
    color: #4f46e5;
}

.form-guarantee {
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border-radius: 20px;
    border: 2px solid #a7f3d0;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
}

.guarantee-icon img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
}

.guarantee-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 8px;
}

.guarantee-description {
    color: #047857;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 80px 0;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .form-container {
        padding: 32px 24px;
    }
    
    .form-benefits {
        gap: 20px;
    }
    
    .benefit-item {
        font-size: 0.9rem;
    }
    
    .submit-button {
        min-width: 100%;
        padding: 18px 32px;
    }
    
    .contact-alternatives {
        flex-direction: column;
        gap: 16px;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .alternative-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 24px 16px;
    }
    
    .form-input {
        padding: 16px 16px 16px 48px;
    }
}
