
/* 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(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    color: white;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.4;
}

.hero-description {
    margin-bottom: 3rem;
}

.hero-paragraph {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-cta-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(238, 90, 36, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(238, 90, 36, 0.5);
    color: white;
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}

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

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

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #ffd700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-paragraph {
        font-size: 1rem;
        line-height: 1.7;
    }
}

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

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

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

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

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

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(230, 230, 250, 0.5);
}

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

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

.quote-icon i {
  font-size: 2rem;
  color: #667eea;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
  font-style: italic;
}

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

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

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.author-role {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 8px;
}

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

.rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.trust-indicators {
  margin-bottom: 60px;
}

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

.metric-item {
  display: flex;
  align-items: center;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  gap: 20px;
}

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

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

.metric-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a2e;
  display: block;
  line-height: 1;
}

.metric-label {
  font-size: 0.95rem;
  color: #666;
  margin-top: 5px;
}

.company-logos {
  text-align: center;
}

.logos-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 30px;
}

.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.company-logo {
  height: 50px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  filter: grayscale(1);
}

.company-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

.testimonials-cta {
  text-align: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 25px;
  padding: 50px 40px;
  color: white;
}

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

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

.cta-button {
  display: inline-block;
  background: white;
  color: #667eea;
  padding: 15px 35px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
  color: #5a6fd8;
}

@media (max-width: 768px) {
  .testimonials-showcase {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .trust-metrics {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .logos-grid {
    gap: 25px;
  }
  
  .testimonials-cta {
    padding: 40px 25px;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

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

.section-subtitle {
  font-size: 1.3rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12);
}

.feature-image {
  margin-bottom: 30px;
  border-radius: 16px;
  overflow: hidden;
}

.feature-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-img {
  transform: scale(1.05);
}

.feature-content {
  position: relative;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

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

.feature-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

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

.feature-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #334155;
  font-weight: 500;
}

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

.technical-specs {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

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

.specs-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.specs-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.spec-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.spec-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.spec-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.spec-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
}

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

.spec-metrics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.metric {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  color: #0891b2;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(8, 145, 178, 0.2);
}

.features-cta {
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.features-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.cta-description {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-primary,
.cta-button-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin: 0 8px;
}

.cta-button-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

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

.cta-button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

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

@media (max-width: 768px) {
  .features-showcase {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .feature-card {
    padding: 30px;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-description {
    font-size: 1.1rem;
  }
  
  .cta-button-primary,
  .cta-button-secondary {
    display: block;
    margin: 8px 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .feature-card {
    padding: 24px;
  }
  
  .features-cta {
    padding: 40px 24px;
  }
  
  .spec-item {
    padding: 24px;
  }
}

/* Block 4 */
.pricing-comparison {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  min-height: 100vh;
}

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

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.toggle-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
}

.toggle-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: relative;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.3);
  transition: 0.3s;
  border-radius: 15px;
  display: block;
  width: 60px;
  height: 30px;
}

