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

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

.hero-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(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(238, 90, 36, 0.5);
    background: linear-gradient(45deg, #ff5252, #d63031);
}

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

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

.hero-cta-btn:hover .btn-icon {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }
    
    .hero-cta-btn {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 60px 0;
    }
}

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

/* Block 2 */
.ai-insights-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
    margin: 60px 0;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.insights-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insights-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.insights-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b6b, #ffa726);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-content p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

.insights-visual {
    position: relative;
}

.insights-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.visual-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.data-point {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 12px 16px;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.data-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #667eea;
}

.data-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 2px;
}

.innovation-timeline {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

.timeline-header {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.timeline-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem 1.5rem;
    border-radius: 14px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    text-align: center;
}

.timeline-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.timeline-item.active {
    border-color: #ffa726;
    background: rgba(255, 167, 38, 0.15);
    transform: scale(1.05);
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: #ffa726;
    margin-bottom: 1rem;
}

.timeline-content h5 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content p {
    opacity: 0.85;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.timeline-item:hover .timeline-img {
    opacity: 1;
}

@media (max-width: 768px) {
    .insights-title {
        font-size: 2rem;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .visual-overlay {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .innovation-timeline {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
    
    .timeline-item.active {
        transform: none;
    }
}

/* Block 3 */
.quantum-architecture-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #0f0f23 100%);
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.quantum-architecture-section::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.quantum-architecture-section > .container {
    position: relative;
    z-index: 2;
}

.quantum-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7877c6, #ff77c6, #77c6ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.quantum-subtitle {
    font-size: 1.2rem;
    color: #b3b3d4;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.quantum-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.quantum-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.quantum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(120, 119, 198, 0.2);
    border-color: rgba(120, 119, 198, 0.4);
}

.quantum-card.primary {
    border-left: 4px solid #7877c6;
}

.quantum-card.secondary {
    border-left: 4px solid #ff77c6;
}

.quantum-card.accent {
    border-left: 4px solid #77c6ff;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quantum-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
}

.card-header h4 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.card-body p {
    color: #b3b3d4;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.metrics-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.metric {
    background: rgba(120, 119, 198, 0.2);
    color: #7877c6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.quantum-visualization {
    position: relative;
}

.viz-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.viz-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.element-node {
    position: absolute;
    background: rgba(120, 119, 198, 0.9);
    color: #ffffff;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.element-node.top-left {
    top: 20px;
    left: 20px;
}

.element-node.top-right {
    top: 20px;
    right: 20px;
}

.element-node.bottom-center {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.performance-dashboard {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-header h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #77c6ff;
    font-weight: 600;
}

.status-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #77c6ff;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% { box-shadow: 0 0 5px #77c6ff; }
    100% { box-shadow: 0 0 20px #77c6ff, 0 0 30px #77c6ff; }
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.metric-panel {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.panel-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
}

.metric-data {
    flex: 1;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.metric-label {
    color: #b3b3d4;
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.metric-trend {
    font-size: 0.8rem;
    font-weight: 600;
}

.metric-trend.positive {
    color: #4ade80;
}

.metric-trend.stable {
    color: #77c6ff;
}

@media (max-width: 768px) {
    .quantum-title {
        font-size: 2.2rem;
    }
    
    .quantum-subtitle {
        font-size: 1rem;
    }
    
    .viz-main-image {
        height: 300px;
    }
    
    .element-node {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

/* Block 4 */
.order-form-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(64, 224, 208, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(255, 20, 147, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.form-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.2);
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.form-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #40e0d0, #ff1493, #8a2be2);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
}

.form-container {
    padding: 3rem;
}

.form-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

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

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #40e0d0;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.quantum-form {
    margin-bottom: 2rem;
}

.input-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.input-group {
    position: relative;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    width: 20px;
    height: 20px;
    z-index: 2;
    border-radius: 4px;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.form-input {
    width: 100%;
    padding: 1.25rem 1rem 1.25rem 3.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: #40e0d0;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.3);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    transform: translateY(-2.5rem) translateX(-0.5rem) scale(0.85);
    color: #40e0d0;
    background: rgba(15, 15, 35, 0.8);
    padding: 0 0.5rem;
    border-radius: 4px;
}

.form-input:focus ~ .input-icon {
    opacity: 1;
    transform: scale(1.1);
}

.form-label {
    position: absolute;
    left: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #40e0d0, #ff1493);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.form-input:focus ~ .input-border {
    width: 100%;
}

.form-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(64, 224, 208, 0.1);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 25px;
    color: #40e0d0;
    font-size: 0.9rem;
    font-weight: 500;
    animation: featurePulse 2s ease-in-out infinite;
}

@keyframes featurePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(64, 224, 208, 0.2); }
    50% { box-shadow: 0 0 20px rgba(64, 224, 208, 0.4); }
}

.badge-icon {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}

.submit-btn {
    width: 100%;
    padding: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

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

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

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 2;
}

.btn-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
}

.btn-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-ripple {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn:hover .btn-ripple {
    opacity: 1;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trust-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.trust-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    filter: brightness(1.2);
}

.trust-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .form-title {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-stats {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-features {
        justify-content: center;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .header-overlay {
        padding: 1rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
}
