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

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

.hero-bg-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(20, 33, 61, 0.85) 0%, rgba(74, 86, 107, 0.75) 50%, rgba(20, 33, 61, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    color: white;
    padding: 4rem 0;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e8f4f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    margin-bottom: 2rem;
    color: #b8dce8;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #e0f2f7;
    max-width: 90%;
}

.hero-description-secondary {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #c7e2ea;
    max-width: 85%;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    border: 2px solid transparent;
    width: fit-content;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, #0077e6 0%, #0055aa 100%);
    color: white;
}

.hero-cta-button i {
    font-size: 1.25rem;
}

.hero-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4e9f0;
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-item i {
    color: #5fb3d4;
    font-size: 1rem;
}

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

@media (max-width: 768px) {
    .hero-content {
        padding: 2rem 0;
        text-align: center;
    }
    
    .hero-description,
    .hero-description-secondary {
        max-width: 100%;
    }
    
    .hero-trust-indicators {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta-button {
        align-self: center;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-trust-indicators {
        gap: 0.75rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
}

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

    .services-header {
        text-align: center;
        margin-bottom: 60px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .services-main-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1a237e;
        margin-bottom: 24px;
        line-height: 1.3;
        text-shadow: 0 2px 4px rgba(26, 35, 126, 0.1);
    }

    .services-main-description {
        font-size: 1.1rem;
        color: #5a6c7d;
        line-height: 1.7;
        margin-bottom: 0;
    }

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

    .service-card {
        background: #ffffff;
        border-radius: 20px;
        box-shadow: 0 8px 32px rgba(26, 35, 126, 0.08);
        overflow: hidden;
        transition: all 0.4s ease;
        border: 1px solid rgba(26, 35, 126, 0.05);
    }

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

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

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

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

    .service-badge {
        position: absolute;
        top: 16px;
        right: 16px;
        background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    }

    .service-content {
        padding: 30px;
    }

    .service-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #3f51b5 0%, #5c6bc0 100%);
        border-radius: 16px;
        margin-bottom: 20px;
        box-shadow: 0 6px 20px rgba(63, 81, 181, 0.3);
    }

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

    .service-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: #1a237e;
        margin-bottom: 16px;
        line-height: 1.4;
    }

    .service-description {
        color: #5a6c7d;
        line-height: 1.6;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }

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

    .service-features li {
        display: flex;
        align-items: center;
        color: #5a6c7d;
        margin-bottom: 8px;
        font-size: 0.9rem;
    }

    .service-features li i {
        color: #4caf50;
        margin-right: 10px;
        font-size: 0.8rem;
    }

    .service-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(26, 35, 126, 0.1);
    }

    .stat-item {
        font-size: 0.85rem;
        color: #5a6c7d;
    }

    .stat-item strong {
        color: #1a237e;
        font-weight: 700;
    }

    .services-cta-section {
        background: linear-gradient(135deg, #1a237e 0%, #3f51b5 100%);
        border-radius: 24px;
        padding: 50px 40px;
        text-align: center;
        color: white;
        box-shadow: 0 12px 40px rgba(26, 35, 126, 0.25);
    }

    .cta-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 16px;
        line-height: 1.3;
    }

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

    .cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .cta-primary-btn, .cta-secondary-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1rem;
    }

    .cta-primary-btn {
        background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
        color: white;
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    }

    .cta-primary-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
        color: white;
    }

    .cta-secondary-btn {
        background: rgba(255, 255, 255, 0.15);
        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.25);
        color: white;
        transform: translateY(-2px);
    }

    .cta-trust-badges {
        display: flex;
        justify-content: center;
        gap: 32px;
        flex-wrap: wrap;
    }

    .trust-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
        opacity: 0.9;
    }

    .trust-badge i {
        font-size: 1.1rem;
        color: #ff8c42;
    }

    @media (max-width: 768px) {
        .financial-services-overview {
            padding: 50px 0;
        }

        .services-main-title {
            font-size: 2rem;
        }

        .services-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .service-content {
            padding: 24px;
        }

        .services-cta-section {
            padding: 40px 24px;
        }

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

        .cta-buttons {
            flex-direction: column;
            align-items: stretch;
        }

        .cta-trust-badges {
            gap: 20px;
        }
    }

    @media (max-width: 480px) {
        .services-grid {
            grid-template-columns: 1fr;
        }

        .trust-badge {
            font-size: 0.8rem;
        }
    }

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

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.testimonials-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.stat-card {
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

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

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 28px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1;
}

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

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

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

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

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

.testimonial-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #f8faff, #ffffff);
  border: 2px solid #3b82f6;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

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

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e2e8f0;
}

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