.toggle-slider:before {
  position: relative;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: -4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-slider {
  background-color: #10b981;
}

.toggle-input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

.save-badge {
  background: #10b981;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-left: 8px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.pricing-card {
  background: white;
  color: #333;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.popular {
  border: 3px solid #10b981;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

.plan-header {
  text-align: center;
  margin-bottom: 30px;
}

.plan-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 20px;
}

.plan-icon i {
  font-size: 2rem;
  color: white;
}

.plan-name {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #333;
}

.plan-description {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 15px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

.amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: #333;
  margin: 0 5px;
}

.period {
  font-size: 1.2rem;
  color: #666;
}

.plan-badge {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 700;
}

.free-badge {
  background: #e0f2fe;
  color: #0277bd;
}

.plan-savings {
  color: #10b981;
  font-weight: 600;
  font-size: 0.95rem;
}

.plan-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.feature-item:last-child {
  border-bottom: none;
}

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

.feature-item span {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.plan-button {
  display: block;
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.starter-button {
  background: #f1f5f9;
  color: #334155;
}

.starter-button:hover {
  background: #e2e8f0;
  color: #334155;
}

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

.professional-button:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  color: white;
  transform: translateY(-2px);
}

.enterprise-button {
  background: #333;
  color: white;
}

.enterprise-button:hover {
  background: #111;
  color: white;
  transform: translateY(-2px);
}

.pricing-features-comparison {
  background: white;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 60px;
  color: #333;
}

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

.comparison-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: #333;
}

.comparison-image {
  width: 100%;
  max-width: 600px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table {
  display: grid;
  gap: 2px;
  background: #f1f5f9;
  border-radius: 15px;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2px;
}

.header-row {
  background: #333;
  color: white;
}

.header-row .feature-name,
.header-row .plan-column {
  padding: 20px;
  font-weight: 700;
  text-align: center;
}

.feature-name {
  background: white;
  padding: 15px 20px;
  font-weight: 600;
  color: #333;
}

.plan-column {
  background: white;
  padding: 15px 20px;
  text-align: center;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-column i.fa-check {
  color: #10b981;
  font-size: 1.2rem;
}

.plan-column i.fa-times {
  color: #ef4444;
  font-size: 1.2rem;
}

.pricing-guarantee {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.guarantee-icon {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-icon i {
  font-size: 2rem;
  color: #10b981;
}

.guarantee-text {
  text-align: left;
  max-width: 500px;
}

.guarantee-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.guarantee-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.pricing-faq {
  background: white;
  border-radius: 20px;
  padding: 50px;
  color: #333;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

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

.faq-item {
  padding: 25px;
  background: #f8fafc;
  border-radius: 15px;
  border-left: 4px solid #667eea;
}

.faq-question {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.faq-answer {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .popular {
    transform: none;
  }
  
  .comparison-row {
    grid-template-columns: 1fr;
  }
  
  .comparison-table {
    display: block;
  }
  
  .comparison-row {
    display: block;
    margin-bottom: 20px;
    background: white;
    border-radius: 10px;
    padding: 20px;
  }
  
  .guarantee-content {
    flex-direction: column;
    text-align: center;
  }
  
  .guarantee-text {
    text-align: center;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-features-comparison,
  .pricing-faq {
    padding: 30px 20px;
  }
}

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

.contact-form-section::before {
  content: '';
  background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 103, 155, 0.1) 0%, transparent 50%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.form-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1a202c 0%, #4a5568 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  line-height: 1.2;
}

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

.form-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 60px;
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 80px;
}

.contact-form {
  margin-bottom: 60px;
}

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

.form-group {
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.form-input {
  width: 100%;
  padding: 18px 20px;
  font-size: 1.1rem;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  position: relative;
  z-index: 1;
}

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

.form-input::placeholder {
  color: #9ca3af;
  transition: opacity 0.3s ease;
}

.form-input:focus::placeholder {
  opacity: 0.7;
}

.input-focus-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus + .input-focus-line {
  width: 100%;
}

.form-actions {
  text-align: center;
}

.submit-button {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: white;
  border: none;
  padding: 20px 50px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4);
}

.submit-button:active {
  transform: translateY(-1px);
}

.button-text {
  position: relative;
  z-index: 2;
}

.button-icon {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

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

.contact-info {
  border-top: 1px solid #e5e7eb;
  padding-top: 50px;
}

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

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

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 6px;
}

.info-description {
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.success-stories {
  margin-bottom: 80px;
}

.stories-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 60px;
}

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

.story-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
}

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

.story-content {
  padding: 30px;
}

.story-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

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

.story-metrics {
  display: flex;
  align-items: center;
  gap: 10px;
}

.metric {
  font-size: 1.5rem;
  font-weight: 700;
  color: #059669;
}

.metric-label {
  color: #6b7280;
  font-size: 0.9rem;
}

.alternative-contact {
  background: white;
  border-radius: 32px;
  padding: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.alternative-header {
  text-align: center;
  margin-bottom: 50px;
}

.alternative-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
}

.alternative-subtitle {
  color: #64748b;
  font-size: 1.1rem;
}

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

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: #f8fafc;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.method-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.method-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.method-description {
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 16px;
}

.method-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.method-link:hover {
  color: #2563eb;
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 80px 0;
  }
  
  .form-title {
    font-size: 2.5rem;
  }
  
  .form-container,
  .alternative-contact {
    padding: 40px 30px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .stories-grid,
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 2rem;
  }
  
  .form-container,
  .alternative-contact {
    padding: 30px 20px;
  }
  
  .submit-button {
    padding: 18px 40px;
    font-size: 1rem;
  }
}
