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

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

    .hero-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(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 100%);
        z-index: 2;
    }

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

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

    .hero-subtitle {
        font-size: 1.8rem;
        font-weight: 600;
        color: #e8f5e8;
        margin-bottom: 2rem;
        text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .hero-description {
        font-size: 1.2rem;
        color: #f0f8f0;
        margin-bottom: 1.5rem;
        line-height: 1.7;
        font-weight: 400;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    .hero-description-secondary {
        font-size: 1.1rem;
        color: #e0f0e0;
        margin-bottom: 3rem;
        line-height: 1.6;
        font-weight: 300;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

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

    .hero-btn-primary {
        background: linear-gradient(135deg, #28a745, #20c997);
        color: #ffffff;
        padding: 16px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
        border: 2px solid transparent;
    }

    .hero-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
        color: #ffffff;
        background: linear-gradient(135deg, #218838, #1fa184);
    }

    .hero-btn-secondary {
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
        padding: 16px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        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.25);
        color: #ffffff;
        transform: translateY(-3px);
        border-color: rgba(255, 255, 255, 0.5);
    }

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

    .stat-item {
        text-align: center;
        color: #ffffff;
    }

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

    .stat-label {
        display: block;
        font-size: 0.95rem;
        font-weight: 500;
        color: #e0f0e0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

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

        .hero-subtitle {
            font-size: 1.4rem;
        }

        .hero-description {
            font-size: 1.1rem;
        }

        .hero-description-secondary {
            font-size: 1rem;
        }

        .hero-actions {
            flex-direction: column;
            align-items: center;
        }

        .hero-btn-primary,
        .hero-btn-secondary {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }

        .hero-stats {
            gap: 2rem;
        }

        .stat-number {
            font-size: 2rem;
        }

        .hero-content {
            padding: 80px 0 60px;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
        }

        .hero-stats {
            gap: 1.5rem;
        }

        .stat-number {
            font-size: 1.8rem;
        }

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

/* Block 2 */
.environmental-impact {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
}

.impact-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, #10b981, #34d399);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
}

.impact-badge i {
  margin-right: 10px;
  font-size: 16px;
}

.impact-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #065f46;
  margin-bottom: 20px;
  line-height: 1.2;
}

.impact-subtitle {
  font-size: 1.3rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.impact-content {
  padding: 20px 0;
}

.content-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #047857;
  margin-bottom: 24px;
}

.content-text {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 20px;
}

.impact-highlights {
  margin-top: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.highlight-icon {
  font-size: 24px;
  color: #10b981;
  margin-right: 16px;
  width: 40px;
  text-align: center;
}

.highlight-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #065f46;
  display: block;
}

.highlight-text {
  font-size: 0.95rem;
  color: #6b7280;
}

.carbon-calculator {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.calculator-header {
  text-align: center;
  margin-bottom: 40px;
}

.calculator-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #047857;
  margin-bottom: 16px;
}

.calculator-description {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 0;
}

.metric-card {
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  height: 100%;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.metric-icon {
  background: linear-gradient(45deg, #10b981, #34d399);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.metric-icon i {
  font-size: 24px;
  color: white;
}

.metric-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: #065f46;
  margin-bottom: 8px;
  display: block;
}

.metric-label {
  font-size: 1rem;
  color: #374151;
  font-weight: 600;
  margin-bottom: 8px;
}

.metric-comparison {
  font-size: 0.9rem;
  color: #10b981;
  font-weight: 500;
}

.marine-stats {
  background: linear-gradient(45deg, #ecfdf5, #f0fdf4);
  border-radius: 16px;
  padding: 24px;
  margin-top: 30px;
  border-left: 4px solid #10b981;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #d1fae5;
}

.stat-row:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.stat-label {
  font-size: 1rem;
  color: #374151;
  font-weight: 500;
}

.stat-value {
  font-size: 1.1rem;
  color: #047857;
  font-weight: 700;
}

.impact-cta {
  margin-top: 40px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(4, 120, 87, 0.9) 0%, rgba(16, 185, 129, 0.8) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 60px 40px;
  width: 100%;
}

.cta-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.cta-text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: white;
  color: #047857;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  color: #065f46;
}

.cta-button i {
  margin-right: 10px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .impact-title {
    font-size: 2.4rem;
  }
  
  .calculator-title {
    font-size: 1.8rem;
  }
  
  .content-heading {
    font-size: 1.8rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .carbon-calculator {
    padding: 24px;
  }
  
  .cta-content {
    padding: 40px 20px;
  }
}

/* Block 3 */
.recycling-process {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
  position: relative;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.process-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 25px;
  line-height: 1.2;
}

.process-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  line-height: 1.6;
  font-weight: 400;
}

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

.process-overview {
  padding: 40px 0;
}

.overview-heading {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 25px;
}

.overview-text {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 20px;
}

.overview-stats {
  margin-top: 30px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.stat-item i {
  color: #10b981;
  font-size: 1.2rem;
}

.stat-text {
  font-weight: 600;
  color: #374151;
}

.process-steps {
  margin: 60px 0;
}

.step-card {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #f3f4f6;
  transition: all 0.4s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #10b981;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 25px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.step-icon {
  text-align: center;
  margin: 20px 0 25px 0;
}

.step-icon i {
  font-size: 3rem;
  color: #10b981;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  text-align: center;
}

.step-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1rem;
}

.step-features {
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.feature-item i {
  color: #10b981;
  font-size: 12px;
}

.feature-item span {
  font-size: 14px;
  color: #4b5563;
  font-weight: 500;
}

.technology-showcase {
  background: white;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.tech-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}

.tech-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.tech-text {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 25px;
}

.tech-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.benefit-item i {
  color: #10b981;
  font-size: 1.2rem;
}

.benefit-item span {
  font-weight: 600;
  color: #374151;
}

.process-cta {
  background: linear-gradient(135deg, #1f2937, #374151);
  padding: 50px;
  border-radius: 25px;
  color: white;
  margin-top: 40px;
}

.cta-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

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

.cta-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

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

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

.guarantee-item span {
  font-size: 14px;
  color: #d1d5db;
}

.process-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
  transition: all 0.3s ease;
}

.process-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.6);
  color: white;
}

.cta-note {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .process-title {
    font-size: 2.2rem;
  }
  
  .technology-showcase {
    padding: 30px 20px;
  }
  
  .process-cta {
    padding: 30px 20px;
  }
  
  .cta-heading {
    font-size: 1.8rem;
  }
  
  .step-card {
    margin-bottom: 30px;
  }
}

/* Block 4 */
.testimonials-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8fdfc 0%, #e8f8f5 100%);
      position: relative;
    }

    .testimonials-badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(45deg, #ff6b8a, #4ecdc4);
      color: white;
      padding: 12px 24px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 24px;
      box-shadow: 0 4px 20px rgba(78, 205, 196, 0.3);
    }

    .testimonials-badge i {
      font-size: 16px;
    }

    .testimonials-title {
      font-size: 2.8rem;
      font-weight: 800;
      color: #2d3748;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .testimonials-subtitle {
      font-size: 1.2rem;
      color: #718096;
      line-height: 1.6;
      max-width: 800px;
      margin: 0 auto;
    }

    .featured-testimonial {
      background: white;
      border-radius: 24px;
      padding: 0;
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
      overflow: hidden;
      border: 1px solid rgba(78, 205, 196, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .testimonial-video-wrapper {
      position: relative;
      width: 100%;
      height: 280px;
      overflow: hidden;
    }

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

    .video-play-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 70px;
      height: 70px;
      background: linear-gradient(45deg, #4ecdc4, #44a08d);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
      transition: all 0.3s ease;
    }

    .video-play-overlay:hover {
      transform: translate(-50%, -50%) scale(1.1);
      box-shadow: 0 12px 35px rgba(78, 205, 196, 0.6);
    }

    .video-play-overlay i {
      color: white;
      font-size: 24px;
      margin-left: 3px;
    }

    .testimonial-featured-content {
      padding: 32px;
    }

    .testimonial-rating {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-bottom: 20px;
    }

    .testimonial-rating i {
      color: #ffc107;
      font-size: 18px;
    }

    .rating-text {
      margin-left: 8px;
      font-weight: 600;
      color: #4a5568;
      font-size: 14px;
    }

    .testimonial-quote {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #2d3748;
      font-style: italic;
      margin-bottom: 24px;
      border: none;
      font-weight: 500;
    }

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

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

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

    .author-name {
      font-weight: 700;
      color: #2d3748;
      font-size: 1.1rem;
    }

    .author-details {
      color: #718096;
      font-size: 0.9rem;
      margin: 2px 0;
    }

    .author-achievement {
      color: #4ecdc4;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .testimonial-stats-panel {
      background: white;
      border-radius: 24px;
      padding: 32px;
      height: 100%;
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
      border: 1px solid rgba(78, 205, 196, 0.1);
    }

    .stats-panel-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: #2d3748;
      margin-bottom: 12px;
    }

    .stats-panel-description {
      color: #718096;
      margin-bottom: 32px;
      line-height: 1.6;
    }

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

    .metric-row {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .metric-icon-wrapper {
      width: 48px;
      height: 48px;
      background: linear-gradient(45deg, #4ecdc4, #44a08d);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .metric-icon-wrapper i {
      color: white;
      font-size: 20px;
    }

    .metric-content {
      display: flex;
      flex-direction: column;
    }

    .metric-value {
      font-size: 1.8rem;
      font-weight: 800;
      color: #2d3748;
      line-height: 1;
    }

    .metric-label {
      font-weight: 600;
      color: #4a5568;
      margin: 4px 0 2px 0;
    }

    .metric-detail {
      font-size: 0.85rem;
      color: #718096;
    }

    .stats-panel-footer {
      border-top: 2px solid #e2e8f0;
      padding-top: 24px;
      text-align: center;
    }

    .success-team-image {
      width: 100%;
      height: 80px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 12px;
    }

    .footer-text {
      font-size: 0.9rem;
      color: #718096;
      margin: 0;
    }

    .testimonials-grid {
      margin-top: 40px;
    }

    .testimonial-card {
      background: white;
      border-radius: 20px;
      padding: 28px;
      height: 100%;
      box-shadow: 0 12px 24px rgba(0,0,0,0.06);
      border: 1px solid rgba(78, 205, 196, 0.1);
      transition: all 0.3s ease;
    }

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

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

    .testimonial-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #4ecdc4;
    }

    .testimonial-author-info {
      display: flex;
      flex-direction: column;
    }

    .testimonial-author-info .author-name {
      font-weight: 700;
      color: #2d3748;
      font-size: 1rem;
    }

    .author-location {
      color: #718096;
      font-size: 0.85rem;
      margin: 2px 0 4px 0;
    }

    .testimonial-text {
      color: #4a5568;
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 0.95rem;
    }

    .testimonial-impact {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .impact-item {
      display: flex;
      align-items: center;
      gap: 6px;
      background: #f0fdfa;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #0f766e;
      border: 1px solid #4ecdc4;
    }

    .impact-item i {
      font-size: 12px;
    }

    .testimonial-card-horizontal {
      display: flex;
      gap: 20px;
      align-items: center;
      padding: 24px;
    }

    .testimonial-horizontal-image {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 16px;
      flex-shrink: 0;
    }

    .testimonial-horizontal-content {
      flex: 1;
    }

    .testimonial-achievement {
      display: flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(45deg, #4ecdc4, #44a08d);
      color: white;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-top: 12px;
      width: fit-content;
    }

    .testimonials-cta-section {
      margin-top: 60px;
      position: relative;
      border-radius: 24px;
      overflow: hidden;
    }

    .cta-background-wrapper {
      position: relative;
      width: 100%;
      height: 300px;
    }

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

    .cta-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(78, 205, 196, 0.9), rgba(68, 160, 141, 0.9));
    }

    .cta-content {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      align-items: center;
      padding: 40px;
    }

    .cta-title {
      font-size: 2.2rem;
      font-weight: 800;
      color: white;
      margin-bottom: 16px;
    }

    .cta-description {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .cta-guarantees {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 20px;
    }

    .guarantee-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.2);
      padding: 8px 16px;
      border-radius: 20px;
      color: white;
      font-size: 0.9rem;
      font-weight: 600;
      backdrop-filter: blur(10px);
    }

    .cta-button-wrapper {
      text-align: center;
    }

    .testimonials-cta-button {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: white;
      color: #2d3748;
      padding: 16px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
    }

    .testimonials-cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(0,0,0,0.3);
      color: #2d3748;
    }

    .testimonials-cta-button i {
      font-size: 16px;
    }

    .cta-button-note {
      margin-top: 12px;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 500;
    }

    @media (max-width: 991px) {
      .testimonials-title {
        font-size: 2.2rem;
      }

      .testimonial-card-horizontal {
        flex-direction: column;
        text-align: center;
      }

      .testimonial-horizontal-image {
        width: 100px;
        height: 100px;
      }

      .cta-title {
        font-size: 1.8rem;
      }

      .cta-content {
        padding: 24px;
      }
    }

    @media (max-width: 767px) {
      .testimonials-section {
        padding: 60px 0;
      }

      .testimonials-title {
        font-size: 1.8rem;
      }

      .testimonials-subtitle {
        font-size: 1rem;
      }

      .success-metrics {
        gap: 20px;
      }

      .metric-row {
        gap: 12px;
      }

      .metric-icon-wrapper {
        width: 40px;
        height: 40px;
      }

      .metric-value {
        font-size: 1.4rem;
      }

      .cta-guarantees {
        justify-content: center;
      }
    }

/* Block 5 */
.order-form-section {
      padding: 120px 0;
      background: linear-gradient(135deg, #f8fffe 0%, #f0f9f6 50%, #e8f5f0 100%);
      position: relative;
      overflow: hidden;
    }

    .order-form-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
      pointer-events: none;
    }

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

    .form-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #10b981, #059669);
      color: white;
      padding: 12px 24px;
      border-radius: 50px;
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 24px;
      box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
    }

    .form-title {
      font-size: 3.5rem;
      font-weight: 800;
      color: #1f2937;
      margin-bottom: 20px;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .form-subtitle {
      font-size: 1.25rem;
      color: #6b7280;
      line-height: 1.6;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .benefit-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.1rem;
      color: #374151;
      font-weight: 600;
    }

    .benefit-item i {
      color: #10b981;
      font-size: 1.2rem;
    }

    .form-container {
      background: white;
      border-radius: 24px;
      box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.05);
      overflow: hidden;
      position: relative;
    }

    .form-wrapper {
      padding: 60px;
    }

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

    .step-description {
      font-size: 1.1rem;
      color: #6b7280;
      margin-bottom: 40px;
      line-height: 1.5;
    }

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

    .form-label {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1rem;
      font-weight: 600;
      color: #374151;
      margin-bottom: 12px;
    }

    .form-label i {
      color: #10b981;
      width: 16px;
    }

    .form-control {
      width: 100%;
      padding: 18px 20px;
      font-size: 1.1rem;
      border: 2px solid #e5e7eb;
      border-radius: 12px;
      background: #ffffff;
      transition: all 0.2s ease;
      color: #1f2937;
    }

    .form-control:focus {
      outline: none;
      border-color: #10b981;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
      background: #ffffff;
    }

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

    .form-help {
      font-size: 0.875rem;
      color: #6b7280;
      margin-top: 8px;
      margin-left: 4px;
    }

    .form-actions {
      margin-top: 50px;
    }

    .submit-button {
      width: 100%;
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      color: white;
      border: none;
      padding: 22px 32px;
      border-radius: 16px;
      font-size: 1.2rem;
      font-weight: 700;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 12px 24px rgba(16, 185, 129, 0.3);
    }

    .submit-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
    }

    .button-content {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      position: relative;
      z-index: 2;
    }

    .button-shine {
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.6s ease;
    }

    .submit-button:hover .button-shine {
      left: 100%;
    }

    .form-disclaimer {
      font-size: 0.9rem;
      color: #6b7280;
      margin-top: 20px;
      line-height: 1.5;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .form-disclaimer i {
      color: #10b981;
      margin-top: 2px;
    }

    .form-sidebar {
      background: linear-gradient(135deg, #f0f9f6 0%, #e8f5f0 100%);
      padding: 60px 40px;
      height: 100%;
    }

    .sidebar-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 16px;
      margin-bottom: 40px;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .preview-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 24px;
    }

    .timeline {
      margin-bottom: 40px;
    }

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

    .timeline-marker {
      width: 40px;
      height: 40px;
      background: #10b981;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .timeline-content {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .timeline-time {
      font-weight: 700;
      color: #1f2937;
      font-size: 0.95rem;
    }

    .timeline-text {
      color: #6b7280;
      font-size: 0.9rem;
      line-height: 1.4;
    }

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

    .indicator {
      background: white;
      padding: 20px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .indicator-number {
      display: block;
      font-size: 1.8rem;
      font-weight: 800;
      color: #10b981;
      margin-bottom: 4px;
    }

    .indicator-label {
      color: #6b7280;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .trust-indicators {
      background: white;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
    }

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

    .trust-logo {
      width: 80px;
      height: 60px;
      object-fit: contain;
      filter: grayscale(20%);
      transition: filter 0.3s ease;
    }

    .trust-item:hover .trust-logo {
      filter: grayscale(0%);
    }

    .trust-text {
      font-size: 0.9rem;
      font-weight: 600;
      color: #6b7280;
    }

    @media (max-width: 991px) {
      .form-title {
        font-size: 2.5rem;
      }
      
      .form-wrapper,
      .form-sidebar {
        padding: 40px 30px;
      }
      
      .form-benefits {
        gap: 20px;
      }
      
      .benefit-item {
        font-size: 1rem;
      }
    }

    @media (max-width: 767px) {
      .order-form-section {
        padding: 80px 0;
      }
      
      .form-title {
        font-size: 2rem;
      }
      
      .form-subtitle {
        font-size: 1.1rem;
      }
      
      .form-benefits {
        flex-direction: column;
        align-items: center;
        gap: 16px;
      }
      
      .form-wrapper {
        padding: 30px 20px;
      }
      
      .step-title {
        font-size: 1.5rem;
      }
      
      .success-indicators {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
      }
      
      .indicator {
        padding: 15px 10px;
      }
      
      .indicator-number {
        font-size: 1.4rem;
      }
      
      .indicator-label {
        font-size: 0.75rem;
      }
    }
