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

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 27, 62, 0.85) 0%, rgba(88, 28, 135, 0.75) 50%, rgba(15, 23, 42, 0.9) 100%);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    border: 2px solid transparent;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    color: white;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-banner {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 80vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .hero-cta-button {
        padding: 14px 28px;
    }
}

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

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

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

.insights-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 24px;
}

.insights-description {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 40px;
}

.insights-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.insight-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
}

.insight-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.insight-details p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.insights-visual {
    position: relative;
}

.dashboard-preview {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

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

.floating-stats {
    position: absolute;
    top: 20px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 120px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

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

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

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

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

.stat-card-primary .stat-value {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-success .stat-value {
    color: #28a745;
}

.stat-card-warning .stat-value {
    color: #ffc107;
}

@media (max-width: 1199px) {
    .insights-content {
        padding-right: 0;
    }
    
    .floating-stats {
        right: -20px;
    }
}

@media (max-width: 991px) {
    .insights-title {
        font-size: 2.4rem;
    }
    
    .dashboard-preview {
        transform: none;
        margin-top: 40px;
    }
    
    .floating-stats {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: -60px;
        z-index: 10;
    }
    
    .stat-card {
        min-width: 100px;
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .analytics-insights {
        padding: 60px 0;
    }
    
    .insights-title {
        font-size: 2rem;
    }
    
    .insights-description {
        font-size: 1.1rem;
    }
    
    .insight-item {
        gap: 16px;
    }
    
    .insight-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .insight-details h4 {
        font-size: 1.1rem;
    }
    
    .floating-stats {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .stat-card {
        flex: 1;
        min-width: 80px;
        padding: 12px;
    }
    
    .stat-value {
        font-size: 1.4rem;
    }
}

/* Block 3 */
.quantum-storage-evolution {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

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

.quantum-storage-evolution::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

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

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

.quantum-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.evolution-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

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

.quantum-feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.quantum-feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.feature-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.quantum-feature-card:hover .feature-image {
    transform: scale(1.1);
}

.feature-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.feature-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-description {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.feature-stats {
    margin-top: auto;
}

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

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

.stat-label {
    color: #74b9ff;
    font-weight: 600;
    font-size: 14px;
}

.stat-value {
    color: #2d3436;
    font-weight: 700;
    font-size: 16px;
}

.evolution-showcase {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 20px;
    line-height: 1.2;
}

.showcase-description {
    color: #636e72;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.showcase-metrics {
    display: flex;
    gap: 30px;
}

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

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

.metric-label {
    color: #74b9ff;
    font-weight: 600;
    font-size: 14px;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.showcase-visual {
    position: relative;
}

.showcase-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.floating-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #74b9ff, #a29bfe);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(116, 185, 255, 0.6);
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@media (max-width: 992px) {
    .evolution-title {
        font-size: 2.5rem;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .showcase-metrics {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .quantum-storage-evolution {
        padding: 60px 0;
    }
    
    .evolution-title {
        font-size: 2rem;
    }
    
    .evolution-subtitle {
        font-size: 1.1rem;
    }
    
    .evolution-showcase {
        padding: 30px 20px;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .showcase-metrics {
        flex-direction: column;
        gap: 20px;
    }
}

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

.order-form-section::before {
    content: '';
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: absolute;
    top: -300px;
    right: -300px;
    z-index: 1;
}

.order-form-section::after {
    content: '';
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    position: absolute;
    bottom: -200px;
    left: -200px;
    z-index: 1;
}

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

.form-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-title {
    color: white;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.order-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.form-visual {
    position: relative;
}

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

.visual-stats {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.stat-bubble {
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    min-width: 90px;
    position: absolute;
}

.bubble-1 {
    top: 20px;
    right: -20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.bubble-2 {
    bottom: 80px;
    left: -20px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.bubble-3 {
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.bubble-value {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.bubble-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 28px;
}

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

.input-wrapper {
    position: relative;
}

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

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

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

.form-features {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2d3748;
    font-size: 0.95rem;
}

.feature-item i {
    color: #48bb78;
    font-size: 1rem;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

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

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

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

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: #718096;
    font-size: 0.9rem;
}

.security-notice i {
    color: #48bb78;
}

@media (max-width: 992px) {
    .order-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    
    .form-title {
        font-size: 2.4rem;
    }
    
    .specialist-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .order-form-container {
        padding: 20px;
    }
    
    .stat-bubble {
        padding: 12px;
        min-width: 80px;
    }
    
    .bubble-value {
        font-size: 1rem;
    }
    
    .bubble-label {
        font-size: 0.8rem;
    }
}
