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

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

.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, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.75) 50%, rgba(51, 65, 85, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    color: white;
}

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

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-description-secondary {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: #f1f5f9;
}

.feature-icon {
    font-size: 1.25rem;
    color: #60a5fa;
    text-shadow: 0 2px 8px rgba(96, 165, 250, 0.4);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
    color: white;
    text-decoration: none;
}

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

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
    text-shadow: 0 4px 15px rgba(96, 165, 250, 0.4);
}

.stat-label {
    font-size: 0.95rem;
    color: #cbd5e1;
    font-weight: 500;
    margin-top: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 75vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        justify-content: center;
        text-align: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Block 2 */
.services-process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.services-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.2;
}

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

.process-steps {
    margin-bottom: 80px;
}

.process-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.process-icon-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.process-icon {
    font-size: 2.5rem;
    color: #3b82f6;
    display: block;
    margin-bottom: 12px;
}

.process-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.process-description {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.quality-showcase {
    margin-bottom: 60px;
}

.quality-content {
    padding: 20px;
}

.quality-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.quality-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

.quality-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quality-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.quality-check-icon {
    font-size: 1.5rem;
    color: #10b981;
    margin-top: 4px;
    flex-shrink: 0;
}

.quality-feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.quality-feature-content p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.quality-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.quality-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.quality-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(16, 185, 129, 0.95);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.process-cta {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 32px;
}

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

.btn-process-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.btn-process-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.btn-process-secondary {
    background: white;
    color: #3b82f6;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid #3b82f6;
}

.btn-process-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

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

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

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

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

.testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12);
}

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

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
    border: 4px solid #e2e8f0;
}

.testimonial-author {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.testimonial-position {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 24px;
    font-style: italic;
    border: none;
    padding: 0;
}

.testimonial-project-details {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.project-tag,
.project-volume {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-volume {
    background: linear-gradient(135deg, #059669, #0d9488);
}

.testimonials-stats {
    margin-bottom: 80px;
}

.stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.stat-icon-wrapper {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    display: block;
    margin-bottom: 12px;
}

.stat-description {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
}

.testimonials-showcase {
    margin-bottom: 80px;
}

.showcase-content {
    padding: 40px 0;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
}

.showcase-description {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.certification-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.cert-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.cert-details p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

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

.cta-testimonials {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    color: white;
}

.cta-testimonials-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-testimonials-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.btn-testimonials-primary,
.btn-testimonials-secondary {
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-testimonials-primary {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
}

.btn-testimonials-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-testimonials-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-testimonials-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
}

.trust-icon {
    color: #10b981;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .testimonials-title {
        font-size: 2.8rem;
    }
    
    .cta-testimonials {
        padding: 60px 40px;
    }
    
    .cta-testimonials-title {
        font-size: 2.2rem;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 16px;
    }
    
    .cta-testimonials-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-testimonials-primary,
    .btn-testimonials-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
}

/* Block 4 */
.order-form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.order-form-section::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="600" cy="700" r="120" fill="url(%23a)"/></svg>');
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.form-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

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

.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.form-benefits {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    flex: 1;
    min-width: 200px;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.benefit-icon {
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 32px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 1.1rem;
    z-index: 2;
}

.textarea-icon {
    top: 20px;
    transform: none;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 20px 20px 20px 56px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 500;
    color: #2d3748;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-options {
    margin: 48px 0;
}

.options-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #4a5568;
}

.checkbox-item:hover {
    background: #f1f5f9;
    border-color: #cbd5e0;
    transform: translateY(-1px);
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    background: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-input:checked + .checkbox-custom {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-input:checked ~ .checkbox-label {
    color: #2d3748;
    font-weight: 600;
}

.urgency-selector {
    margin: 48px 0;
}

.urgency-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.urgency-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.urgency-option {
    cursor: pointer;
}

.urgency-input {
    display: none;
}

.urgency-card {
    padding: 24px 20px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.urgency-option:hover .urgency-card {
    background: #f1f5f9;
    border-color: #cbd5e0;
    transform: translateY(-2px);
}

.urgency-input:checked + .urgency-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.urgency-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #667eea;
}

.urgency-input:checked + .urgency-card .urgency-icon {
    color: white;
}

.urgency-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #2d3748;
}

.urgency-input:checked + .urgency-card .urgency-name {
    color: white;
}

.urgency-desc {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

.urgency-input:checked + .urgency-card .urgency-desc {
    color: rgba(255, 255, 255, 0.9);
}

.submit-button {
    width: 100%;
    padding: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 48px 0 32px;
    letter-spacing: -0.01em;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

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

.button-icon {
    font-size: 1.1rem;
}

.button-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-button:hover .button-hover-effect {
    left: 100%;
}

.form-footer {
    text-align: center;
    padding-top: 32px;
    border-top: 2px solid #e2e8f0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.9rem;
}

.trust-badge-icon {
    color: #667eea;
    font-size: 1rem;
}

.privacy-text {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
}

__BREAK HERE, CONTINUE READING FROM NEXT PART__

.privacy-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

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

.sidebar-info {
    margin-top: 120px;
}

.info-card,
.guarantee-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.info-header-icon {
    font-size: 1.5rem;
    color: #667eea;
    padding: 12px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
}

.info-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

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

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.contact-icon {
    font-size: 1.2rem;
    color: #667eea;
    width: 20px;
    text-align: center;
}

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

.contact-label {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
}

.contact-value {
    font-size: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: block;
    object-fit: cover;
}

.guarantee-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 16px;
}

.guarantee-text {
    color: #4a5568;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #4a5568;
    font-size: 0.9rem;
}

.guarantee-check {
    color: #48bb78;
    font-size: 1rem;
}

@media (max-width: 1200px) {
    .sidebar-info {
        margin-top: 60px;
    }
    
    .form-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 80px 0;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .form-container {
        padding: 32px 24px;
    }
    
    .form-benefits {
        flex-direction: column;
        gap: 16px;
    }
    
    .benefit-item {
        min-width: auto;
        justify-content: flex-start;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-options {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }
    
    .sidebar-info {
        margin-top: 40px;
    }
    
    .info-card,
    .guarantee-card {
        padding: 24px;
    }
}

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