
/* Block 1 */
.hero-banner {
    position: relative;
    height: 70vh;
    min-height: 500px;
    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;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(44, 62, 80, 0.8) 100%);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 2;
}

.hero-text {
    max-width: 800px;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #ecf0f1;
    font-weight: 400;
}

.hero-cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.hero-cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* Block 2 */
.ai-diagnostics {
padding: 5rem 0;
background: linear-gradient(165deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f0f23 100%);
color: #ffffff;
overflow: hidden;
}

.diagnostics-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
}

.section-header {
text-align: center;
margin-bottom: 4rem;
}

.section-title {
font-size: 3.5rem;
font-weight: 800;
background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #ff006e 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 1.5rem;
letter-spacing: -0.02em;
}

.section-subtitle {
font-size: 1.3rem;
color: #a0aec0;
max-width: 800px;
margin: 0 auto;
line-height: 1.7;
}

.diagnostics-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2.5rem;
margin-bottom: 5rem;
}

.diagnostic-card {
background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 20px;
padding: 2.5rem;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
backdrop-filter: blur(10px);
}

.diagnostic-card:hover {
transform: translateY(-8px);
border-color: rgba(0, 212, 255, 0.3);
box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1);
}

.card-icon {
margin-bottom: 2rem;
position: relative;
}

.icon-image {
width: 80px;
height: 80px;
border-radius: 16px;
filter: drop-shadow(0 8px 24px rgba(124, 58, 237, 0.3));
}

.card-title {
font-size: 1.6rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 1rem;
}

.card-description {
color: #cbd5e0;
line-height: 1.7;
margin-bottom: 2rem;
font-size: 1rem;
}

.card-metrics {
display: flex;
gap: 2rem;
}

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

.metric-item strong {
font-size: 1.8rem;
font-weight: 800;
background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.metric-item small {
color: #a0aec0;
font-size: 0.8rem;
margin-top: 0.3rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}

.demo-section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
border-radius: 24px;
padding: 3rem;
border: 1px solid rgba(255,255,255,0.1);
}

.demo-content {
}

.demo-title {
font-size: 2.2rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 1rem;
}

.demo-text {
color: #cbd5e0;
font-size: 1.1rem;
line-height: 1.7;
margin-bottom: 2.5rem;
}

.demo-button {
background: linear-gradient(135deg, #7c3aed 0%, #00d4ff 100%);
border: none;
color: #ffffff;
padding: 1rem 2.5rem;
border-radius: 12px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.05em;
}

.demo-button:hover {
transform: translateY(-2px);
box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}

.demo-visual {
position: relative;
}

.dashboard-image {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pulse-indicator {
position: absolute;
top: 20px;
right: 20px;
width: 16px;
height: 16px;
background: #00ff88;
border-radius: 50%;
animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
0%, 100% {
opacity: 1;
transform: scale(1);
box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}
50% {
opacity: 0.7;
transform: scale(1.2);
box-shadow: 0 0 40px rgba(0, 255, 136, 0.9);
}
}

@media (max-width: 1024px) {
.section-title {
font-size: 2.8rem;
}

.diagnostics-grid {
grid-template-columns: 1fr;
gap: 2rem;
}

.demo-section {
grid-template-columns: 1fr;
gap: 2.5rem;
text-align: center;
}
}

@media (max-width: 768px) {
.ai-diagnostics {
padding: 3rem 0;
}

.diagnostics-container {
padding: 0 1rem;
}

.section-title {
font-size: 2.2rem;
}

.section-subtitle {
font-size: 1.1rem;
}

.diagnostic-card {
padding: 2rem;
}

.card-metrics {
gap: 1.5rem;
}

.demo-section {
padding: 2rem;
}

.demo-title {
font-size: 1.8rem;
}
}

/* Block 3 */
.neural-evolution {
background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
padding: 5rem 0;
color: #ffffff;
overflow: hidden;
}

.evolution-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

.neural-evolution .section-header {
text-align: center;
margin-bottom: 4rem;
}

.neural-evolution .section-title {
font-size: 3rem;
font-weight: 800;
background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 1.5rem;
text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.neural-evolution .section-subtitle {
font-size: 1.3rem;
color: #b0b8c7;
max-width: 800px;
margin: 0 auto;
line-height: 1.6;
}

.evolution-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 3rem;
margin-bottom: 5rem;
}

.evolution-node {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
border: 1px solid rgba(0, 255, 255, 0.3);
border-radius: 20px;
padding: 2rem;
transition: all 0.4s ease;
backdrop-filter: blur(10px);
}

.evolution-node:hover {
transform: translateY(-10px);
border-color: rgba(255, 0, 255, 0.6);
box-shadow: 0 20px 40px rgba(255, 0, 255, 0.2);
}

.node-core {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
height: 120px;
border-radius: 15px;
background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.05) 100%);
overflow: hidden;
}

