
/* Block 1 */
.hero-banner-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(51, 65, 85, 0.75) 100%);
    z-index: 2;
}

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

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

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.3;
}

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

.hero-secondary-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
    font-weight: 300;
}

.hero-features-highlight {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #f1f5f9;
    font-weight: 500;
}

.feature-icon {
    color: #60a5fa;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.hero-cta-button {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.35);
    margin-bottom: 1.5rem;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.45);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.hero-cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

.hero-guarantee {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features-highlight {
        margin-bottom: 2rem;
    }
    
    .hero-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        justify-content: center;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-point {
        font-size: 0.9rem;
    }
    
    .hero-cta-button {
        width: 100%;
    }
}

/* Block 2 */
.accuracy-showcase-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.accuracy-showcase-section::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.accuracy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

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

.accuracy-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e40af 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.2;
}

.accuracy-subtitle {
    font-size: 1.4rem;
    color: #64748b;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.accuracy-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.accuracy-visual-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.accuracy-chart-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accuracy-chart-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

.accuracy-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 32px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accuracy-details-column {
    padding-left: 20px;
}

.accuracy-feature-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 60px;
}

.accuracy-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.feature-icon-wrapper {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

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

.feature-content {
    flex: 1;
}

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

.feature-description {
    color: #475569;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
}

.accuracy-cta-wrapper {
    text-align: center;
    padding: 40px 32px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 24px;
    border: 2px dashed rgba(59, 130, 246, 0.2);
}

.accuracy-cta-button {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    color: white;
    padding: 20px 48px;
    border: none;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accuracy-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

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

.accuracy-cta-button:hover .cta-icon {
    transform: translateX(4px);
}

.accuracy-guarantee {
    margin-top: 16px;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .accuracy-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .accuracy-details-column {
        padding-left: 0;
    }
    
    .accuracy-main-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .accuracy-showcase-section {
        padding: 80px 0;
    }
    
    .accuracy-container {
        padding: 0 20px;
    }
    
    .accuracy-stats-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .accuracy-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .accuracy-main-title {
        font-size: 2.2rem;
    }
    
    .accuracy-subtitle {
        font-size: 1.2rem;
    }
}

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

.testimonials-section::before {
  content: '';
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(99,102,241,0.05)"/><circle cx="75" cy="75" r="0.3" fill="rgba(99,102,241,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.4;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

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

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

.testimonials-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #475569);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  line-height: 1.2;
}

.testimonials-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.testimonial-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
}

.testimonial-card.featured::before {
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
}

.testimonial-card.featured .testimonial-text {
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-card.featured .author-title,
.testimonial-card.featured .author-company {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stars-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.stars-rating .fas.fa-star {
  color: #fbbf24;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 32px;
  flex-grow: 1;
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -16px;
  left: -8px;
  font-size: 4rem;
  color: #e5e7eb;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e5e7eb;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.1);
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #1f2937;
}

.testimonial-card.featured .author-info h4 {
  color: white;
}

.author-title {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 2px;
  font-weight: 500;
}

.author-company {
  font-size: 0.9rem;
  color: #9ca3af;
  font-weight: 400;
}

.testimonials-stats {
  margin-bottom: 80px;
  padding: 60px;
  background: white;
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

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

.stat-item::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 2px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonials-cta {
  text-align: center;
  padding: 60px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 32px;
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonials-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

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

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.testimonials-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonials-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
  background: linear-gradient(135deg, #5b5cf6, #7c3aed);
}

.cta-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.testimonials-cta-button:hover .cta-icon {
  transform: translateX(4px);
}

.cta-note {
  margin-top: 20px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .testimonials-title {
    font-size: 2.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .testimonial-card.featured {
    grid-column: span 1;
  }
  
  .testimonial-card {
    padding: 32px 24px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .testimonials-cta {
    padding: 40px 24px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

/* Block 4 */
.integration-ecosystem-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    position: relative;
    overflow: hidden;
}

.integration-ecosystem-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.integration-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.integration-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.integration-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.integration-visual-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.integration-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.integration-main-image:hover {
    transform: translateY(-10px);
}

.integration-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.integration-stat-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.integration-stat-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    font-size: 2.5rem;
    color: #4a90e2;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 5px;
}

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

.integration-details-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.integration-categories {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.category-section {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.category-section:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.category-icon {
    font-size: 2rem;
    color: #4a90e2;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 15px;
    border-radius: 12px;
}

.category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.category-description {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.platform-tag {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.platform-tag:hover {
    background: linear-gradient(135deg, #357abd, #2c5f8f);
    transform: translateY(-2px);
}

.integration-features-highlight {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.feature-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f1f9ff, #e3f2fd);
    border-radius: 15px;
    border-left: 4px solid #4a90e2;
}

.highlight-icon {
    font-size: 1.8rem;
    color: #4a90e2;
    margin-top: 5px;
}

.highlight-content {
    flex: 1;
}

.highlight-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.highlight-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.integration-cta-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 20px;
    color: white;
    margin-top: 20px;
}

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

.cta-section-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.integration-cta-button {
    background: white;
    color: #4a90e2;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.integration-cta-button:hover {
    background: #f8faff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-text {
    font-weight: 600;
}

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

.integration-cta-button:hover .cta-icon {
    transform: translateX(5px);
}

.integration-guarantee {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

@media (max-width: 992px) {
    .integration-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .integration-title {
        font-size: 2.5rem;
    }
    
    .integration-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .integration-ecosystem-section {
        padding: 60px 0;
    }
    
    .integration-title {
        font-size: 2.2rem;
    }
    
    .integration-subtitle {
        font-size: 1.1rem;
    }
    
    .integration-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .category-section {
        padding: 25px;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .integration-cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* Block 5 */
.order-form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.order-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.order-form-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.order-form-header {
    text-align: center;
    color: white;
}

.order-form-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.order-form-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}

.benefit-icon {
    color: #4ade80;
    font-size: 1.1rem;
}

.order-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.order-form-visual {
    position: relative;
}

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

.visual-stats {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.stat-bubble {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    text-align: center;
    color: white;
    min-width: 80px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.order-form-main {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.form-description {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
    margin: 0;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
    z-index: 1;
}

.form-input {
    width: 100%;
    padding: 16px 16px 16px 45px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

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

.form-input:focus + .input-icon {
    color: #667eea;
}

.form-submit-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px;
}

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

.submit-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.form-submit-button:hover .submit-icon {
    transform: translateX(3px);
}

.form-security-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 25px;
    justify-content: center;
}

.security-icon {
    color: #10b981;
}

.form-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #374151;
}

.feature-check-icon {
    color: #10b981;
    font-size: 0.9rem;
}

.testimonial-highlight {
    background: #f8fafc;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e2e8f0;
}

.testimonial-quote {
    font-style: italic;
    color: #475569;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-photo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.author-role {
    color: #6b7280;
    font-size: 0.8rem;
}

.rating-stars {
    color: #fbbf24;
    font-size: 0.8rem;
}

.order-form-trust-signals {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-signal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
}

.trust-badge {
    width: 50px;
    height: 50px;
    object-fit: contain;
    opacity: 0.9;
}

.trust-text {
    font-size: 0.85rem;
    text-align: center;
    opacity: 0.9;
    font-weight: 500;
}

@media (max-width: 968px) {
    .order-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .order-form-title {
        font-size: 2.5rem;
    }
    
    .order-form-benefits {
        gap: 20px;
    }
    
    .benefit-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .order-form-container {
        padding: 0 15px;
    }
    
    .order-form-main {
        padding: 30px 20px;
    }
    
    .order-form-title {
        font-size: 2rem;
    }
    
    .order-form-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .visual-stats {
        gap: 10px;
    }
    
    .stat-bubble {
        padding: 12px 15px;
        min-width: 70px;
    }
    
    .order-form-trust-signals {
        gap: 25px;
    }
}
