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

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

.hero-background-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(13, 110, 253, 0.85) 0%, rgba(25, 135, 84, 0.75) 50%, rgba(13, 202, 240, 0.8) 100%);
    z-index: 2;
}

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

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

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: #f8f9fa;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.25rem;
    color: #e9ecef;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-secondary-text {
    font-size: 1.1rem;
    color: #ced4da;
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 300;
}

.hero-actions {
    margin-bottom: 4rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    color: white;
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.9rem 2.3rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: #ffd43b;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(255, 212, 59, 0.3));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1rem;
    color: #e9ecef;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-secondary-text {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-stats {
        padding: 1.5rem 1rem;
        margin: 0 -15px;
    }
    
    .stat-item {
        padding: 0.5rem;
        margin-bottom: 1rem;
    }
}

/* Block 2 */
.services-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    position: relative;
}

.services-showcase::before {
    content: '';
    background: radial-gradient(circle at 20% 20%, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(142, 68, 173, 0.1) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(79, 172, 254, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(142, 68, 173, 0.05) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(79, 172, 254, 0.3);
}

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

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.service-features i {
    color: #4facfe;
    margin-right: 0.8rem;
    font-size: 0.8rem;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(79, 172, 254, 0.3);
}

.service-cta:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79, 172, 254, 0.4);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .services-showcase {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Block 3 */
.testimonials-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f7ff 100%);
    overflow: hidden;
}

.testimonials-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-intro {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    border-color: #667eea;
}

.testimonial-author-info {
    flex: 1;
    min-width: 180px;
}

.testimonial-author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.testimonial-author-role {
    font-size: 1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-company {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

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

.testimonial-rating .fas.fa-star {
    color: #ffc107;
    font-size: 1.1rem;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    padding-left: 24px;
    border-left: 3px solid #667eea;
}

.testimonial-metrics {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 12px;
    min-width: 100px;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    text-align: center;
}

.testimonials-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 48px 40px;
    margin-top: 32px;
    color: white;
    text-align: center;
}

.summary-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.summary-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

.summary-stat {
    padding: 16px;
}

.summary-stat .stat-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    opacity: 0.9;
}

.summary-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    display: block;
}

.summary-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 500;
}

.testimonials-cta-button {
    background: #ffffff;
    color: #667eea;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
}

.testimonials-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
    color: #5a67d8;
}

.cta-subtext {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .testimonials-main-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }
    
    .testimonials-summary {
        padding: 32px 24px;
    }
    
    .summary-title {
        font-size: 1.8rem;
    }
}

/* Block 4 */
.process-workflow {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f8ff 100%);
    position: relative;
}

.process-workflow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<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="%23f0f4f8" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.process-main-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.process-intro {
    font-size: 1.3rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.process-step {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-right: 1.5rem;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    padding: 0.5rem 1rem;
    border-radius: 16px;
    min-width: 80px;
    text-align: center;
}

.step-icon {
    font-size: 2rem;
    color: #8b5cf6;
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    padding: 1rem;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.step-description {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.step-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.process-step:hover .step-image {
    border-color: #3b82f6;
    transform: scale(1.02);
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #334155;
}

.feature-item i {
    color: #10b981;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.process-summary {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.summary-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

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

.process-metrics {
    margin-bottom: 2.5rem;
}

.metric-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 1.5rem 1rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.metric-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #3b82f6;
    display: block;
    line-height: 1;
}

.metric-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 0.5rem;
}

.process-cta-button {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.process-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    color: #ffffff;
}

.cta-note {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 1rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .process-main-title {
        font-size: 2.2rem;
    }
    
    .process-intro {
        font-size: 1.1rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .step-number {
        font-size: 2rem;
        margin-right: 1rem;
        min-width: 60px;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .process-summary {
        padding: 2rem 1.5rem;
    }
    
    .summary-title {
        font-size: 1.8rem;
    }
}

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

.order-form-section::before {
    content: '';
    background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

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

.order-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.1), 
                0 16px 32px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.header-icon i {
    font-size: 32px;
    color: white;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.form-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.trust-item i {
    color: #10b981;
    font-size: 1rem;
}

.order-form {
    margin-bottom: 48px;
}

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

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

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

.form-control {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

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

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

.field-note {
    font-size: 0.8125rem;
    color: #6b7280;
    margin-top: 6px;
    font-style: italic;
}

.form-benefits {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
    border: 1px solid #e2e8f0;
}

.benefits-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.benefit-content strong {
    color: #1e293b;
    font-weight: 600;
    font-size: 0.95rem;
}

.benefit-content span {
    color: #64748b;
    font-size: 0.875rem;
}

.submit-button {
    position: relative;
    width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.4);
}

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

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

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

.button-glow {
    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.5s;
}

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

.form-footer {
    text-align: center;
    margin-top: 24px;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: #6b7280;
    margin-bottom: 12px;
}

.security-note i {
    color: #10b981;
}

.pricing-note {
    font-size: 0.875rem;
    color: #374151;
    background: rgba(16, 185, 129, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.social-proof {
    border-top: 1px solid #e5e7eb;
    padding-top: 48px;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.companies-image,
.metrics-image,
.testimonials-image {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.stat-number {
    font-size: 1.875rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

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

.featured-in {
    text-align: center;
}

.featured-title {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 24px;
}

.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.featured-logo {
    height: 32px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.featured-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 80px 0;
    }
    
    .order-form-wrapper {
        padding: 32px 24px;
        margin: 0 16px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .trust-indicators {
        gap: 16px;
    }
    
    .trust-item {
        font-size: 0.8125rem;
    }
    
    .benefits-list {
        gap: 12px;
    }
    
    .proof-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .featured-logos {
        gap: 20px;
    }
    
    .featured-logo {
        height: 28px;
    }
}

@media (max-width: 480px) {
    .header-icon {
        width: 64px;
        height: 64px;
    }
    
    .header-icon i {
        font-size: 28px;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .submit-button {
        padding: 18px 24px;
        font-size: 1rem;
    }
}
