
/* Block 1 */
.hero-banner {
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

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

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.75) 50%, rgba(15, 52, 96, 0.65) 100%);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    z-index: 3;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    max-width: 700px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e8f4fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #64b5f6;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-secondary-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

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

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.primary-cta {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: white;
    border: 2px solid transparent;
}

.primary-cta:hover {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.4);
    color: white;
}

.secondary-cta {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

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

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #64b5f6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 2rem;
        justify-content: space-between;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
}

/* Block 2 */
.services-overview {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

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

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

.section-description {
  font-size: 18px;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

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

.service-card.featured {
  border: 2px solid #667eea;
  transform: scale(1.02);
}

.service-card.featured:hover {
  transform: scale(1.02) translateY(-10px);
}

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

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

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

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.service-content {
  padding: 30px;
}

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

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

.service-title {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

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

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.service-features li {
  padding: 8px 0;
  color: #4a5568;
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

.service-price {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.price-from {
  color: #718096;
  font-size: 14px;
}

.price-amount {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
}

.process-timeline {
  margin-bottom: 60px;
}

.timeline-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 40px;
}

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

.timeline-step {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.timeline-step h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}

.timeline-step p {
  color: #718096;
  line-height: 1.5;
}

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

.cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: white;
  color: #667eea;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.3);
  color: #667eea;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .timeline-container {
    grid-template-columns: 1fr;
  }
}

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

.client-testimonials::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23cbd5e1" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23cbd5e1" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23cbd5e1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
pointer-events: none;
}

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

.testimonials-badge {
display: inline-block;
background: linear-gradient(135deg, #3b82f6, #1d4ed8);
color: white;
padding: 12px 32px;
border-radius: 50px;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 24px;
box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.testimonials-title {
font-size: 3.2rem;
font-weight: 700;
color: #1e293b;
margin-bottom: 24px;
line-height: 1.1;
background: linear-gradient(135deg, #1e293b, #475569);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.testimonials-description {
font-size: 1.2rem;
color: #64748b;
line-height: 1.7;
max-width: 680px;
margin: 0 auto;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
gap: 32px;
margin-bottom: 80px;
position: relative;
z-index: 2;
}

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

.testimonial-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
transition: height 0.3s ease;
}

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

.testimonial-card:hover::before {
height: 8px;
}

.testimonial-card.premium {
border: 2px solid #fbbf24;
position: relative;
}

.testimonial-card.premium::after {
content: '';
position: absolute;
top: -1px;
left: -1px;
right: -1px;
bottom: -1px;
background: linear-gradient(45deg, #fbbf24, #f59e0b, #fbbf24);
border-radius: 24px;
z-index: -1;
}

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

.client-avatar {
width: 64px;
height: 64px;
border-radius: 50%;
object-fit: cover;
margin-right: 16px;
border: 3px solid #f1f5f9;
}

.client-info {
flex: 1;
}

.client-name {
font-size: 1.3rem;
font-weight: 700;
color: #1e293b;
margin: 0 0 4px 0;
}

.client-position {
font-size: 0.95rem;
color: #64748b;
font-weight: 500;
}

.rating-stars {
margin-top: 8px;
}

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

.testimonial-badge {
position: absolute;
top: -8px;
right: -8px;
background: linear-gradient(135deg, #fbbf24, #f59e0b);
color: white;
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.testimonial-content {
margin-bottom: 24px;
}

.testimonial-text {
font-size: 1.1rem;
line-height: 1.8;
color: #374151;
font-style: italic;
position: relative;
padding-left: 20px;
}

.testimonial-text::before {
content: '"';
position: absolute;
left: 0;
top: -8px;
font-size: 3rem;
color: #3b82f6;
font-family: serif;
opacity: 0.3;
}

.testimonial-details {
margin-top: 20px;
}

.project-info {
display: flex;
gap: 16px;
flex-wrap: wrap;
}

.project-info span {
background: #f1f5f9;
color: #475569;
padding: 6px 12px;
border-radius: 12px;
font-size: 0.85rem;
font-weight: 600;
}

.testimonial-footer {
margin-top: 24px;
}

.project-image {
border-radius: 16px;
overflow: hidden;
height: 120px;
}

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

.testimonial-card:hover .project-image img {
transform: scale(1.05);
}

.testimonials-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 32px;
margin-bottom: 80px;
position: relative;
z-index: 2;
}

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

.stat-card:hover {
transform: translateY(-4px);
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.stat-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 80px;
height: 80px;
background: linear-gradient(135deg, #3b82f6, #1d4ed8);
border-radius: 50%;
margin-bottom: 24px;
}

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

.stat-number {
display: block;
font-size: 2.8rem;
font-weight: 800;
color: #1e293b;
margin-bottom: 8px;
}

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

.testimonials-cta {
background: linear-gradient(135deg, #1e293b, #374151);
border-radius: 32px;
padding: 80px 60px;
text-align: center;
position: relative;
overflow: hidden;
}

.testimonials-cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="grad"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="50" cy="50" r="50" fill="url(%23grad)"/></svg>') no-repeat center;
pointer-events: none;
}

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

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

.cta-description {
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.6;
max-width: 600px;
margin: 0 auto 40px auto;
}

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

.cta-primary-btn,
.cta-secondary-btn {
display: inline-flex;
align-items: center;
padding: 16px 32px;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
}

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

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

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

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

.cta-primary-btn i,
.cta-secondary-btn i {
margin-right: 8px;
font-size: 1rem;
}

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

.testimonials-grid {
grid-template-columns: 1fr;
gap: 24px;
}

.testimonial-card {
padding: 24px;
}

.testimonials-stats {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}

.stat-card {
padding: 24px 16px;
}

.testimonials-cta {
padding: 40px 24px;
}

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

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

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

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

.testimonials-header {
margin-bottom: 40px;
}

.testimonials-stats {
grid-template-columns: 1fr;
}

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

.testimonials-cta {
border-radius: 20px;
}
}

/* Block 4 */
.competitive-advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.advantages-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.advantages-description {
    font-size: 18px;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.advantages-showcase {
    margin-bottom: 80px;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.showcase-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
}

.showcase-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 30px;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #495057;
}

.feature-item i {
    color: #28a745;
    font-size: 16px;
}

.showcase-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.showcase-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px;
}

.overlay-stats {
    display: flex;
    justify-content: space-around;
}

.overlay-stat {
    text-align: center;
    color: white;
}

.stat-num {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.stat-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #667eea;
}

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

.tech-focus { border-top-color: #667eea; }
.sustainability-focus { border-top-color: #28a745; }
.financial-focus { border-top-color: #ffc107; }
.support-focus { border-top-color: #dc3545; }
.quality-focus { border-top-color: #6f42c1; }
.speed-focus { border-top-color: #fd7e14; }

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

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

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.card-text {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: #f8f9fa;
    color: #495057;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #dee2e6;
}

.card-image {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.comparison-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.comparison-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

.comparison-table {
    max-width: 700px;
    margin: 0 auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.header-item {
    font-weight: 700;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
}

.header-item.brandname {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.header-item.competitors {
    background: #f8f9fa;
    color: #6c757d;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
    align-items: center;
}

.row-label {
    font-weight: 600;
    color: #2c3e50;
    padding: 15px 0;
}

.row-value {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
}

.row-value.success {
    background: #d4edda;
    color: #155724;
}

.row-value.standard {
    background: #f8f9fa;
    color: #6c757d;
}

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

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.benefit-item i {
    font-size: 16px;
}

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

.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary {
    background: white;
    color: #667eea;
}

.cta-primary:hover {
    background: #f8f9fa;
    color: #667eea;
    transform: translateY(-2px);
}

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

.cta-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .advantages-title {
        font-size: 32px;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
}

/* Block 5 */
.order-form-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 100px 0;
  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% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 103, 84, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.form-badge {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.form-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 24px;
  line-height: 1.2;
}

.form-description {
  font-size: 1.2rem;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

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

.feature-highlight {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  min-width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.feature-text h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 8px;
}

.feature-text p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.form-wrapper {
  background: white;
  border-radius: 32px;
  padding: 48px;
  box-shadow: 
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.consultation-form {
  width: 100%;
}

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

.form-header-mini h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 12px;
}

.form-header-mini p {
  color: #4a5568;
  font-size: 1rem;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.input-group {
  position: relative;
}

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

.input-label i {
  color: #667eea;
  font-size: 18px;
}

.form-input {
  width: 100%;
  padding: 20px 24px;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8fafc;
  color: #2d3748;
}

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

.form-input::placeholder {
  color: #a0aec0;
}

.input-helper {
  display: block;
  font-size: 0.875rem;
  color: #718096;
  margin-top: 8px;
  padding-left: 4px;
}

.form-benefits {
  margin-bottom: 40px;
  padding: 24px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #2d3748;
}

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

.submit-button {
  width: 100%;
  padding: 24px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 20px;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
}

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

.button-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
}

.button-subtitle {
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 400;
}

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

.privacy-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #718096;
  margin: 0;
  line-height: 1.5;
}

.privacy-notice i {
  color: #48bb78;
  font-size: 16px;
}

.testimonial-snippet {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.snippet-content {
  display: flex;
  gap: 24px;
  max-width: 600px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.snippet-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.snippet-text p {
  font-style: italic;
  color: #4a5568;
  margin-bottom: 16px;
  line-height: 1.6;
}

.snippet-author strong {
  color: #2d3748;
  display: block;
  margin-bottom: 4px;
}

.snippet-author span {
  color: #718096;
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .form-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .form-wrapper {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .order-form-section {
    padding: 60px 0;
  }
  
  .form-header {
    margin-bottom: 60px;
  }
  
  .form-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
  
  .feature-highlight {
    padding: 24px;
    border-radius: 20px;
  }
  
  .benefit-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .snippet-content {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 2rem;
  }
  
  .form-description {
    font-size: 1rem;
  }
  
  .form-wrapper {
    padding: 20px;
  }
  
  .submit-button {
    padding: 20px 24px;
  }
}
