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

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 80vh;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(30, 64, 175, 0.85) 50%, rgba(15, 23, 42, 0.9) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    margin: -80vh auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.hero-cta-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

/* Block 2 */
.ai-workflow-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
      position: relative;
      overflow: hidden;
    }
    
    .ai-workflow-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(30, 64, 175, 0.03) 0%, transparent 50%);
      pointer-events: none;
    }
    
    .workflow-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 1;
    }
    
    .workflow-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .workflow-title {
      font-size: 3rem;
      font-weight: 800;
      color: #1e293b;
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    
    .workflow-subtitle {
      font-size: 1.25rem;
      color: #64748b;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
    }
    
    .workflow-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-bottom: 80px;
    }
    
    .workflow-card {
      background: white;
      border-radius: 20px;
      padding: 2.5rem;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      border: 1px solid rgba(226, 232, 240, 0.8);
      position: relative;
    }
    
    .workflow-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
      border-radius: 20px 20px 0 0;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .workflow-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }
    
    .workflow-card:hover::before {
      opacity: 1;
    }
    
    .workflow-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 1.5rem;
      border-radius: 16px;
      overflow: hidden;
      background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    
    .workflow-img {
      width: 60px;
      height: 60px;
      object-fit: contain;
      transition: transform 0.3s ease;
    }
    
    .workflow-card:hover .workflow-img {
      transform: scale(1.1);
    }
    
    .workflow-card-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 1rem;
      line-height: 1.3;
    }
    
    .workflow-card-desc {
      color: #64748b;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      font-size: 1rem;
    }
    
    .workflow-metrics {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    
    .metric-item {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 25px;
      font-size: 0.875rem;
      font-weight: 600;
      white-space: nowrap;
    }
    
    .workflow-stats {
      background: white;
      border-radius: 24px;
      padding: 3rem;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(226, 232, 240, 0.8);
    }
    
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      text-align: center;
    }
    
    .stat-item {
      position: relative;
    }
    
    .stat-item::after {
      content: '';
      position: absolute;
      right: -1rem;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
    }
    
    .stat-item:last-child::after {
      display: none;
    }
    
    .stat-number {
      font-size: 3rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.5rem;
      line-height: 1;
    }
    
    .stat-label {
      color: #64748b;
      font-weight: 500;
      font-size: 1rem;
      margin: 0;
    }
    
    @media (max-width: 768px) {
      .ai-workflow-section {
        padding: 60px 0;
      }
      
      .workflow-container {
        padding: 0 1rem;
      }
      
      .workflow-title {
        font-size: 2.5rem;
      }
      
      .workflow-subtitle {
        font-size: 1.1rem;
      }
      
      .workflow-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 60px;
      }
      
      .workflow-card {
        padding: 2rem;
      }
      
      .workflow-stats {
        padding: 2rem;
        border-radius: 16px;
      }
      
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }
      
      .stat-item::after {
        display: none;
      }
      
      .stat-number {
        font-size: 2.5rem;
      }
      
      .workflow-metrics {
        justify-content: center;
      }
    }
    
    @media (max-width: 480px) {
      .workflow-title {
        font-size: 2rem;
      }
      
      .workflow-card {
        padding: 1.5rem;
      }
      
      .workflow-stats {
        padding: 1.5rem;
      }
      
      .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      
      .stat-number {
        font-size: 2rem;
      }
    }

/* Block 3 */
.quantum-rendering-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.quantum-rendering-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.quantum-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.quantum-header {
    text-align: center;
    margin-bottom: 6rem;
}

.quantum-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quantum-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.quantum-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.quantum-visualization {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.quantum-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.quantum-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
}

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

.particle-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #60a5fa;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.8);
    animation: quantumFloat 4s ease-in-out infinite;
}

.particle-node:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle-node:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.particle-node:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: 2s;
}

.particle-node:nth-child(4) {
    top: 80%;
    left: 25%;
    animation-delay: 3s;
}

.particle-node:nth-child(5) {
    top: 10%;
    left: 75%;
    animation-delay: 1.5s;
}

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

.quantum-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-cluster {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-node {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.feature-node:hover {
    transform: translateX(10px);
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(30, 41, 59, 0.8);
}

.feature-node.active {
    border-color: #60a5fa;
    background: rgba(59, 130, 246, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.feature-desc {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.quantum-performance {
    margin-bottom: 6rem;
}

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

.perf-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.perf-card:hover {
    transform: translateY(-10px);
}

.perf-card.breakthrough {
    border-color: rgba(34, 197, 94, 0.5);
}

.perf-card.efficiency {
    border-color: rgba(251, 191, 36, 0.5);
}

.perf-card.precision {
    border-color: rgba(139, 92, 246, 0.5);
}

.perf-icon {
    margin-bottom: 1.5rem;
}

.perf-img {
    width: 60px;
    height: 60px;
    border-radius: 15px;
}

.perf-metric {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.perf-label {
    color: #cbd5e1;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.perf-bar {
    width: 100%;
    height: 8px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.perf-fill {
    height: 100%;
    border-radius: 4px;
    animation: fillBar 2s ease-out;
}

.quantum-fill {
    width: 95%;
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.efficiency-fill {
    width: 90%;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
}

.precision-fill {
    width: 99%;
    background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
}

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

.quantum-applications {
    text-align: center;
}

.applications-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
}

.applications-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.app-slide {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/10;
    transition: transform 0.3s ease;
}

.app-slide:hover {
    transform: scale(1.05);
}

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

.app-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.app-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.app-description {
    color: #cbd5e1;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .quantum-title {
        font-size: 2.5rem;
    }
    
    .quantum-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .applications-carousel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .quantum-rendering-section {
        padding: 4rem 0;
    }
    
    .quantum-container {
        padding: 0 1rem;
    }
    
    .quantum-title {
        font-size: 2rem;
    }
    
    .quantum-subtitle {
        font-size: 1.125rem;
    }
    
    .quantum-hero-img {
        height: 250px;
    }
    
    .perf-card {
        padding: 2rem;
    }
    
    .perf-metric {
        font-size: 2rem;
    }
}

/* Block 4 */
.order-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin: 3rem 0;
}

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

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

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

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

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-visual {
    position: relative;
}

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

.form-benefits {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

.benefit-text {
    font-weight: 600;
    color: #1e293b;
}

.form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    background: transparent;
    font-size: 1rem;
    color: #1f2937;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-bottom-color: var(--primary-color);
}

.form-input:focus + .input-underline,
.form-select:focus + .input-underline,
.form-textarea:focus + .input-underline {
    transform: scaleX(1);
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

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

.form-submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.btn-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: invert(1);
    transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.form-guarantee {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guarantee-badge {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.guarantee-text {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .form-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-wrapper {
        padding: 2rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 3rem 0;
    }
    
    .form-container {
        padding: 0 1rem;
    }
    
    .form-wrapper {
        padding: 1.5rem;
    }
    
    .form-benefits {
        margin-top: 1.5rem;
    }
    
    .benefit-item {
        padding: 0.75rem;
    }
    
    .form-guarantee {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
