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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.8) 0%, rgba(102, 126, 234, 0.7) 50%, rgba(25, 135, 84, 0.6) 100%);
    z-index: 2;
}

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

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

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

.hero-cta-btn {
    display: inline-block;
    background: linear-gradient(45deg, #fff, #f8f9fa);
    color: #0d6efd;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    color: #0b5ed7;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Block 2 */
.ai-automation-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.automation-content {
    padding-right: 2rem;
}

.innovation-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.automation-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.automation-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-highlights {
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.highlight-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.highlight-text h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.highlight-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.explore-ai-btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.explore-ai-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    background: #f8fafc;
}

.automation-visual {
    position: relative;
    padding-left: 2rem;
}

.automation-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-stats {
    position: relative;
    margin-top: -80px;
    margin-left: -40px;
    z-index: 10;
}

.stat-card {
    background: white;
    color: #667eea;
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    width: 140px;
    animation: floatAnimation 3s ease-in-out infinite;
}

.stat-card-secondary {
    background: linear-gradient(135deg, #ff9a56, #ff6b35);
    color: white;
    margin-left: 60px;
    animation-delay: -1s;
}

.stat-card-accent {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    margin-left: 20px;
    animation-delay: -2s;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.8;
}

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

@media (max-width: 991.98px) {
    .automation-content {
        padding-right: 0;
        margin-bottom: 4rem;
        text-align: center;
    }
    
    .automation-visual {
        padding-left: 0;
    }
    
    .automation-title {
        font-size: 2.5rem;
    }
    
    .floating-stats {
        margin-top: 2rem;
        margin-left: 0;
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat-card {
        margin-left: 0 !important;
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .ai-automation-showcase {
        padding: 80px 0;
    }
    
    .automation-title {
        font-size: 2rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .highlight-icon {
        margin-bottom: 1rem;
    }
    
    .stat-card {
        width: 120px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Block 3 */
.quantum-productivity-suite {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    overflow: hidden;
}

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

.quantum-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.quantum-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.suite-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.2;
}

.suite-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.productivity-grid {
    margin-bottom: 120px;
}

.productivity-module {
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.productivity-module:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 64px rgba(0,212,255,0.2);
    border-color: rgba(0,212,255,0.3);
}

.module-featured {
    border: 2px solid rgba(255,0,255,0.3);
    background: rgba(255,0,255,0.08);
}

.module-featured:hover {
    box-shadow: 0 32px 64px rgba(255,0,255,0.25);
    border-color: rgba(255,0,255,0.5);
}

.module-header {
    position: relative;
    margin-bottom: 32px;
    text-align: center;
}

.module-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0,212,255,0.3);
    transition: all 0.4s ease;
}

.module-featured .module-icon {
    border-color: rgba(255,0,255,0.3);
}

.module-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(0,212,255,0.6);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.pulse-featured {
    border-color: rgba(255,0,255,0.6);
}

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

.module-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.module-description {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 32px;
}

.module-metrics {
    display: flex;
    gap: 32px;
    justify-content: center;
}

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

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #00d4ff;
}

.module-featured .metric-value {
    color: #ff00ff;
}

.metric-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,212,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.overlay-featured {
    background: linear-gradient(135deg, rgba(255,0,255,0.1), transparent);
}

.productivity-module:hover .module-overlay {
    opacity: 1;
}

.quantum-performance-display {
    background: rgba(0,0,0,0.3);
    border-radius: 32px;
    padding: 60px 40px;
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.1);
}

.performance-visualization {
    position: relative;
}

.performance-chart {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.floating-indicators {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.indicator-node {
    position: absolute;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 16px 24px;
    border: 2px solid;
    animation: float 3s ease-in-out infinite;
}

.node-primary {
    top: 20%;
    right: 10%;
    border-color: #00d4ff;
    animation-delay: 0s;
}

.node-secondary {
    top: 60%;
    left: 15%;
    border-color: #ff00ff;
    animation-delay: 1s;
}

.node-accent {
    bottom: 15%;
    right: 20%;
    border-color: #00ff88;
    animation-delay: 2s;
}

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

.node-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

.node-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.performance-summary {
    padding-left: 40px;
}

.summary-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-description {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 40px;
}

.achievement-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.achievement-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.achievement-badge:hover {
    background: rgba(0,212,255,0.1);
    border-color: rgba(0,212,255,0.3);
}

.achievement-badge i {
    color: #00d4ff;
    font-size: 1.25rem;
}

.achievement-badge span {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.quantum-demo-btn {
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.quantum-demo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.quantum-demo-btn:hover::before {
    left: 100%;
}

.quantum-demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0,212,255,0.3);
}

@media (max-width: 768px) {
    .suite-title {
        font-size: 2.5rem;
    }
    
    .suite-subtitle {
        font-size: 1.125rem;
    }
    
    .productivity-module {
        padding: 32px 24px;
    }
    
    .quantum-performance-display {
        padding: 40px 24px;
    }
    
    .performance-summary {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .summary-title {
        font-size: 1.875rem;
    }
    
    .module-metrics {
        gap: 24px;
    }
    
    .performance-chart {
        height: 300px;
    }
}

/* Block 4 */
.order-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    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, 119, 198, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(119, 198, 255, 0.2) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

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

.form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

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

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulse-glow 2s infinite;
}

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

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.8);
        transform: scale(1.05);
    }
}

.form-title {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #e3e7ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-group:hover {
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.input-group:focus-within {
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 20px 8px;
    font-size: 16px;
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: transparent;
}

.form-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    top: 20px;
    left: 20px;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    transform: translateY(-8px);
    font-size: 12px;
    color: #667eea;
    font-weight: 600;
}

.input-highlight {
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    bottom: 0;
    left: 0;
    right: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.input-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.15);
    margin-right: 8px;
}

.input-icon i {
    font-size: 18px;
    color: #667eea;
}

.form-benefits {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.benefit-icon i {
    font-size: 16px;
    color: #667eea;
}

.benefit-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 16px;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

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

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

.button-energy {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    transform: skewX(-15deg);
    transition: left 0.6s ease;
}

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

.button-text {
    position: relative;
    z-index: 1;
}

.button-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

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

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

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

.trust-badge {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.trust-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

@media (max-width: 768px) {
    .form-container {
        padding: 40px 30px;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .form-subtitle {
        font-size: 16px;
    }
    
    .form-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 30px 20px;
    }
    
    .header-icon {
        width: 60px;
        height: 60px;
    }
    
    .header-icon i {
        font-size: 24px;
    }
    
    .form-title {
        font-size: 24px;
    }
}
