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

.hero-image-container {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 70vh;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(30, 58, 138, 0.6));
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
    left: 0;
}

.hero-overlay,
.hero-content {
    position: absolute;
}

.hero-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 3;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    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: 400;
    color: #e0e7ff;
    margin-bottom: 1.5rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: #f1f5f9;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

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

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

.hero-cta-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border: 2px solid transparent;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

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

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 60vh;
    }
    
    .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-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

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

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

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

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #3b82f6;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: white;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 16px;
}

.feature-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.feature-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #3b82f6;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 4px;
}

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

.showcase-content {
  padding-right: 30px;
}

.showcase-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
  line-height: 1.2;
}

.showcase-description {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.showcase-benefits {
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: #374151;
}

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

.showcase-cta {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.showcase-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
  color: white;
  text-decoration: none;
}

.showcase-image {
  text-align: center;
}

.showcase-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .features-overview {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .feature-showcase {
    padding: 40px 30px;
  }
  
  .showcase-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .showcase-title {
    font-size: 1.875rem;
  }
}

@media (max-width: 767px) {
  .features-grid {
    gap: 20px;
    margin-bottom: 60px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .feature-showcase {
    padding: 30px 20px;
  }
  
  .showcase-title {
    font-size: 1.625rem;
  }
}

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

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

.testimonials-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.25);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

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

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

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 4px solid #667eea;
}

.testimonial-author {
    flex: 1;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 5px;
}

.author-title {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.author-rating {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-content {
    margin-left: 90px;
}

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

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

.metric {
    font-size: 0.9rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
}

.testimonials-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
    min-width: 300px;
}

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

.cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.9;
}

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

.cta-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    color: white;
}

.cta-secondary {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: white;
    color: #1e293b;
    transform: translateY(-3px);
}

.cta-badge {
    flex-shrink: 0;
}

.trust-badges {
    max-width: 200px;
    height: auto;
    border-radius: 12px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .testimonials-showcase {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .testimonials-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

/* Block 4 */
.word-counter-service-tiers {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    position: relative;
    overflow: hidden;
}

.word-counter-service-tiers::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

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

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

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

.pricing-comparison {
    margin-bottom: 80px;
}

.comparison-table-header {
    position: relative;
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.comparison-banner {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.comparison-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(67, 56, 202, 0.9), rgba(139, 92, 246, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.comparison-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.comparison-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.pro-plan {
    border-color: #8b5cf6;
    transform: scale(1.05);
}

.pro-plan:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.badge-text {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.premium .badge-text {
    background: linear-gradient(45deg, #f59e0b, #ef4444);
}

.enterprise .badge-text {
    background: linear-gradient(45deg, #059669, #0d9488);
}

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

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

.pro-plan .plan-icon {
    background: linear-gradient(45deg, #8b5cf6, #ec4899);
}

.enterprise-plan .plan-icon {
    background: linear-gradient(45deg, #059669, #0891b2);
}

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

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

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

.price-currency {
    font-size: 1.2rem;
    color: #6c757d;
    margin-right: 5px;
    align-self: flex-start;
    margin-top: 10px;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.price-period {
    font-size: 1.1rem;
    color: #6c757d;
    align-self: flex-end;
    margin-bottom: 5px;
    margin-left: 8px;
}

.plan-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.feature-item i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.feature-item.included i {
    background: #10b981;
    color: white;
}

.feature-item.not-included i {
    background: #ef4444;
    color: white;
}

.feature-item.included span {
    color: #374151;
}

.feature-item.not-included span {
    color: #9ca3af;
    text-decoration: line-through;
}

.plan-action {
    text-align: center;
}

.plan-button {
    width: 100%;
    padding: 18px 20px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.free-button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.pro-button {
    background: linear-gradient(45deg, #8b5cf6, #ec4899);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.enterprise-button {
    background: linear-gradient(45deg, #059669, #0891b2);
    color: white;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.plan-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.plan-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0;
}

.service-benefits {
    margin-bottom: 80px;
}

.benefits-content {
    padding-right: 40px;
}

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

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

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

.benefit-metric {
    display: flex;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-metric:hover {
    transform: translateX(10px);
}

.metric-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

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

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

.metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.4;
}

.benefits-visual {
    position: relative;
}

.benefits-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.visual-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.overlay-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-title {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #8b5cf6;
}

.enterprise-showcase {
    margin-bottom: 60px;
}

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

.showcase-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.showcase-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    align-items: center;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.client-logo {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

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

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

.feature-highlight {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(45deg, #059669, #0891b2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.4rem;
    color: white;
}

.highlight-content {
    flex: 1;
}

.highlight-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.highlight-text {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.pricing-guarantee {
    background: linear-gradient(45deg, #667eea, #764ba2);
    padding: 50px;
    border-radius: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.guarantee-content {
    display: flex;
    align-items: center;
    flex: 1;
}

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

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

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

.guarantee-description {
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.guarantee-cta {
    text-align: center;
    flex-shrink: 0;
}

.guarantee-button {
    background: white;
    color: #667eea;
    padding: 18px 35px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guarantee-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.guarantee-note {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .service-title {
        font-size: 2.2rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pro-plan {
        transform: none;
    }
    
    .benefits-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .benefits-title {
        font-size: 2rem;
    }
    
    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .enterprise-features {
        grid-template-columns: 1fr;
    }
}

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

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="400" cy="600" r="4" fill="rgba(255,255,255,0.06)"/><circle cx="900" cy="800" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    pointer-events: none;
}

.form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 80px 60px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

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

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

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

.form-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.input-label {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

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

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

.form-input {
    width: 100%;
    padding: 20px 20px 20px 56px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

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

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #374151;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

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

.form-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.submit-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 20px 48px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

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

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

.button-icon {
    transition: transform 0.3s ease;
}

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

.form-disclaimer {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    max-width: 500px;
    line-height: 1.5;
    margin: 0;
}

.social-proof {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e5e7eb;
}

.proof-header {
    text-align: center;
    margin-bottom: 48px;
}

.proof-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.proof-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

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

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

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

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

.testimonial-preview {
    display: flex;
    justify-content: center;
}

.preview-card {
    max-width: 500px;
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

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

.preview-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.author-title {
    font-size: 14px;
    color: #6b7280;
}

.preview-quote {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.preview-rating {
    display: flex;
    gap: 4px;
}

.preview-rating i {
    color: #fbbf24;
    font-size: 16px;
}

.guarantee-section {
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 48px;
}

.guarantee-wrapper {
    flex: 1;
    display: flex;
    gap: 24px;
}

.guarantee-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon i {
    color: white;
    font-size: 28px;
}

.guarantee-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.guarantee-text {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.security-badges {
    flex-shrink: 0;
}

.security-image {
    max-width: 200px;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 80px 0;
    }
    
    .form-wrapper {
        padding: 48px 24px;
        border-radius: 24px;
        margin: 0 16px;
    }
    
    .form-title {
        font-size: 36px;
    }
    
    .form-subtitle {
        font-size: 18px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .guarantee-section {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .guarantee-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 28px;
    }
    
    .form-subtitle {
        font-size: 16px;
    }
    
    .proof-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 20px;
    }
}
