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

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

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

.hero-overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.85) 0%, rgba(108, 117, 125, 0.75) 100%);
    z-index: 2;
}

.hero-banner .container {
    position: relative;
    z-index: 3;
    margin-top: -100vh;
    height: 100vh;
    display: flex;
    align-items: center;
}

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

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #e3f2fd;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #f8f9fa;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-secondary-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #dee2e6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-cta-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
    color: #ffffff;
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

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

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

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-wrapper {
        flex-direction: column;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        text-align: center;
        width: 100%;
    }
    
    .hero-stats {
        justify-content: space-around;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

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

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

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

.section-title {
    font-size: 3.2rem;
    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;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.benefits-content {
    padding-right: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefit-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.benefits-visual {
    padding-left: 40px;
    position: relative;
}

.benefits-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.visual-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 150px;
    background: white;
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.2;
}

.cta-container {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 28px;
    color: white;
    box-shadow: 0 25px 80px rgba(102, 126, 234, 0.3);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.btn-primary-cta {
    background: white;
    color: #667eea;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    color: #667eea;
}

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

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

@media (max-width: 992px) {
    .benefits-content, .benefits-visual {
        padding-left: 0;
        padding-right: 0;
    }
    
    .benefits-visual {
        margin-top: 60px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .benefits-showcase {
        padding: 60px 0;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-cta, .btn-secondary-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

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

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

.badge-wrapper {
    margin-bottom: 24px;
}

.success-badge {
    display: inline-block;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.testimonials-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a237e;
    line-height: 1.2;
    margin-bottom: 24px;
}

.testimonials-intro {
    font-size: 1.2rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 48px;
}

.overall-stats {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-block .stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 8px;
}

.stat-block .stat-label {
    font-size: 0.95rem;
    color: #78909c;
    font-weight: 500;
    margin-bottom: 12px;
}

.star-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonials-visual {
    padding-left: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.testimonials-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    margin-bottom: 40px;
}

.floating-testimonial {
    width: 100%;
    max-width: 350px;
}

.testimonial-bubble {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-left: 5px solid #2196F3;
}

.quote-icon {
    color: #2196F3;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.bubble-text {
    font-size: 1.1rem;
    color: #37474f;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 24px;
}

.bubble-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e3f2fd;
}

.author-name {
    font-weight: 600;
    color: #1a237e;
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.9rem;
    color: #78909c;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    border-color: #e3f2fd;
}

.testimonial-card.featured {
    border: 2px solid #2196F3;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.author-profile {
    display: flex;
    gap: 16px;
    align-items: center;
}

.profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e3f2fd;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 6px;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-role {
    color: #546e7a;
    font-weight: 500;
    font-size: 0.95rem;
}

.author-followers {
    color: #78909c;
    font-size: 0.85rem;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-top: 6px;
}

.platform-badge {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-content .quote-mark {
    color: #2196F3;
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #37474f;
    margin-bottom: 24px;
}

.results-metrics {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8faff;
    padding: 16px 20px;
    border-radius: 12px;
    border-left: 4px solid #2196F3;
}

.metric-icon {
    color: #2196F3;
    font-size: 1.2rem;
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a237e;
}

.metric-label {
    font-size: 0.85rem;
    color: #78909c;
    font-weight: 500;
}

.achievement-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.tag {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.business-metrics {
    background: #f8faff;
    padding: 24px;
    border-radius: 16px;
    margin-top: 24px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.metric-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 0.8rem;
    color: #78909c;
    font-weight: 500;
}

.cta-testimonials {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    padding: 80px 60px;
    border-radius: 32px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

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

.cta-subtext {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

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

.btn-primary-action {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    border: 2px solid transparent;
}

.btn-primary-action:hover {
    background: linear-gradient(45deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

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

.btn-secondary-action:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .testimonials-visual {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .results-metrics {
        flex-direction: column;
        gap: 16px;
    }
    
    .metric-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-testimonials {
        padding: 40px 24px;
    }
    
    .cta-heading {
        font-size: 1.8rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
}

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

.process-workflow::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"><circle cx="25" cy="25" r="2" fill="%23e2e8f0" opacity="0.5"/><circle cx="75" cy="75" r="1.5" fill="%23cbd5e0" opacity="0.7"/><circle cx="50" cy="10" r="1" fill="%23a0aec0" opacity="0.6"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

.process-header {
    margin-bottom: 40px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
}

.process-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-intro {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 32px;
}

.process-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #2d3748;
}

.highlight-item i {
    color: #667eea;
    font-size: 18px;
    width: 20px;
}

.process-visual {
    position: relative;
    padding: 20px;
}

.process-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

.workflow-overlay {
    position: absolute;
    top: 30%;
    right: 10%;
}

.step-indicator {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    position: relative;
}

.step-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.steps-container {
    margin-top: 60px;
}

.step-item {
    display: flex;
    gap: 32px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.step-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.step-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.step-number-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #f56565;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(245, 101, 101, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.step-description {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.parameter-options {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.param-group {
    margin-bottom: 20px;
}

.param-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 14px;
}

.param-range {
    display: flex;
    align-items: center;
    gap: 12px;
}

.range-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    position: relative;
}

.range-fill {
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

.range-min, .range-max {
    font-size: 12px;
    color: #718096;
    font-weight: 600;
}

.competition-levels {
    display: flex;
    gap: 8px;
}

.level {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.level.low {
    background: rgba(72, 187, 120, 0.1);
    color: #48bb78;
    border: 1px solid rgba(72, 187, 120, 0.2);
}

.level.medium {
    background: rgba(237, 137, 54, 0.1);
    color: #ed8936;
    border: 1px solid rgba(237, 137, 54, 0.2);
}

.level.medium.active {
    background: #ed8936;
    color: white;
}

.level.high {
    background: rgba(245, 101, 101, 0.1);
    color: #f56565;
    border: 1px solid rgba(245, 101, 101, 0.2);
}

.analysis-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.metric-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.metric-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.metric-number {
    font-size: 20px;
    font-weight: 800;
    color: #1a202c;
}

.metric-label {
    font-size: 12px;
    color: #718096;
    font-weight: 600;
}

.results-preview {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.result-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-title {
    font-weight: 700;
    font-size: 16px;
}

.result-count {
    font-size: 14px;
    opacity: 0.9;
}

.keyword-sample {
    padding: 20px;
}

.keyword-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.keyword-row:last-child {
    border-bottom: none;
}

.keyword-term {
    font-weight: 600;
    color: #2d3748;
    font-size: 14px;
}

.keyword-metrics {
    display: flex;
    gap: 8px;
    align-items: center;
}

.volume {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.difficulty.easy {
    background: rgba(72, 187, 120, 0.1);
    color: #48bb78;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.difficulty.medium {
    background: rgba(237, 137, 54, 0.1);
    color: #ed8936;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.potential.high {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.potential.medium {
    background: rgba(251, 191, 36, 0.1);
    color: #f59e0b;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    margin-left: 40px;
}

.connector-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    margin-bottom: 8px;
}

.connector-arrow {
    color: #667eea;
    font-size: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.process-cta {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-top: 60px;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 40px;
    color: white;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.5;
}

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

.btn-primary-large, .btn-secondary-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    min-width: 220px;
}

.btn-primary-large {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.5);
    color: white;
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

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

.btn-subtext {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 500;
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

.guarantee-item i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .process-title {
        font-size: 32px;
    }
    
    .step-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .step-connector {
        margin-left: 0;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-guarantees {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .analysis-metrics {
        grid-template-columns: 1fr;
    }
    
    .process-highlights {
        align-items: center;
        text-align: center;
    }
}

/* Block 5 */
.order-form-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    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 100 100"><circle cx="20" cy="20" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="80" cy="40" r="1" fill="%23cbd5e1" opacity="0.4"/><circle cx="40" cy="80" r="1" fill="%23e2e8f0" opacity="0.3"/></svg>');
    background-size: 100px 100px;
}

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

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

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

.form-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.1;
}

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

.form-container {
    background: white;
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
}

.form-visual {
    padding-right: 40px;
}

.form-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 16px;
}

.point-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon i {
    font-size: 20px;
    color: white;
}

.point-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.point-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.form-wrapper {
    padding-left: 40px;
}

.form-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 16px;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.step-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    white-space: nowrap;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: #e2e8f0;
    margin-top: -24px;
}

.consultation-form {
    position: relative;
}

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

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

.form-label i {
    font-size: 16px;
    color: #6b7280;
}

.form-input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 16px;
    color: #1f2937;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

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

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.form-input:focus + .input-highlight {
    transform: scaleX(1);
}

.input-helper {
    font-size: 12px;
    color: #6b7280;
    margin-top: 8px;
    padding-left: 4px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #4b5563;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    color: #10b981;
    font-size: 16px;
    width: 20px;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 20px 32px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

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

.button-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.button-content i {
    font-size: 20px;
}

.button-arrow {
    transition: transform 0.3s ease;
}

.submit-button:hover .button-arrow {
    transform: translateX(4px);
}

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

.trust-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

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

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}

.success-indicators {
    background: white;
    border-radius: 32px;
    padding: 80px 60px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

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

.indicator-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.indicator-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.indicator-card {
    padding: 32px;
    background: #f8fafc;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.indicator-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon i {
    font-size: 28px;
    color: white;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.card-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-value {
    font-size: 14px;
    font-weight: 600;
    color: #10b981;
    background: #ecfdf5;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

.total-value {
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    color: white;
}

.value-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.value-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.value-label {
    font-size: 16px;
    color: #9ca3af;
}

.value-amount {
    font-size: 32px;
    font-weight: 700;
    text-decoration: line-through;
    opacity: 0.7;
}

.value-offer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offer-text {
    font-size: 16px;
    color: #9ca3af;
}

.offer-amount {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 992px) {
    .form-container {
        padding: 40px 30px;
    }
    
    .form-visual, .form-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    
    .form-visual {
        margin-bottom: 40px;
    }
    
    .form-title {
        font-size: 36px;
    }
    
    .success-indicators {
        padding: 60px 40px;
    }
    
    .indicator-title {
        font-size: 28px;
    }
    
    .indicators-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .value-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 80px 0;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .form-subtitle {
        font-size: 16px;
    }
    
    .form-steps {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .step-connector {
        display: none;
    }
    
    .success-indicators {
        padding: 40px 20px;
    }
    
    .trust-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
}
