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

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

.hero-background img {
    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(44, 90, 160, 0.85), rgba(30, 64, 128, 0.75));
    z-index: -1;
}

.hero-content {
    text-align: center;
    padding: 4rem 0;
    animation: heroFadeIn 1.2s ease-out;
}

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

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    margin-top: 3rem;
}

.btn-primary-hero {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c5aa0;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    color: #1e4080;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.2rem;
    color: #ffd700;
}

.feature-item span {
    font-weight: 500;
    white-space: nowrap;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .btn-primary-hero {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

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

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), #1e4080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #4a7bc8);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.service-features li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: var(--text-dark);
}

.service-features li i {
  color: #28a745;
  margin-right: 0.75rem;
  font-size: 0.9rem;
}

.specialty-service {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

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

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

.specialty-content {
  padding: 1.5rem;
}

.specialty-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.specialty-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.specialty-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.specialty-link:hover {
  color: #1e4080;
  text-decoration: none;
}

.specialty-link i {
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.specialty-link:hover i {
  transform: translateX(5px);
}

.process-section {
  margin: 5rem 0 4rem 0;
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(44, 90, 160, 0.03), rgba(255, 255, 255, 0.8));
  border-radius: 20px;
}

.process-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-dark);
  margin: 0 auto 1.5rem auto;
}

.process-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.process-step-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), #1e4080);
  padding: 3rem;
  border-radius: 20px;
  color: white;
}

.cta-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.btn-cta {
  background: var(--accent-color);
  color: var(--text-dark);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
}

.btn-cta:hover {
  background: #ffed4e;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  color: var(--text-dark);
  text-decoration: none;
}

@media (max-width: 768px) {
  .services-overview {
    padding: 4rem 0;
  }
  
  .services-title {
    font-size: 2rem;
  }
  
  .services-subtitle {
    font-size: 1.1rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .process-section {
    margin: 3rem 0 2rem 0;
    padding: 2rem 1rem;
  }
  
  .process-title {
    font-size: 1.5rem;
  }
  
  .cta-section {
    padding: 2rem;
    text-align: center;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .btn-cta {
    margin-top: 1rem;
  }
}

/* Block 3 */
.testimonials-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    margin-bottom: 4rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(44,90,160,0.1);
}

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

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--primary-color), #1e4080);
    color: white;
    transform: scale(1.02);
}

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

