
/* Block 1 */
.hero-banner {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.hero-background-image {
    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(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    z-index: 2;
}

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

.hero-text-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #f8f9ff;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.4;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-paragraph {
    font-size: 1.125rem;
    color: #e8eaff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #ffffff;
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    color: #ffffff;
    text-decoration: none;
}

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

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature-icon {
    font-size: 1.25rem;
    color: #ffd700;
}

.hero-feature-text {
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-paragraph {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
    
    .hero-feature-item {
        padding: 10px 20px;
    }
    
    .hero-text-container {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta-button {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

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

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.services-badge-icon {
    font-size: 16px;
}

.services-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

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

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

.service-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(29, 78, 216, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.service-content {
    padding: 30px;
}

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

.service-text {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-feature-icon {
    color: #3b82f6;
    font-size: 14px;
    width: 16px;
}

.service-feature-text {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.services-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 5px;
}

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

.services-cta {
    text-align: center;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.services-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-cta-text {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.services-cta-button {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.services-cta-button.primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

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

.services-cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid #475569;
}

.services-cta-button.secondary:hover {
    background: #475569;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
    }
    
    .services-cta-title {
        font-size: 1.8rem;
    }
    
    .services-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-cta-button {
        width: 100%;
        max-width: 300px;
    }
}

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

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.testimonials-badge-icon {
  font-size: 1rem;
}

.testimonials-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.testimonials-description {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.testimonials-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
}

.rating-star {
  color: #fbbf24;
  font-size: 1.5rem;
}

.rating-text {
  font-size: 1.125rem;
  color: #64748b;
  font-weight: 600;
}

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

.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  hover-transform: translateY(-8px);
}

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

.testimonial-quote {
  margin-bottom: 2rem;
}

.quote-icon {
  color: #3b82f6;
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #374151;
  margin: 0;
}

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

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e5e7eb;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.25rem 0;
}

.author-title {
  font-size: 1rem;
  color: #64748b;
  margin: 0 0 0.5rem 0;
}

.author-company {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.company-icon {
  color: #3b82f6;
  font-size: 0.875rem;
}

.company-name {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

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

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

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.metric-label {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.testimonials-footer {
  text-align: center;
}

.footer-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  padding: 3rem;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.footer-stat {
  padding: 1rem;
}

.footer-stat .stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #3b82f6;
  margin: 0 0 0.5rem 0;
  line-height: 1;
}

.footer-stat .stat-description {
  font-size: 1.125rem;
  color: #64748b;
  margin: 0;
  font-weight: 600;
}

.testimonials-cta {
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
  padding: 4rem 3rem;
  border-radius: 24px;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
  color: white;
}

.cta-description {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin: 0 0 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
  color: white;
}

@media (max-width: 768px) {
  .testimonials-title {
    font-size: 2.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .footer-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .testimonials-cta {
    padding: 3rem 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .testimonials-container {
    padding: 0 1rem;
  }
  
  .testimonials-rating {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .testimonial-metrics {
    gap: 1rem;
  }
  
  .footer-stats {
    grid-template-columns: 1fr;
  }
}

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

.order-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.form-badge-icon {
  font-size: 12px;
}

.form-title {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

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

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.benefit-icon-container {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.benefit-icon {
  color: white;
  font-size: 20px;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.benefit-text {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

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

.form-card-title {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.form-card-subtitle {
  font-size: 16px;
  color: #64748b;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.input-container {
  position: relative;
}

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

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: #9ca3af;
  font-size: 16px;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  color: #111827;
  background: #ffffff;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.submit-button {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  border-radius: 12px;
  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);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.button-text {
  font-size: 16px;
}

.button-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

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

.form-guarantees {
  display: flex;
  justify-content: center;
  gap: 32px;
}

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

.guarantee-icon {
  color: #10b981;
  font-size: 14px;
}

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

.form-testimonial {
  background: #f8fafc;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #e2e8f0;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-quote {
  position: relative;
}

.quote-icon {
  color: #3b82f6;
  font-size: 24px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

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

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

.author-details {
  flex: 1;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.author-position {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 8px;
}

.author-rating {
  display: flex;
  gap: 2px;
}

.star-icon {
  color: #fbbf24;
  font-size: 12px;
}

.form-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 80px;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 8px;
  line-height: 1;
}

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

@media (max-width: 1024px) {
  .form-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .form-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .order-form-section {
    padding: 80px 0;
  }
  
  .form-container {
    padding: 0 16px;
  }
  
  .form-title {
    font-size: 36px;
  }
  
  .form-description {
    font-size: 18px;
  }
  
  .form-card {
    padding: 32px 24px;
  }
  
  .form-guarantees {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .form-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 28px;
  }
  
  .form-description {
    font-size: 16px;
  }
  
  .form-card {
    padding: 24px 20px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}
