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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(108, 117, 125, 0.75) 100%);
  width: 100%;
  height: 100%;
  z-index: 2;
}

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

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

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

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
  color: white;
  text-decoration: none;
}

.hero-cta-button i {
  transition: transform 0.3s ease;
}

.hero-cta-button:hover i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 90vh;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta-button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

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

/* Block 2 */
.innovation-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.innovation-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.innovation-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.innovation-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.innovation-card.featured {
    transform: scale(1.05);
    border: 2px solid rgba(102, 126, 234, 0.4);
    box-shadow: 0 8px 40px rgba(102, 126, 234, 0.2);
}

.innovation-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.tech-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.tech-badge.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-content {
    padding: 32px;
}

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

.card-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1rem;
}

.feature-metrics {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.metric {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.1);
    padding: 8px 14px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #667eea;
}

.metric i {
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 80px;
    padding: 60px 0;
    position: relative;
}

.stats-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(102, 126, 234, 0.3) 50%, transparent 100%);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .innovation-showcase {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .innovation-card.featured {
        transform: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 60px;
        padding: 40px 0;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-metrics {
        justify-content: center;
    }
}

/* Block 3 */
.neural-ecosystem {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.neural-ecosystem::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.ecosystem-header {
    text-align: center;
    margin-bottom: 80px;
}

.tech-indicator {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(90deg, #00f5ff 0%, #0066ff 100%);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.ecosystem-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #00f5ff 50%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.neural-grid {
    display: grid;
    gap: 60px;
    margin-bottom: 80px;
}

.neural-hub {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(0, 245, 255, 0.3);
    backdrop-filter: blur(20px);
}

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

.hub-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(0, 245, 255, 0.5);
    position: relative;
    z-index: 3;
}

.pulse-ring {
    border: 2px solid rgba(0, 245, 255, 0.4);
    border-radius: 50%;
    width: 320px;
    height: 320px;
    animation: pulse 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 0.7s;
    border-color: rgba(0, 102, 255, 0.3);
    width: 360px;
    height: 360px;
}

.pulse-ring.delay-2 {
    animation-delay: 1.4s;
    border-color: rgba(255, 255, 255, 0.2);
    width: 400px;
    height: 400px;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.hub-details {
    color: #ffffff;
}

.hub-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #00f5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hub-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
}

.capability-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 20px;
    background: rgba(0, 245, 255, 0.15);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #00f5ff;
}

.neural-branches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.branch-node {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
}

.branch-node:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.2);
}

.node-icon {
    margin-bottom: 20px;
}

.node-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 245, 255, 0.3);
}

.node-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.node-text {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 20px;
}

.performance-meter {
    margin-top: 20px;
}

.meter-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
}

.meter-bar::after {
    content: '';
    height: 100%;
    background: linear-gradient(90deg, #00f5ff 0%, #0066ff 100%);
    border-radius: 4px;
    width: var(--performance, 0%);
    animation: fillBar 2s ease-out;
}

.meter-bar[data-performance="94"]::after { width: 94%; }
.meter-bar[data-performance="88"]::after { width: 88%; }
.meter-bar[data-performance="99"]::after { width: 99%; }
.meter-bar[data-performance="92"]::after { width: 92%; }

@keyframes fillBar {
    from { width: 0%; }
}

.meter-label {
    font-size: 14px;
    font-weight: 600;
    color: #00f5ff;
}

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

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

.metric-card:hover {
    border-color: rgba(0, 245, 255, 0.4);
    transform: scale(1.02);
}

.metric-icon {
    flex-shrink: 0;
}

.icon-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(0, 245, 255, 0.3);
}

.metric-data {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #00f5ff;
    line-height: 1;
}

.metric-unit {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 4px;
}

.metric-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .ecosystem-title {
        font-size: 3rem;
    }
    
    .neural-hub {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .neural-ecosystem {
        padding: 60px 0;
    }
    
    .ecosystem-title {
        font-size: 2.5rem;
    }
    
    .ecosystem-subtitle {
        font-size: 1rem;
    }
    
    .neural-hub {
        padding: 30px;
    }
    
    .hub-image {
        width: 220px;
        height: 220px;
    }
    
    .pulse-ring {
        width: 260px;
        height: 260px;
    }
    
    .pulse-ring.delay-1 {
        width: 300px;
        height: 300px;
    }
    
    .pulse-ring.delay-2 {
        width: 340px;
        height: 340px;
    }
    
    .hub-title {
        font-size: 2rem;
    }
    
    .metric-card {
        padding: 20px;
    }
    
    .capability-tags {
        justify-content: center;
    }
}

/* Block 4 */
.order-form-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 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(147, 51, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.form-wrapper {
    position: relative;
    z-index: 2;
}

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

.tech-indicator {
    display: inline-block;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.form-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.form-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.consultation-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
}

.benefit-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    align-self: flex-start;
}

.badge-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.badge-text {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.stats-preview {
    display: flex;
    gap: 30px;
    align-self: flex-end;
}

.preview-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

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

.form-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
}

.form-header-inner {
    margin-bottom: 40px;
}

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

.inner-subtitle {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.5;
}

.input-group-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.input-wrapper {
    position: relative;
}

.input-label {
    display: block;
    color: #e2e8f0;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 18px 60px 18px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 12px;
}

.icon-image {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.form-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

.feature-text {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 500;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 16px;
    padding: 20px 30px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.rocket-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 25px;
    transition: all 0.3s ease;
}

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

.cert-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.cert-text {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 968px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .form-content {
        padding: 35px 25px;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .stats-preview {
        gap: 15px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 80px 0;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .inner-title {
        font-size: 1.75rem;
    }
    
    .form-features {
        gap: 15px;
        justify-content: flex-start;
    }
    
    .consultation-image {
        height: 400px;
    }
    
    .visual-overlay {
        padding: 25px;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }
    
    .indicator-item {
        justify-content: center;
        min-width: 200px;
    }
}
