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

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

.hero-bg-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(108, 117, 125, 0.75) 100%);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
    margin-top: -50vh;
}

.hero-content {
    color: white;
    animation: fadeInUp 1.2s ease-out;
}

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

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffc107 0%, #ff6b35 100%);
    color: #212529;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    margin-bottom: 4rem;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.6);
    color: #212529;
}

.hero-cta-btn i {
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

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

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        flex-direction: row;
        gap: 1rem;
    }
}

/* Block 2 */
.quantum-insights {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.quantum-insights::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="rgba(255,255,255,0.1)"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="4s" repeatCount="indefinite"/></circle><circle cx="60" cy="80" r="1" fill="rgba(255,255,255,0.1)"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="5s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: float 20s linear infinite;
}

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

.insights-content {
    color: white;
    z-index: 2;
    position: relative;
}

.insights-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #f0f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(255,255,255,0.3);
}

.insights-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.insights-features {
    margin-bottom: 2.5rem;
}

.feature-point {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.insights-icon {
    color: #ffd700;
    margin-right: 1rem;
    font-size: 1.3rem;
    width: 24px;
}

.insights-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,255,255,0.15);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.insights-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: white;
}

.insights-visual {
    position: relative;
}

.insights-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.insights-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.floating-metrics {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.metric-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    animation: pulse 3s ease-in-out infinite;
}

.metric-card:nth-child(2) {
    animation-delay: 1s;
}

.metric-card:nth-child(3) {
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.metric-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

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

@media (max-width: 991px) {
    .insights-title {
        font-size: 2.5rem;
    }
    
    .floating-metrics {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
    
    .insights-image {
        transform: none;
    }
}

@media (max-width: 768px) {
    .quantum-insights {
        padding: 80px 0;
    }
    
    .insights-title {
        font-size: 2rem;
    }
    
    .floating-metrics {
        flex-wrap: wrap;
    }
    
    .metric-card {
        flex: 1;
        min-width: 120px;
    }
}

/* Block 3 */
.workflow-automation {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    position: relative;
    overflow: hidden;
}

.workflow-automation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.workflow-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.automation-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.automation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.card-icon-wrapper {
    position: relative;
    height: 120px;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
}

.card-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.automation-card:hover .card-bg-image {
    transform: scale(1.1);
}

.icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.automation-icon {
    font-size: 3rem;
    color: white;
}

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

.card-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-metrics {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.metric {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.workflow-dashboard {
    margin-top: 100px;
}

.dashboard-preview {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
}

.dashboard-stats {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-bubble {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bubble-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
}

.bubble-label {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 600;
    margin-top: 5px;
}

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

.dashboard-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 20px;
}

.dashboard-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 35px;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 1rem;
    color: #4a5568;
}

.feature-icon {
    color: #667eea;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
}

.dashboard-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.dashboard-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

@media (max-width: 992px) {
    .workflow-title {
        font-size: 2.8rem;
    }
    
    .dashboard-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .dashboard-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .workflow-automation {
        padding: 60px 0;
    }
    
    .workflow-title {
        font-size: 2.2rem;
    }
    
    .workflow-subtitle {
        font-size: 1.1rem;
    }
    
    .automation-card {
        padding: 30px 20px;
    }
    
    .dashboard-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    
    .stat-bubble {
        padding: 12px 16px;
    }
    
    .bubble-value {
        font-size: 1.2rem;
    }
}

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

.order-form-section::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff10"><polygon points="0,20 50,0 100,10 150,5 200,15 250,8 300,12 350,3 400,18 450,7 500,11 550,2 600,14 650,9 700,6 750,16 800,4 850,13 900,1 950,17 1000,10 1000,100 0,100"/></svg>') repeat-x;
    height: 100px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
}

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

.form-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.form-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-hero-image {
    width: 100%;
    max-width: 500px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    margin: 0 auto;
    display: block;
}

.order-form-container {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.2);
}

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

.input-group {
    position: relative;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.form-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

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

.input-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 0 0 15px 15px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a5568;
    font-weight: 600;
}

.benefit-icon {
    color: #667eea;
    font-size: 1.2rem;
}

.submit-button {
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

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

.button-text {
    flex: 1;
}

.button-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.form-trust-indicators {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 2px solid #e2e8f0;
    padding-top: 25px;
}

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

.trust-badge {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 10px;
}

.trust-text {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 600;
}

.floating-testimonial {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    animation: float 6s ease-in-out infinite;
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-width: 280px;
    border: 1px solid rgba(255,255,255,0.3);
}

.testimonial-text {
    font-style: italic;
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.author-role {
    font-size: 0.8rem;
    color: #718096;
}

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

.star-icon {
    color: #fbbf24;
    font-size: 0.9rem;
}

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

@media (max-width: 1200px) {
    .floating-testimonial {
        position: static;
        transform: none;
        margin-top: 40px;
        animation: none;
    }
    
    .testimonial-card {
        max-width: none;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .form-title {
        font-size: 2.5rem;
    }
    
    .order-form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .form-trust-indicators {
        flex-direction: column;
        align-items: center;
    }
    
    .order-form-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .submit-button {
        font-size: 1.1rem;
        padding: 18px 30px;
    }
}
