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

    .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(13, 110, 253, 0.4) 100%);
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      color: white;
    }

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

    .hero-text {
      font-size: 1.25rem;
      line-height: 1.6;
      margin-bottom: 2.5rem;
      opacity: 0.95;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .hero-cta-btn {
      background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);
      color: white;
      border: none;
      padding: 1rem 2.5rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
    }

    .hero-cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
      background: linear-gradient(135deg, #0b5ed7 0%, #59359a 100%);
    }

    .lifestyle-form .form-label {
      font-weight: 600;
      color: #495057;
      margin-bottom: 0.5rem;
    }

    .lifestyle-form .form-control,
    .lifestyle-form .form-select {
      border-radius: 8px;
      border: 2px solid #e9ecef;
      padding: 0.75rem 1rem;
      transition: all 0.3s ease;
    }

    .lifestyle-form .form-control:focus,
    .lifestyle-form .form-select:focus {
      border-color: #0d6efd;
      box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
    }

    .lifestyle-form .form-check {
      margin-bottom: 0.5rem;
    }

    .lifestyle-form .form-check-input:checked {
      background-color: #0d6efd;
      border-color: #0d6efd;
    }

    .modal-content {
      border-radius: 15px;
      border: none;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .modal-header {
      border-bottom: 1px solid #e9ecef;
      padding: 1.5rem;
    }

    .modal-title {
      font-weight: 700;
      color: #212529;
    }

    .modal-footer {
      border-top: 1px solid #e9ecef;
      padding: 1.5rem;
    }

    @media (max-width: 768px) {
      .hero-banner {
        height: 90vh;
        min-height: 500px;
      }

      .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
      }

      .hero-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
      }

      .hero-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
      }
    }

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

      .hero-text {
        font-size: 1rem;
      }

      .modal-dialog {
        margin: 1rem;
      }
    }

/* Block 2 */
.methodology-showcase {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f4ff 100%);
  overflow: hidden;
}

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

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

.methodology-description {
  font-size: 1.1rem;
  color: #718096;
  line-height: 1.7;
  margin-bottom: 40px;
}

.methodology-phases {
  margin-bottom: 30px;
}

.phase-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.phase-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.phase-icon i {
  color: white;
  font-size: 1.5rem;
}

.phase-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.phase-text {
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

.methodology-visual {
  position: relative;
  text-align: center;
}

.methodology-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.methodology-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

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

.remaining-phases {
  margin-top: 60px;
}

.phases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.phase-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.phase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: #667eea;
}

.phase-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.phase-card-header i {
  font-size: 1.5rem;
  color: #667eea;
  margin-right: 12px;
}

.phase-card-header h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.phase-card p {
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .methodology-showcase {
    padding: 60px 0;
  }
  
  .methodology-title {
    font-size: 2rem;
  }
  
  .phase-item {
    flex-direction: column;
    text-align: center;
  }
  
  .phase-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .methodology-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .phases-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 992px) {
  .methodology-content {
    margin-bottom: 50px;
  }
}

/* Block 3 */
.success-stories {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f8ff 100%);
    position: relative;
}

.section-header {
    margin-bottom: 80px;
}

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

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

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.stories-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

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

.featured-story {
    grid-row: span 1;
}

.story-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.featured-story .story-image-wrapper {
    height: 320px;
}

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

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

.story-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.story-content {
    padding: 30px;
}

.featured-story .story-content {
    padding: 40px;
}

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

.story-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
}

.story-meta {
    flex: 1;
}

.story-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.story-role {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.story-rating {
    margin-left: auto;
}

.rating-stars i {
    color: #ffc107;
    font-size: 14px;
    margin-right: 2px;
}

.story-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid #667eea;
    background: none;
}

.featured-story .story-quote {
    font-size: 1.1rem;
}

.story-metrics {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.metric-item {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

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

.metric-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.community-stats {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
}

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

.stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

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

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.stats-cta-btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    background: #f8f9ff;
}

@media (max-width: 1200px) {
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .success-stories {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .story-content, .featured-story .story-content {
        padding: 25px;
    }
    
    .story-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .metric-item {
        min-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stats-content {
        padding: 40px 20px;
    }
    
    .stats-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
}

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

.order-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
  background-repeat: no-repeat;
  background-size: 100% 100px;
  background-position: bottom;
}

.order-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

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

.header-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.header-icon i {
  font-size: 36px;
  color: white;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
  line-height: 1.2;
}

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

.order-form {
  max-width: 480px;
  margin: 0 auto;
}

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

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

.form-label i {
  margin-right: 8px;
  color: #667eea;
  width: 16px;
}

.form-control {
  height: 56px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 0 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
}

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

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

.form-benefits {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 16px;
  padding: 32px;
  margin: 32px 0;
  border: 1px solid #e2e8f0;
}

.benefits-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  text-align: center;
}

.benefits-list {
  display: grid;
  gap: 12px;
}

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

.benefit-item i {
  color: #10b981;
  font-size: 18px;
  flex-shrink: 0;
}

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

.submit-btn {
  width: 100%;
  height: 64px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 16px;
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
  margin-bottom: 32px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

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

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

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

.form-guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-radius: 12px;
  border: 1px solid #a7f3d0;
}

.guarantee-badge {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.guarantee-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guarantee-text strong {
  color: #059669;
  font-weight: 700;
}

.guarantee-text span {
  color: #065f46;
  font-size: 0.875rem;
}

.floating-testimonial {
  position: relative;
  margin-top: 60px;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-avatar {
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #667eea;
}

.testimonial-content {
  flex: 1;
}

.quote-mark {
  color: #667eea;
  font-size: 24px;
  margin-bottom: 8px;
}

.testimonial-text {
  color: #374151;
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong {
  color: #1e293b;
  font-weight: 700;
}

.testimonial-author span {
  color: #64748b;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .order-form-section {
    padding: 60px 0;
  }
  
  .order-form-card {
    padding: 32px 24px;
    margin: 0 16px;
  }
  
  .form-title {
    font-size: 2rem;
  }
  
  .testimonial-card {
    flex-direction: column;
    text-align: center;
    margin: 0 16px;
  }
  
  .form-guarantee {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 1.75rem;
  }
  
  .form-subtitle {
    font-size: 1rem;
  }
  
  .submit-btn {
    height: 56px;
    font-size: 1rem;
  }
}
