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

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(13, 110, 253, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
}

.hero-text-content {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  color: white;
}

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

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta-btn {
  background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);
  color: white;
  border: none;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  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-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
  background: linear-gradient(135deg, #0b5ed7 0%, #6235a6 100%);
}

.hero-cta-btn:active {
  transform: translateY(-1px);
}

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

@media (max-width: 576px) {
  .hero-banner {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta-btn {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }
}

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

    .tech-innovations-showcase::before {
      content: '';
      background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                  radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 1;
    }

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

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

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

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

    .innovations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
    }

    .innovation-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid #e2e8f0;
    }

    .innovation-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

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

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

    .innovation-card:hover .innovation-img {
      transform: scale(1.05);
    }

    .innovation-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      z-index: 3;
    }

    .card-content {
      padding: 30px;
    }

    .card-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1a202c;
      margin-bottom: 15px;
    }

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

    .tech-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .tech-features li {
      padding: 8px 0;
      color: #475569;
      position: relative;
      padding-left: 25px;
      font-size: 0.95rem;
    }

    .tech-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 8px;
      color: #10b981;
      font-weight: bold;
    }

    .cta-section {
      text-align: center;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 50px 40px;
      border-radius: 20px;
      color: white;
      margin-top: 40px;
    }

    .cta-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .cta-text {
      font-size: 1.1rem;
      opacity: 0.9;
      margin-bottom: 30px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-button {
      background: white;
      color: #667eea;
      border: none;
      padding: 15px 40px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    }

    @media (max-width: 768px) {
      .tech-innovations-showcase {
        padding: 60px 0;
      }

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

      .innovations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .innovation-card {
        margin: 0 15px;
      }

      .card-content {
        padding: 25px;
      }

      .cta-section {
        padding: 40px 25px;
        margin: 20px 15px 0;
      }

      .cta-title {
        font-size: 1.6rem;
      }
    }

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

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

      .card-image {
        height: 180px;
      }

      .innovation-badge {
        top: 10px;
        right: 10px;
        padding: 4px 12px;
        font-size: 0.8rem;
      }

      .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
      }
    }

/* Block 3 */
.performance-analytics-dashboard {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d1b69 100%);
    color: white;
}

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

.dashboard-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #5b73ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-subtitle {
    font-size: 1.1rem;
    color: #a0a3bd;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.metrics-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

.metric-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1rem;
    color: #a0a3bd;
    margin-bottom: 0.8rem;
}

.metric-trend {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}

.metric-trend.positive {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.metric-trend.negative {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.metric-trend.stable {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.performance-insights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.insights-panel,
.benchmark-comparison {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 2.5rem;
}

.panel-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.insight-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.insight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.insight-priority {
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.insight-priority.high {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.insight-priority.medium {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.insight-priority.low {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.insight-text {
    color: #d1d5db;
    line-height: 1.5;
    margin: 0;
}

.comparison-chart {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.arch-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.arch-label {
    min-width: 120px;
    font-weight: 500;
    color: #ffffff;
}

.bar-container {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.performance-bar {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #5b73ff);
    border-radius: 6px;
    transition: width 1.5s ease;
}

.performance-bar[data-performance="95"] {
    width: 95%;
}

.performance-bar[data-performance="92"] {
    width: 92%;
}

.performance-bar[data-performance="87"] {
    width: 87%;
}

.arch-score {
    min-width: 40px;
    font-weight: 600;
    color: #00d4ff;
}

.analytics-footer {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.analytics-btn {
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.analytics-btn.primary {
    background: linear-gradient(45deg, #00d4ff, #5b73ff);
    color: white;
}

.analytics-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.analytics-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

@media (max-width: 768px) {
    .performance-analytics-dashboard {
        padding: 3rem 0;
    }
    
    .dashboard-title {
        font-size: 2rem;
    }
    
    .metrics-overview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .performance-insights {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .insights-panel,
    .benchmark-comparison {
        padding: 2rem;
    }
    
    .analytics-footer {
        flex-direction: column;
        align-items: center;
    }
    
    .analytics-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .metric-card {
        padding: 1.5rem;
    }
    
    .insights-panel,
    .benchmark-comparison {
        padding: 1.5rem;
    }
    
    .arch-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .arch-label {
        min-width: auto;
    }
}

/* Block 4 */
.order-form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    padding: 80px 0;
    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(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.form-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

.form-container {
    background: rgba(255,255,255,0.95);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.form-visual {
    position: relative;
    background: linear-gradient(45deg, #f8f9ff, #e8f0ff);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.form-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.visual-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-highlight:last-child {
    margin-bottom: 0;
}

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

.feature-text {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.form-content {
    padding: 50px;
}

.contact-form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

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

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

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

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

.icon-img {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.form-benefits {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9ff, #eef2ff);
    border-radius: 16px;
    border-left: 4px solid #667eea;
}

.benefits-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-item {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.benefit-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.submit-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

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

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

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

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

.form-security {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
}

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

.security-text {
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 968px) {
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .form-visual {
        order: 2;
        padding: 30px;
    }
    
    .form-content {
        order: 1;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .form-content {
        padding: 30px 20px;
    }
    
    .form-visual {
        padding: 20px;
    }
    
    .visual-overlay {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .form-title {
        font-size: 2rem;
    }
    
    .form-container {
        margin: 0 20px;
    }
}
