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

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.8) 0%, rgba(27, 38, 49, 0.7) 50%, rgba(65, 88, 208, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 0;
}

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

.hero-description {
    color: #e8f4f8;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-btn-primary {
    background: linear-gradient(135deg, #4158d0 0%, #c850c0 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(65, 88, 208, 0.3);
    border: 2px solid transparent;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(65, 88, 208, 0.4);
    color: #ffffff;
}

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

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.15rem;
    }
    
    .hero-banner {
        min-height: 70vh;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 14px 28px;
        font-size: 1rem;
        width: 250px;
        text-align: center;
    }
    
    .hero-banner {
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}

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

.services-showcase::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="%23dee2e6" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

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

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

.services-title {
  font-size: 3rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.service-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 12px;
}

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

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

.service-content {
  text-align: left;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 15px;
}

.service-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.service-features li {
  padding: 8px 0;
  color: #495057;
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: #28a745;
  font-weight: bold;
  font-size: 1.1rem;
}

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

.services-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

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

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

.cta-button {
  display: inline-block;
  background: white;
  color: #667eea;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #667eea;
  text-decoration: none;
}

@media (max-width: 768px) {
  .services-showcase {
    padding: 50px 0;
  }
  
  .services-title {
    font-size: 2.2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 25px;
  }
  
  .services-cta {
    padding: 40px 25px;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .services-title {
    font-size: 1.8rem;
  }
  
  .service-image {
    height: 150px;
  }
  
  .cta-title {
    font-size: 1.4rem;
  }
}

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

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

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    border: 2px solid #e2e8f0;
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.badge-text {
    font-weight: 600;
    color: #334155;
    font-size: 16px;
}

.process-main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.process-timeline {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    gap: 40px;
    align-items: flex-start;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    flex-direction: row-reverse;
}

.timeline-marker {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border: 4px solid white;
}

.marker-number {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
    display: flex;
    gap: 30px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.content-visual {
    flex-shrink: 0;
    width: 200px;
}

.timeline-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-details {
    flex: 1;
}

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

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

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

.feature-tag {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e40af;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #bfdbfe;
}

.process-guarantee {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.guarantee-visual {
    flex-shrink: 0;
    width: 250px;
}

.guarantee-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.guarantee-details {
    flex: 1;
}

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

.guarantee-text {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guarantee-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.point-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.point-text {
    color: #374151;
    font-weight: 500;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .diagnostic-process {
        padding: 60px 0;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-content {
        flex-direction: column;
        text-align: left;
        padding: 25px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        flex-direction: column;
    }
    
    .content-visual {
        width: 100%;
    }
    
    .timeline-image {
        height: 180px;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .guarantee-visual {
        width: 100%;
        max-width: 300px;
    }
    
    .guarantee-points {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-marker {
        width: 60px;
        height: 60px;
    }
    
    .marker-number {
        font-size: 20px;
    }
    
    .process-guarantee {
        padding: 25px;
    }
}

/* Block 4 */
.order-form-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 80px 0;
  margin: 40px 0;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.form-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px 30px;
  text-align: center;
}

.header-icon {
  margin-bottom: 20px;
}

.consultation-icon {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
}

.form-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

.form-container {
  padding: 40px 30px;
}

.diagnostic-form {
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  gap: 25px;
  margin-bottom: 30px;
}

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

.input-label {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-input {
  padding: 16px 50px 16px 16px;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

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

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  right: 16px;
  bottom: 16px;
  pointer-events: none;
}

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

.form-benefits {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fb;
  border-radius: 12px;
}

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

.benefit-icon {
  width: 24px;
  height: 24px;
  filter: hue-rotate(240deg) saturate(1.2);
}

.benefit-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: #555;
}

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

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

.button-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.trust-indicators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e1e8ed;
}

.trust-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.trust-badge {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.trust-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.trust-description {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .order-form-section {
    padding: 40px 0;
    margin: 20px 0;
  }
  
  .form-wrapper {
    margin: 0 15px;
  }
  
  .form-header {
    padding: 30px 20px;
  }
  
  .form-title {
    font-size: 1.8rem;
  }
  
  .form-container {
    padding: 30px 20px;
  }
  
  .form-benefits {
    flex-direction: column;
    gap: 12px;
  }
  
  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .benefit-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 1.5rem;
  }
  
  .form-subtitle {
    font-size: 1rem;
  }
  
  .form-input {
    padding: 14px 45px 14px 14px;
  }
  
  .submit-button {
    font-size: 1rem;
    padding: 16px 25px;
  }
}