.node-image {
width: 80px;
height: 80px;
border-radius: 50%;
filter: brightness(1.2) saturate(1.5);
z-index: 2;
}

.neural-pulse {
width: 100px;
height: 100px;
border-radius: 50%;
background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
animation: neuralPulse 2s ease-in-out infinite;
z-index: 1;
}

@keyframes neuralPulse {
0%, 100% { transform: scale(1); opacity: 0.5; }
50% { transform: scale(1.5); opacity: 0.8; }
}

.node-content h3 {
font-size: 1.5rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 1rem;
text-align: center;
}

.node-content p {
color: #b0b8c7;
line-height: 1.6;
margin-bottom: 1.5rem;
text-align: center;
}

.evolution-stats {
display: flex;
justify-content: space-around;
gap: 1rem;
}

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

.stat-block strong {
font-size: 1.5rem;
font-weight: 800;
color: #00ffff;
display: block;
}

.stat-block small {
font-size: 0.8rem;
color: #888;
text-align: center;
}

.evolution-showcase {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
border-radius: 25px;
padding: 3rem;
border: 1px solid rgba(0, 255, 255, 0.2);
}

.showcase-visual {
display: flex;
flex-direction: column;
align-items: center;
gap: 2rem;
}

.evolution-visualization {
width: 100%;
max-width: 400px;
height: 300px;
border-radius: 20px;
filter: brightness(1.1) contrast(1.2);
box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.evolution-indicators {
display: flex;
gap: 1rem;
}

.indicator {
width: 15px;
height: 15px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
cursor: pointer;
transition: all 0.3s ease;
}

.indicator.active {
background: linear-gradient(45deg, #00ffff, #ff00ff);
box-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
}

.showcase-content h3 {
font-size: 2.2rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 1.5rem;
}

.showcase-content p {
font-size: 1.1rem;
color: #b0b8c7;
line-height: 1.7;
margin-bottom: 2rem;
}

.evolution-controls {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
}

.evolution-btn {
padding: 1rem 2rem;
border: none;
border-radius: 10px;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
}

.evolution-btn.primary {
background: linear-gradient(45deg, #00ffff, #ff00ff);
color: #ffffff;
}

.evolution-btn.primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0, 255, 255, 0.4);
}

.evolution-btn.secondary {
background: rgba(255, 255, 255, 0.1);
color: #ffffff;
border: 1px solid rgba(255, 255, 255, 0.3);
}

.evolution-btn.secondary:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
}

.evolution-metrics {
display: flex;
flex-direction: column;
gap: 0.8rem;
}

.metric-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.5rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-label {
color: #b0b8c7;
font-size: 0.95rem;
}

.metric-value {
color: #00ffff;
font-weight: 700;
font-size: 1.1rem;
}

@media (max-width: 768px) {
.neural-evolution .section-title {
font-size: 2rem;
}
  
.evolution-grid {
grid-template-columns: 1fr;
gap: 2rem;
}

.evolution-showcase {
grid-template-columns: 1fr;
gap: 2rem;
text-align: center;
}

.evolution-controls {
flex-direction: column;
}

.evolution-stats {
flex-direction: column;
gap: 1rem;
}
}