.quote-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial-card.featured .quote-icon {
    color: var(--accent-color);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-card.featured .testimonial-text {
    color: white;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.testimonial-card.featured .author-name {
    color: white;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.testimonial-card.featured .author-title {
    color: rgba(255,255,255,0.8);
}

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

.author-rating i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.testimonial-metrics {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.3);
}

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

.metric-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.testimonial-card.compact {
    padding: 1.5rem;
}

.testimonial-card.compact .testimonial-text {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-card.compact .author-photo {
    width: 50px;
    height: 50px;
}

.testimonials-stats {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: 500;
}

.testimonials-cta {
    background: linear-gradient(135deg, var(--primary-color), #1e4080);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.testimonials-cta .cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.testimonials-cta .cta-description {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: rgba(255,255,255,0.9);
}

.btn-testimonials-cta {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.btn-testimonials-cta:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
    color: var(--text-dark);
    text-decoration: none;
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-cta {
        text-align: center;
    }
    
    .testimonials-cta .col-lg-4 {
        margin-top: 1.5rem;
    }
    
    .stat-item {
        justify-content: center;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .testimonial-metrics {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Block 4 */
.skills-mastery {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
}

.skills-mastery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
}

.skills-header {
    text-align: center;
    margin-bottom: 4rem;
}

.skills-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.skills-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.skills-showcase {
    margin-bottom: 4rem;
}

.primary-skill-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

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

.skill-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.skill-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.8), rgba(30, 64, 128, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.skill-badge {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skill-content {
    padding: 2rem;
}

.skill-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.skill-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.skill-techniques {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.technique-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.technique-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.technique-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.technique-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.secondary-skill-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.secondary-skill-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.secondary-skill-card .skill-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #1e4080);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.secondary-skill-card .skill-icon i {
    color: white;
    font-size: 1.5rem;
}

.secondary-skill-card .skill-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.secondary-skill-card .skill-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.skill-progress {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    transition: width 0.3s ease;
}

.storytelling-elements {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.element-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.element-icon {
    font-size: 1.2rem;
}

.advanced-skills {
    margin-bottom: 4rem;
}

.advanced-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.advanced-skill-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.advanced-skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.advanced-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #1e4080);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

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

.advanced-skill-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.advanced-skill-desc {
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.skill-level {
    margin-top: auto;
}

.level-indicator {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.level-indicator.expert {
    background: #dc3545;
    color: white;
}

.level-indicator.professional {
    background: var(--primary-color);
    color: white;
}

.level-indicator.essential {
    background: var(--accent-color);
    color: var(--text-dark);
}

.level-indicator.master {
    background: #6f42c1;
    color: white;
}

.practical-application {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.application-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.application-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.practice-scenarios {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.scenario-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.scenario-item i {
    color: var(--primary-color);
    font-size: 2rem;
}

.scenario-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.scenario-content p {
    color: var(--text-light);
    margin: 0;
}

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

.skills-guarantee {
    background: linear-gradient(135deg, var(--primary-color), #1e4080);
    border-radius: 20px;
    overflow: hidden;
    color: white;
}

.guarantee-content {
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-icon i {
    font-size: 3rem;
    color: var(--accent-color);
}

.guarantee-text {
    flex-grow: 1;
    min-width: 300px;
}

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

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

.guarantee-action {
    flex-shrink: 0;
}

.btn-guarantee {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-guarantee:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .skills-title {
        font-size: 2.2rem;
    }
    
    .skill-techniques {
        gap: 0.8rem;
    }
    
    .technique-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .guarantee-content {
        text-align: center;
        gap: 1.5rem;
    }
    
    .guarantee-icon i {
        font-size: 2.5rem;
    }
    
    .application-image {
        height: 250px;
        margin-top: 2rem;
    }
}

/* Block 5 */
.order-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.form-header {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 60px 40px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4080 100%);
    color: white;
    position: relative;
}

.form-header::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 1;
}

.form-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-container {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.speaking-form {
    width: 100%;
}

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

.input-group {
    position: relative;
}

.input-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    letter-spacing: 0.025em;
}

.form-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #2c5aa0;
    background: white;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
    transform: translateY(-1px);
}

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

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 12px;
    color: #6b7280;
    transition: color 0.2s ease;
}

.input-group:focus-within .input-icon {
    color: #2c5aa0;
}

.form-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    padding: 24px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    border: 1px solid #e0f2fe;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #0369a1;
    font-weight: 500;
}

.feature-badge i {
    color: #0ea5e9;
}

.submit-button {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4080 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
    margin-bottom: 32px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
    background: linear-gradient(135deg, #1e4080 0%, #2c5aa0 100%);
}

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

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

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

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

.trust-indicators {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #6b7280;
}

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

.form-visual {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.visual-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.success-stats {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.stat-bubble {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .form-wrapper {
        grid-template-columns: 1fr;
        margin: 20px;
        border-radius: 20px;
    }
    
    .form-header {
        padding: 40px 30px 30px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 40px 30px;
    }
    
    .form-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 12px;
    }
    
    .success-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .visual-overlay {
        position: static;
        padding: 30px;
        background: rgba(255, 255, 255, 0.95);
    }
}

@media (max-width: 480px) {
    .order-form-section {
        padding: 40px 0;
    }
    
    .form-wrapper {
        margin: 10px;
    }
    
    .form-header {
        padding: 30px 20px 20px;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-grid {
        gap: 24px;
    }
}