.testimonial-role {
  color: #64748b;
  margin-bottom: 8px;
  font-weight: 500;
}

.testimonial-rating {
  display: flex;
  gap: 3px;
}

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

.testimonial-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 20px;
  font-style: italic;
  border: none;
  padding: 0;
}

.testimonial-results {
  display: flex;
  gap: 30px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.result-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.result-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.result-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #059669;
}

.testimonial-tag {
  display: inline-block;
  background: linear-gradient(135deg, #e0f2fe, #b3e5fc);
  color: #0369a1;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 15px;
}

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

.testimonials-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

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

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

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

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

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

.cta-button.primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.6);
  color: white;
}

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

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

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  font-weight: 600;
}

.trust-item i {
  font-size: 20px;
  color: #60a5fa;
}

@media (max-width: 768px) {
  .testimonials-title {
    font-size: 2.2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .testimonial-results {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-indicators {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
}

/* Block 4 */
.financial-process-guide {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafb 0%, #e8f4f8 100%);
    position: relative;
    overflow: hidden;
}

.financial-process-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(45deg, rgba(0, 123, 191, 0.05) 0%, rgba(0, 200, 150, 0.05) 100%);
    border-radius: 0 0 50% 50%;
    transform: scale(1.5);
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #007bbf 0%, #00c896 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 123, 191, 0.3);
}

.process-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 20px;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

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

.overview-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    min-width: 180px;
}

.stat-item i {
    font-size: 2.5rem;
    color: #007bbf;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1a2332;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    text-align: center;
    font-weight: 500;
}

.process-steps {
    margin-bottom: 80px;
}

.step-card {
    display: grid;
    grid-template-columns: 80px 1fr 300px;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-card.reverse {
    grid-template-columns: 80px 300px 1fr;
}

.step-card.reverse .step-content {
    order: 3;
}

.step-card.reverse .step-image {
    order: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bbf 0%, #00c896 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(0, 123, 191, 0.3);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #007bbf, transparent);
}

.step-card:last-child .step-number::after {
    display: none;
}

.step-content {
    padding: 20px 0;
}

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

.step-icon i {
    font-size: 1.8rem;
    color: #007bbf;
}

.step-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #475569;
}

.detail-item i {
    color: #00c896;
    font-size: 12px;
}

.step-duration {
    background: linear-gradient(135deg, #f8fafb 0%, #e8f4f8 100%);
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #007bbf;
    display: inline-block;
}

.step-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

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

.process-benefits {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2332;
    text-align: center;
    margin-bottom: 40px;
}

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

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #007bbf;
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.process-cta {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #1a2332;
    padding: 60px 40px;
}

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

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.9) 0%, rgba(0, 123, 191, 0.8) 100%);
}

.cta-content {
    position: relative;
    text-align: center;
    color: white;
}

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

.cta-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

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

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

.cta-button.primary {
    background: linear-gradient(135deg, #00c896 0%, #00a775 100%);
    color: white;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #00a775 0%, #008a5e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 200, 150, 0.4);
    color: white;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: white;
    opacity: 0.8;
}

.guarantee-item i {
    color: #00c896;
}

@media (max-width: 768px) {
    .financial-process-guide {
        padding: 60px 0;
    }
    
    .step-card,
    .step-card.reverse {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .step-card.reverse .step-content,
    .step-card.reverse .step-image {
        order: unset;
    }
    
    .overview-stats {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 150px;
        padding: 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-guarantee {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Block 5 */
.premium-contact-form {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0;
    margin-top: 0;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.form-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.1;
}

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

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

.form-visual {
    position: relative;
}

.form-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.benefit-item i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.form-container {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

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

.intro-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.intro-text {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

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

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 18px;
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 20px 20px 20px 60px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1rem;
    background: #fafbfc;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

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

.form-input:focus + .input-icon {
    color: #667eea;
}

.field-hint {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 4px;
}

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

.submit-button {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 20px 48px;
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.button-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.submit-button:hover .button-shine {
    left: 100%;
}

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

.privacy-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-note a {
    color: #667eea;
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
}

.trust-indicators {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #667eea;
    display: block;
    margin-bottom: 4px;
}

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

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

.cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #374151;
}

.cert-item i {
    color: #10b981;
    font-size: 16px;
}

.additional-info {
    margin-top: 80px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.info-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e5e7eb;
}

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

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

.info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.info-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .form-title {
        font-size: 2.75rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .premium-contact-form {
        padding: 80px 0;
    }
    
    .form-title {
        font-size: 2.25rem;
    }
    
    .form-container {
        padding: 32px 24px;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .submit-button {
        padding: 18px 32px;
        font-size: 1rem;
    }
}
