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

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

.hero-background {
    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(30, 58, 138, 0.85) 0%, rgba(79, 70, 229, 0.75) 50%, rgba(99, 102, 241, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 5rem 0;
}

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

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: #e0e7ff;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.25rem;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-secondary-text {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-right: 0.75rem;
}

.feature-item span {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
}

.hero-cta-section {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    border: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff;
    text-decoration: none;
}

.btn-secondary-hero {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1;
}

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

.stat-divider {
    width: 1px;
    height: 3rem;
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-secondary-text {
        font-size: 1rem;
    }
    
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-cta-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .hero-stats {
        padding: 1.5rem;
    }
}

/* Block 2 */
.process-workflow {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  position: relative;
}

.process-workflow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e3f2fd, transparent);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.process-content {
  padding: 2rem;
}

.step-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.process-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.process-description {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.process-secondary {
  font-size: 1rem;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.process-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.3s ease;
}

.process-image-container:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.process-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-highlights {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.highlight-item:hover {
  transform: translateY(-3px);
}

.highlight-item i {
  color: #667eea;
  font-size: 1.2rem;
}

.highlight-item span {
  font-weight: 600;
  color: #2d3748;
  font-size: 0.95rem;
}

.accuracy-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-block {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  flex: 1;
  transition: transform 0.3s ease;
}

.stat-block:hover {
  transform: translateY(-5px);
}

.stat-value {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.9rem;
  color: #718096;
  font-weight: 500;
}

.validation-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.validation-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.validation-item:hover {
  transform: translateX(10px);
}

.validation-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.validation-icon i {
  color: white;
  font-size: 1.5rem;
}

.validation-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.validation-content p {
  font-size: 1rem;
  color: #718096;
  line-height: 1.5;
  margin: 0;
}

.export-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.export-format {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 0.8rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.export-format:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.export-format i {
  font-size: 1.8rem;
  color: #667eea;
}

.export-format span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3748;
}

.cta-section {
  margin-top: 2rem;
}

.btn-process-cta {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
}

.btn-process-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
  color: white;
}

@media (max-width: 768px) {
  .process-workflow {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .process-title {
    font-size: 1.6rem;
  }
  
  .accuracy-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .feature-highlights {
    flex-direction: column;
    gap: 1rem;
  }
  
  .export-options {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-image-container {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .process-image {
    height: 250px;
  }
}

/* Block 3 */
.customer-testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

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

.testimonials-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.customer-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid #667eea;
    object-fit: cover;
}

.customer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.customer-position {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 0.1rem;
}

.customer-company {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 0;
}

.rating-stars {
    margin-bottom: 1.5rem;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-right: 0.2rem;
}

.testimonial-text {
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 400;
}

.testimonial-secondary {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-style: italic;
}

.testimonial-metrics {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

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

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.metric-label {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-card-wide {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card-wide:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card-wide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.success-metrics-container {
    background: #ffffff;
    border-radius: 25px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    margin-top: 2rem;
}

.metrics-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2.5rem;
}

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

.metric-block {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.metric-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

.metric-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-description {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
    line-height: 1.4;
}

.cta-testimonials {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-testimonials-cta {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-testimonials-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .testimonials-main-title {
        font-size: 2.2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .metric-number {
        font-size: 1.8rem;
    }
    
    .success-metrics-container {
        padding: 2rem 1.5rem;
    }
}

/* Block 4 */
.advanced-features-showcase {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f1f5ff 100%);
      position: relative;
      overflow: hidden;
    }

    .advanced-features-showcase::before {
      content: '';
      position: absolute;
      top: 0;
      left: -50%;
      width: 200%;
      height: 100%;
      background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
      z-index: 0;
    }

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

    .features-main-title {
      font-size: 3.2rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .features-subtitle {
      font-size: 1.3rem;
      color: #64748b;
      line-height: 1.6;
      max-width: 800px;
      margin: 0 auto;
    }

    .feature-card-premium {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      height: 100%;
    }

    .feature-card-premium:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .feature-image-container {
      position: relative;
      height: 280px;
      overflow: hidden;
    }

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

    .feature-card-premium:hover .feature-image {
      transform: scale(1.05);
    }

    .feature-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      color: white;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      z-index: 2;
    }

    .feature-content {
      padding: 2rem;
    }

    .feature-icon-wrapper {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .feature-main-icon {
      font-size: 1.8rem;
      color: white;
    }

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

    .feature-description {
      font-size: 1.1rem;
      color: #64748b;
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    .feature-specs {
      space-y: 12px;
    }

    .spec-item {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
      font-size: 1rem;
      color: #475569;
    }

    .spec-item i {
      color: #10b981;
      margin-right: 12px;
      font-size: 1.1rem;
    }

    .capability-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      height: 100%;
    }

    .capability-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    }

    .capability-header {
      position: relative;
      height: 200px;
      overflow: hidden;
    }

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

    .capability-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(99, 102, 241, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .capability-card:hover .capability-overlay {
      opacity: 1;
    }

    .capability-icon {
      font-size: 3rem;
      color: white;
    }

    .capability-content {
      padding: 1.5rem;
    }

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

    .capability-text {
      font-size: 1rem;
      color: #64748b;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .capability-stats {
      display: flex;
      gap: 1rem;
    }

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

    .stat-number {
      font-size: 1.4rem;
      font-weight: 700;
      color: #6366f1;
    }

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

    .integration-showcase {
      background: white;
      border-radius: 20px;
      padding: 3rem;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

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

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

    .integration-subtitle {
      font-size: 1.1rem;
      color: #64748b;
      line-height: 1.6;
    }

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

    .integration-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1.5rem;
      border: 2px solid #e2e8f0;
      border-radius: 16px;
      transition: all 0.3s ease;
    }

    .integration-item:hover {
      border-color: #6366f1;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
    }

    .integration-logo {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .integration-logo i {
      font-size: 1.5rem;
      color: white;
    }

    .integration-name {
      font-size: 1rem;
      font-weight: 600;
      color: #1e293b;
      text-align: center;
    }

    .api-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .api-feature {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.5rem;
      background: #f8fafc;
      border-radius: 12px;
    }

    .api-feature i {
      font-size: 1.5rem;
      color: #6366f1;
      margin-top: 4px;
    }

    .api-content h4 {
      font-size: 1.2rem;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 0.5rem;
    }

    .api-content p {
      font-size: 1rem;
      color: #64748b;
      margin: 0;
    }

    .features-cta-section {
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      border-radius: 24px;
      padding: 4rem 3rem;
      text-align: center;
      color: white;
    }

    .cta-main-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .cta-description {
      font-size: 1.2rem;
      opacity: 0.9;
      line-height: 1.6;
      max-width: 700px;
      margin: 0 auto 2.5rem;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .btn-features-primary, .btn-features-secondary {
      padding: 16px 32px;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .btn-features-primary {
      background: white;
      color: #6366f1;
    }

    .btn-features-primary:hover {
      background: #f8fafc;
      color: #6366f1;
      transform: translateY(-2px);
    }

    .btn-features-secondary {
      background: transparent;
      color: white;
      border-color: rgba(255, 255, 255, 0.3);
    }

    .btn-features-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      color: white;
      border-color: white;
    }

    .cta-guarantee {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .guarantee-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1rem;
      opacity: 0.9;
    }

    .guarantee-item i {
      font-size: 1.2rem;
    }

    @media (max-width: 768px) {
      .features-main-title {
        font-size: 2.5rem;
      }

      .integration-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .api-features {
        grid-template-columns: 1fr;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .btn-features-primary, .btn-features-secondary {
        width: 100%;
        max-width: 300px;
      }

      .cta-guarantee {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }
    }

/* Block 5 */
.premium-order-form {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0;
    position: relative;
}

.premium-order-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
}

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

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

.form-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.form-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-weight: 500;
}

.benefit-item i {
    color: #3b82f6;
    font-size: 1.1rem;
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-form {
    margin-bottom: 40px;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

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

.form-input:focus {
    border-bottom-color: #3b82f6;
}

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

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.form-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    border-radius: 16px;
    padding: 20px 32px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    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.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -8px rgba(59, 130, 246, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    transition: transform 0.3s ease;
}

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

.trust-indicators {
    border-top: 1px solid #e5e7eb;
    padding-top: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #64748b;
    font-size: 0.95rem;
}

.trust-item i {
    color: #10b981;
    font-size: 1rem;
}

.form-visual {
    position: relative;
    margin-top: 48px;
}

.demo-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.visual-overlay {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.processing-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.indicator-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.indicator-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.indicator-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
}

.indicator-arrow {
    color: #9ca3af;
    font-weight: bold;
    margin: 0 8px;
}

.stats-preview {
    display: flex;
    gap: 24px;
    justify-content: center;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.guarantee-section {
    margin-top: 80px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.guarantee-content {
    text-align: center;
    margin-bottom: 48px;
}

.guarantee-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.guarantee-text {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.guarantee-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guarantee-feature i {
    color: #10b981;
    font-size: 1.5rem;
    margin-top: 4px;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.feature-content p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .form-title {
        font-size: 2.5rem;
    }
    
    .form-container {
        padding: 32px 24px;
    }
    
    .form-benefits {
        gap: 24px;
    }
    
    .processing-indicator {
        flex-direction: column;
        gap: 16px;
    }
    
    .indicator-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }
    
    .stats-preview {
        gap: 16px;
    }
    
    .guarantee-section {
        padding: 32px 24px;
    }
}
