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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.85), rgba(27, 67, 50, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #e8f4f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #b8e6d1;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.hero-description-secondary {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #0066cc, #004499);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.5);
    background: linear-gradient(135deg, #0077dd, #0055aa);
    color: #ffffff;
}

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

.btn-hero-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #b8e6d1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-description-secondary {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat {
        padding: 1rem 1.5rem;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
}

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

.services-overview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05));
    border-radius: 50%;
    z-index: 1;
}

.services-content {
    position: relative;
    z-index: 2;
}

.services-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 24px;
}

.services-description {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.services-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-right: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

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

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

.services-stats {
    margin-bottom: 32px;
}

.stat-group {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

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

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 4px;
}

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

.services-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-services-primary, .btn-services-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-services-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.btn-services-primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-services-secondary {
    background: white;
    color: #3b82f6;
    border-color: #3b82f6;
}

.btn-services-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.services-visual {
    position: relative;
    z-index: 2;
}

.services-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.services-badge-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #059669;
}

.badge-item i {
    color: #10b981;
}

.services-secondary-images {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.secondary-img {
    width: calc(50% - 8px);
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.services-categories {
    margin-top: 60px;
}

.categories-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 48px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.category-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

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

.category-icon {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 20px;
}

.category-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

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

.category-count {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }
    
    .stat-group {
        gap: 20px;
        justify-content: center;
    }
    
    .services-actions {
        justify-content: center;
    }
    
    .services-secondary-images {
        flex-direction: column;
    }
    
    .secondary-img {
        width: 100%;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Block 3 */
.client-testimonials-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
      position: relative;
    }
    
    .client-testimonials-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100%;
      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="%23e0e7ff" opacity="0.3"/><circle cx="75" cy="75" r="0.5" fill="%23ddd6fe" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
      z-index: -1;
    }
    
    .testimonials-badge {
      display: inline-block;
      background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
      color: white;
      padding: 8px 20px;
      border-radius: 25px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 20px;
      box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    }
    
    .testimonials-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 25px;
      line-height: 1.2;
    }
    
    .testimonials-description {
      font-size: 1.1rem;
      color: #64748b;
      line-height: 1.7;
      margin-bottom: 20px;
    }
    
    .testimonials-sub-description {
      font-size: 1rem;
      color: #94a3b8;
      line-height: 1.6;
      margin-bottom: 30px;
    }
    
    .testimonials-stats-grid {
      display: flex;
      gap: 20px;
      margin-bottom: 40px;
    }
    
    .stat-card {
      display: flex;
      align-items: center;
      background: white;
      padding: 20px 25px;
      border-radius: 15px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
      border: 1px solid #e2e8f0;
      min-width: 160px;
    }
    
    .stat-icon {
      width: 45px;
      height: 45px;
      background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
    }
    
    .stat-icon i {
      color: white;
      font-size: 18px;
    }
    
    .stat-number {
      display: block;
      font-size: 1.4rem;
      font-weight: 700;
      color: #1e293b;
    }
    
    .stat-label {
      display: block;
      font-size: 0.9rem;
      color: #64748b;
    }
    
    .testimonials-visual {
      position: relative;
      margin-top: 40px;
    }
    
    .main-testimonial-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }
    
    .floating-testimonial-card {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: white;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
      max-width: 280px;
      border: 1px solid #e2e8f0;
    }
    
    .testimonial-stars {
      margin-bottom: 15px;
    }
    
    .testimonial-stars i {
      color: #fbbf24;
      margin-right: 3px;
      font-size: 14px;
    }
    
    .testimonial-text {
      font-size: 0.95rem;
      color: #374151;
      margin-bottom: 12px;
      line-height: 1.5;
    }
    
    .testimonial-author {
      font-size: 0.85rem;
      color: #6b7280;
      font-weight: 500;
    }
    
    .testimonials-carousel-section {
      margin-top: 80px;
    }
    
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }
    
    .testimonial-item {
      background: white;
      padding: 35px;
      border-radius: 20px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid #e2e8f0;
      transition: all 0.3s ease;
    }
    
    .testimonial-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    }
    
    .testimonial-header {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
      flex-wrap: wrap;
      gap: 15px;
    }
    
    .client-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 15px;
    }
    
    .avatar-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .client-info {
      flex: 1;
      min-width: 120px;
    }
    
    .client-name {
      font-size: 1.1rem;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 5px;
    }
    
    .client-position {
      font-size: 0.9rem;
      color: #64748b;
    }
    
    .rating-stars {
      display: flex;
      gap: 2px;
    }
    
    .rating-stars i {
      color: #fbbf24;
      font-size: 16px;
    }
    
    .testimonial-quote {
      font-size: 1.05rem;
      color: #374151;
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
    }
    
    .project-details {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    
    .project-type,
    .project-duration {
      font-size: 0.85rem;
      padding: 6px 12px;
      background: #f1f5f9;
      color: #475569;
      border-radius: 8px;
      font-weight: 500;
    }
    
    .testimonials-footer {
      margin-top: 60px;
      padding-top: 40px;
      border-top: 1px solid #e2e8f0;
    }
    
    .trust-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 15px;
    }
    
    .trust-description {
      font-size: 1rem;
      color: #64748b;
      line-height: 1.6;
      margin-bottom: 25px;
    }
    
    .trust-badges {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    
    .trust-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 15px;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      font-size: 0.9rem;
      color: #475569;
    }
    
    .trust-badge i {
      color: #10b981;
      font-size: 16px;
    }
    
    .testimonials-cta {
      text-align: center;
    }
    
    .btn-testimonial-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, #059669 0%, #10b981 100%);
      color: white;
      padding: 15px 35px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
      transition: all 0.3s ease;
      margin-bottom: 15px;
    }
    
    .btn-testimonial-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(5, 150, 105, 0.4);
      color: white;
    }
    
    .cta-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 0.85rem;
      color: #64748b;
    }
    
    .cta-note i {
      color: #3b82f6;
    }
    
    @media (max-width: 768px) {
      .testimonials-title {
        font-size: 2rem;
      }
      
      .testimonials-stats-grid {
        flex-direction: column;
      }
      
      .stat-card {
        min-width: auto;
      }
      
      .testimonials-grid {
        grid-template-columns: 1fr;
      }
      
      .floating-testimonial-card {
        position: static;
        margin-top: 20px;
        max-width: none;
      }
      
      .trust-badges {
        justify-content: center;
      }
      
      .testimonials-cta {
        margin-top: 30px;
      }
    }

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

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

