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

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.8) 0%, rgba(25, 25, 25, 0.9) 100%);
    z-index: 2;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    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 {
    background: linear-gradient(45deg, #0d6efd, #0b5ed7);
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
    background: linear-gradient(45deg, #0b5ed7, #0a58ca);
}

.hero-cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.5);
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-banner {
        min-height: 500px;
    }
    
    .hero-image-container {
        min-height: 500px;
    }
    
    .hero-background-image {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-button {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .hero-banner {
        min-height: 450px;
    }
    
    .hero-image-container {
        min-height: 450px;
    }
    
    .hero-background-image {
        min-height: 450px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 60px 0;
    }
}

/* Block 2 */
.quantum-features {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    position: relative;
    overflow: hidden;
}

.quantum-features::before {
    content: '';
    background: radial-gradient(circle at 20% 30%, rgba(13, 110, 253, 0.05) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

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

.features-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-description {
    font-size: 1.3rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.features-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0d6efd;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.features-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s ease;
}

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

.features-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
}

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

.floating-element {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.2), rgba(111, 66, 193, 0.2));
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatAnimation 6s ease-in-out infinite;
}

.element-1 {
    animation-delay: 0s;
    animation-duration: 5s;
}

.element-2 {
    animation-delay: 2s;
    animation-duration: 7s;
}

.element-3 {
    animation-delay: 4s;
    animation-duration: 6s;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.6; }
    33% { transform: translateY(-20px) translateX(10px) scale(1.1); opacity: 0.8; }
    66% { transform: translateY(10px) translateX(-15px) scale(0.9); opacity: 0.7; }
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(13, 110, 253, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(10deg);
}

.icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card-text {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .quantum-features {
        padding: 80px 0;
    }
    
    .features-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .features-description {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .features-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .features-image-wrapper {
        transform: none;
        margin-top: 2rem;
    }
    
    .features-image-wrapper:hover {
        transform: scale(1.02);
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .features-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .features-stats {
        gap: 1rem;
        justify-content: space-around;
    }
    
    .stat-item {
        min-width: 80px;
    }
}

/* Block 3 */
.neural-analytics {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f2ff 100%);
    overflow: hidden;
}

.analytics-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.dashboard-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.dashboard-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    filter: brightness(0.9) contrast(1.1);
}

.dashboard-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    pointer-events: none;
}

.metric-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatMetric 4s ease-in-out infinite;
}

.metric-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.metric-2 {
    bottom: 80px;
    left: 20px;
    animation-delay: 1.3s;
}

.metric-3 {
    bottom: 20px;
    right: 60px;
    animation-delay: 2.6s;
}

.metric-icon-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0d6efd;
    line-height: 1;
    margin-bottom: 2px;
}

.metric-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.analytics-features {
    padding-left: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInFeature 0.8s ease-out forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.8s;
}

.feature-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-text {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

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

@keyframes slideInFeature {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 992px) {
    .analytics-title {
        font-size: 2.2rem;
    }
    
    .analytics-features {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .dashboard-container {
        margin-bottom: 30px;
    }
    
    .metric-card {
        position: static;
        margin-bottom: 15px;
        display: inline-flex;
        margin-right: 15px;
    }
    
    .dashboard-overlay {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .neural-analytics {
        padding: 60px 0;
    }
    
    .analytics-title {
        font-size: 1.8rem;
    }
    
    .analytics-subtitle {
        font-size: 1rem;
    }
    
    .dashboard-main-image {
        height: 250px;
    }
    
    .feature-item {
        margin-bottom: 30px;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .metric-card {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        width: 100%;
        margin-right: 0;
    }
}

/* Block 4 */
.order-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1d47 50%, #2d1b69 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 30% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
}

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

.form-title {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 50%, #ffff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.form-subtitle {
    font-size: 1.3rem;
    color: #b8c5ff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

.order-form-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.form-visual {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    opacity: 0.3;
    pointer-events: none;
}

.form-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: hue-rotate(180deg) saturate(2);
}

.quantum-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #00ffff 0%, transparent 70%);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 60%; left: 80%; animation-delay: 1s; }
.particle-3 { top: 80%; left: 20%; animation-delay: 2s; }
.particle-4 { top: 40%; left: 90%; animation-delay: 0.5s; }
.particle-5 { top: 10%; left: 70%; animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

.neural-order-form {
    position: relative;
    z-index: 3;
}

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

.input-group {
    position: relative;
}

.form-label {
    display: block;
    color: #00ffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.quantum-input {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quantum-input:focus {
    outline: none;
    border-color: #00ffff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.quantum-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-effect {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ffff00);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.quantum-input:focus + .input-effect {
    width: 100%;
}

.form-benefits {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 20px;
}

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

.benefit-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(64%) sepia(96%) saturate(6238%) hue-rotate(166deg) brightness(101%) contrast(101%);
}

.submit-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #ff00ff 0%, #00ffff 50%, #ffff00 100%);
    border: none;
    border-radius: 15px;
    color: #000;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

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

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

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .order-form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-visual {
        width: 120px;
        height: 120px;
        top: -15px;
        right: -15px;
    }
    
    .form-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 1.8rem;
    }
    
    .quantum-input {
        padding: 15px;
        font-size: 1rem;
    }
    
    .submit-button {
        font-size: 1.1rem;
        padding: 18px;
    }
}