/* Block 4 */
.order-form-section {
padding: 4rem 2rem;
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
min-height: 80vh;
display: flex;
align-items: center;
}

.form-container {
max-width: 1400px;
margin: 0 auto;
width: 100%;
}

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

.form-title {
font-size: 2.5rem;
font-weight: 700;
color: #1a202c;
margin-bottom: 1rem;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.form-subtitle {
font-size: 1.2rem;
color: #4a5568;
margin: 0;
}

.form-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
background: #ffffff;
border-radius: 20px;
padding: 3rem;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-visual {
position: relative;
display: flex;
align-items: center;
justify-content: center;
}

.workstation-image {
width: 100%;
height: auto;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.visual-overlay {
position: absolute;
bottom: 20px;
left: 20px;
right: 20px;
background: rgba(26, 32, 44, 0.9);
border-radius: 10px;
padding: 1.5rem;
backdrop-filter: blur(10px);
}

.diagnostic-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
}

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

.stat-number {
display: block;
font-size: 1.8rem;
font-weight: 700;
color: #ffd700;
margin-bottom: 0.5rem;
}

.stat-label {
font-size: 0.9rem;
color: #ffffff;
}

.form-content {
display: flex;
flex-direction: column;
justify-content: center;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.form-group {
position: relative;
}

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

.form-input, .form-textarea {
width: 100%;
padding: 1rem;
border: 2px solid #e2e8f0;
border-radius: 8px;
font-size: 1rem;
transition: all 0.3s ease;
background: #ffffff;
}

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

.input-focus-line {
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
transition: width 0.3s ease;
}

.form-input:focus + .input-focus-line, 
.form-textarea:focus + .input-focus-line {
width: 100%;
}

.form-textarea {
resize: vertical;
min-height: 120px;
}

.priority-selection {
margin: 1rem 0;
}

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

.priority-options {
display: flex;
gap: 1.5rem;
}

.priority-option {
display: flex;
align-items: center;
gap: 0.5rem;
cursor: pointer;
position: relative;
}

.priority-option input[type="radio"] {
display: none;
}

.priority-indicator {
width: 12px;
height: 12px;
border-radius: 50%;
transition: all 0.3s ease;
}

.priority-indicator.low {
background: #48bb78;
}

.priority-indicator.medium {
background: #ed8936;
}

.priority-indicator.urgent {
background: #f56565;
}

.priority-option input[type="radio"]:checked + .priority-indicator {
transform: scale(1.3);
box-shadow: 0 0 0 3px rgba(255, 255, 255, 1), 0 0 0 6px currentColor;
}

.priority-text {
font-size: 0.9rem;
color: #4a5568;
}

.submit-button {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #ffffff;
border: none;
padding: 1rem 2rem;
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: 0.5rem;
margin-top: 1rem;
}

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

.button-icon img {
width: 16px;
height: 16px;
filter: brightness(0) invert(1);
}

.form-features {
display: flex;
justify-content: space-around;
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid #e2e8f0;
}

.feature-item {
display: flex;
align-items: center;
gap: 0.5rem;
}

.feature-icon {
width: 20px;
height: 20px;
}

.feature-text {
font-size: 0.85rem;
color: #4a5568;
font-weight: 500;
}

@media (max-width: 1024px) {
.form-wrapper {
grid-template-columns: 1fr;
gap: 2rem;
padding: 2rem;
}

.form-title {
font-size: 2rem;
}

.diagnostic-stats {
grid-template-columns: 1fr;
gap: 0.5rem;
}

.priority-options {
flex-direction: column;
gap: 1rem;
}
}

@media (max-width: 768px) {
.order-form-section {
padding: 2rem 1rem;
}

.form-wrapper {
padding: 1.5rem;
}

.form-title {
font-size: 1.8rem;
}

.form-subtitle {
font-size: 1rem;
}

.form-features {
flex-direction: column;
gap: 1rem;
align-items: center;
}
}