.process-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.process-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.2;
}

.process-description {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.process-steps {
  padding-right: 20px;
}

.step-item {
  display: flex;
  margin-bottom: 40px;
  padding: 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.step-item.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.step-item.active .step-number {
  background: white;
  color: #667eea;
}

.step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 25px;
  flex-shrink: 0;
}

.step-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: inherit;
}

.step-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0.9;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  background: rgba(255,255,255,0.2);
  color: inherit;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.step-item:not(.active) .feature-tag {
  background: #f1f5f9;
  color: #475569;
}

.process-visual {
  padding-left: 20px;
}

.main-process-image {
  position: relative;
  margin-bottom: 30px;
}

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

.process-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.highlight-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 20px;
  flex-shrink: 0;
}

.highlight-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2d3748;
}

.highlight-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #667eea;
  display: block;
  margin-bottom: 5px;
}

.highlight-desc {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0;
}

.process-metrics {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.metric-item {
  display: flex;
  align-items: center;
}

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

.metric-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d3748;
  display: block;
}

.metric-label {
  font-size: 0.85rem;
  color: #64748b;
}

.process-specialties {
  text-align: center;
}

.specialties-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 50px;
}

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

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

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

.specialty-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.specialty-content {
  padding: 30px;
}

.specialty-content h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.specialty-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.specialty-stats {
  display: flex;
  gap: 15px;
}

.specialty-stats .stat {
  background: #f1f5f9;
  color: #475569;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.process-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.process-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

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

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

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-cta-primary {
  background: white;
  color: #667eea;
}

.btn-cta-primary:hover {
  background: #f8f9ff;
  transform: translateY(-2px);
  color: #667eea;
}

.btn-cta-secondary {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-cta-secondary:hover {
  background: rgba(255,255,255,0.3);
  color: white;
  transform: translateY(-2px);
}

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .process-title {
    font-size: 2rem;
  }
  
  .process-steps, .process-visual {
    padding: 0;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .specialties-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

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

.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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  z-index: 1;
}

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

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

.form-badge {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.form-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.order-form-container {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.6);
  backdrop-filter: blur(10px);
}

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

.form-group {
  position: relative;
}

.form-label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.form-input {
  width: 100%;
  padding: 16px 50px 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  font-size: 16px;
  color: #374151;
  background: #f9fafb;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}

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

.input-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 12px;
  color: #9ca3af;
  font-size: 16px;
}

.form-input:focus + .input-icon {
  color: #3b82f6;
}

.form-submit-btn {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  border-radius: 16px;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  text-transform: none;
  letter-spacing: 0.3px;
}

.form-submit-btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

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

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

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

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #64748b;
}

.benefit-item i {
  color: #10b981;
  font-size: 16px;
}

.form-visual-content {
  padding-left: 40px;
}

.consultation-preview {
  position: relative;
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.consultation-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 30px 20px 20px;
}

.preview-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.service-highlights {
  margin-bottom: 40px;
}

.highlights-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 18px;
  flex-shrink: 0;
}

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

.highlight-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.process-timeline {
  background: #f1f5f9;
  border-radius: 16px;
  padding: 24px;
}

.timeline-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 20px;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-marker {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.step-info {
  display: flex;
  flex-direction: column;
}

.step-label {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.step-time {
  font-size: 12px;
  color: #64748b;
}

.trust-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}

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

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 24px;
}

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

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

.security-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.security-badge:hover {
  opacity: 1;
}

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

.security-badge span {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

@media (max-width: 992px) {
  .form-visual-content {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .order-form-container {
    padding: 30px;
  }
  
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .security-badges {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .order-form-section {
    padding: 60px 0;
  }
  
  .form-header {
    margin-bottom: 40px;
  }
  
  .order-form-container {
    padding: 24px;
  }
  
  .trust-stats {
    grid-template-columns: 1fr;
  }
  
  .security-badges {
    flex-direction: column;
    gap: 16px;
  }
}
