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

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(108, 99, 255, 0.75) 100%);
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-overlay, .hero-background {
    position: absolute;
}

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

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

.hero-description {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-btn {
    background: linear-gradient(135deg, #6c63ff 0%, #667eea 100%);
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.4);
    background: linear-gradient(135deg, #5a52d5 0%, #5566cc 100%);
}

.hero-cta-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 80vh;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(108, 99, 255, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(108, 99, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6c63ff, #a855f7);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.testimonial-card.featured {
    border: 2px solid #6c63ff;
    transform: scale(1.02);
}

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

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6c63ff;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.2);
}

.testimonial-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.testimonial-role {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.testimonial-rating i {
    color: #ffc107;
    font-size: 1rem;
}

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

.testimonial-date {
    color: #adb5bd;
    font-size: 0.85rem;
    font-weight: 500;
}

.testimonials-stats {
    margin-top: 60px;
    padding: 40px 0;
    border-top: 2px solid rgba(108, 99, 255, 0.1);
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #6c63ff;
    line-height: 1;
    margin-bottom: 8px;
}

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

@media (max-width: 768px) {
    .testimonials-showcase {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonials-stats {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .testimonial-info {
        text-align: center;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
}

/* Block 3 */
.method-steps-guide {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8eeff 100%);
}

.guide-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

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

.step-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

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

.step-header {
    position: relative;
    overflow: hidden;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(108, 99, 255, 0.9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.step-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.step-content {
    padding: 30px;
}

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

.step-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.step-details {
    display: flex;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c63ff;
    font-weight: 500;
    font-size: 0.9rem;
}

.detail-item i {
    font-size: 1rem;
}

.phase-gather {
    border-top: 4px solid #10b981;
}

.phase-gather .step-number {
    background: rgba(16, 185, 129, 0.9);
}

.phase-restore {
    border-top: 4px solid #6c63ff;
}

.phase-restore .step-number {
    background: rgba(108, 99, 255, 0.9);
}

.phase-prepare {
    border-top: 4px solid #f59e0b;
}

.phase-prepare .step-number {
    background: rgba(245, 158, 11, 0.9);
}

.method-benefits {
    margin-top: 80px;
    padding: 60px 0;
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.benefits-visual {
    position: relative;
}

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

.benefits-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #6c63ff, #764ba2);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
}

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

.benefits-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 40px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c63ff, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.benefit-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.benefit-text p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .guide-title {
        font-size: 2.2rem;
    }
    
    .benefits-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .benefits-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .method-steps-guide {
        padding: 60px 0;
    }
    
    .guide-title {
        font-size: 1.8rem;
    }
    
    .step-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .benefits-image {
        height: 300px;
    }
    
    .benefit-item {
        gap: 15px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
}

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

.order-form-section::before {
    content: '';
    background: url('evening-stars-pattern.png') repeat;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.form-header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

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

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

.benefit-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.benefit-badge i {
    color: #ffd700;
}

.order-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 35px;
}

.input-group {
    position: relative;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

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

.form-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    margin-top: 12px;
}

.form-footer {
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    margin-bottom: 20px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.privacy-note {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-note i {
    color: #28a745;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

.trust-text {
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .order-form-card {
        padding: 30px 20px;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .form-title {
        font-size: 1.7rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .form-input {
        padding: 14px 16px 14px 45px;
    }
    
    .input-icon {
        left: 15px;
    }
}
