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

.hero-image-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
}

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

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

.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    padding: 4rem 0;
}

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

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    color: #e8f5e8;
    margin-bottom: 2rem;
    line-height: 1.4;
}

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

.hero-secondary-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #e0ede0;
    max-width: 85%;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b8e6b8;
    font-size: 0.95rem;
    font-weight: 500;
}

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

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

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #20c997;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #d4e6d4;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description,
    .hero-secondary-text {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn-primary-cta {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
}

/* Block 2 */
.wellness-approach-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f4 100%);
    overflow: hidden;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #1f2937, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.approach-content {
    margin-bottom: 80px;
}

.approach-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.approach-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.approach-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.approach-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #16a34a;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.approach-content-block {
    padding-left: 40px;
}

.approach-content-block .content-block-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.3;
}

.approach-content-block .content-block-text {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #374151;
}

.feature-item i {
    color: #16a34a;
    font-size: 18px;
    width: 20px;
}

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

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 16px;
}

.stat-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

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

.approach-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

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

.cta-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 40px;
    line-height: 1.5;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.5);
    color: white;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    color: #d1d5db;
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-guarantee i {
    color: #fbbf24;
}

@media (max-width: 768px) {
    .wellness-approach-overview {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .approach-content-block {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .approach-content-block .content-block-title {
        font-size: 1.875rem;
    }
    
    .approach-cta {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 30px;
    }
}

/* Block 3 */
.client-transformations {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

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

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

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

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

.client-avatar {
    position: relative;
    margin-bottom: 1.5rem;
    text-align: center;
}

.avatar-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #10b981;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.transformation-badge {
    position: absolute;
    bottom: -5px;
    right: calc(50% - 60px);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.client-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
    text-align: center;
}

.client-profession {
    color: #6b7280;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.transformation-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 12px;
}

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

.transformation-stats .stat-label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.transformation-stats .stat-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #10b981;
}

.client-quote {
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f0fdfa;
    border-left: 4px solid #10b981;
    border-radius: 8px;
    font-size: 0.9rem;
}

.transformation-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-tag {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

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

.metrics-header {
    text-align: center;
    margin-bottom: 3rem;
}

.metrics-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.metrics-subtitle {
    color: #6b7280;
    font-size: 1rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.metric-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.metric-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin: 0.5rem 0;
}

.metric-progress {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    margin: 1rem 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 3px;
    transition: width 2s ease;
}

.metric-note {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0;
}

.video-testimonials {
    margin: 4rem 0;
}

.video-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.video-subtitle {
    color: #6b7280;
    font-size: 1rem;
}

.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

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

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #10b981;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.video-content {
    padding: 1.5rem;
}

.video-client-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.video-transformation {
    color: #10b981;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.video-preview {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.9rem;
}

.transformation-cta {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-top: 4rem;
}

.cta-background {
    position: relative;
}

.cta-bg-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9) 0%, rgba(5, 150, 105, 0.9) 100%);
}

.cta-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: white;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.btn-primary-cta {
    background: white;
    color: #10b981;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary-cta:hover {
    background: #f9fafb;
    color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary-cta {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.cta-guarantee-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .transformation-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-cta, .btn-secondary-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Block 4 */
.coaching-programs-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fcff 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.coaching-programs-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(33, 150, 243, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(76, 175, 80, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

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

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

.program-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.program-card.featured {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(33, 150, 243, 0.2);
}

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

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

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}

.program-header {
    padding: 30px 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4caf50, #388e3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.starter-program .program-icon {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}

.executive-program .program-icon {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.3);
}

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

.program-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.program-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.program-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2196f3;
}

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

.program-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.program-card:hover .program-img {
    transform: scale(1.1);
}

.program-content {
    padding: 30px;
}

.program-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.program-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #444;
    font-size: 0.9rem;
}

.feature-item i {
    color: #4caf50;
    width: 18px;
    flex-shrink: 0;
}

.starter-program .feature-item i {
    color: #2196f3;
}

.executive-program .feature-item i {
    color: #9c27b0;
}

.program-outcomes {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.outcomes-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

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

.outcomes-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.9rem;
}

.outcomes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.program-duration {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.program-duration i {
    color: #2196f3;
}

.program-footer {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
}

.program-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-foundation {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
}

.btn-transformation {
    background: linear-gradient(135deg, #4caf50, #388e3c);
    color: white;
}

.btn-executive {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    color: white;
}

.program-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.program-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 0.85rem;
}

.program-guarantee i {
    color: #4caf50;
}

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

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

.comparison-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.comparison-subtitle {
    color: #666;
    font-size: 1rem;
}

.comparison-table {
    display: grid;
    gap: 1px;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: white;
}

.header-row {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    font-weight: 600;
}

.feature-name, .program-col {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
}

.feature-name {
    justify-content: flex-start;
    font-weight: 500;
    color: #333;
}

.header-row .feature-name {
    color: white;
}

.program-col i {
    font-size: 1.2rem;
}

.program-col i.fa-check {
    color: #4caf50;
}

.program-col i.fa-minus {
    color: #ccc;
}

.program-col i.fa-crown {
    color: #ff6b35;
}

.programs-faq {
    margin-bottom: 60px;
}

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

.faq-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.faq-subtitle {
    color: #666;
    font-size: 1rem;
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.faq-question i {
    color: #2196f3;
    margin-top: 2px;
    flex-shrink: 0;
}

.faq-question span {
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.programs-cta {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
}

.cta-background {
    position: relative;
    height: 100%;
}

.cta-bg-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.9), rgba(76, 175, 80, 0.8));
}

.cta-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    opacity: 0.95;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.95rem;
}

.benefit-item i {
    color: #ffeb3b;
    font-size: 1.2rem;
}

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

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    color: white;
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.cta-note i {
    color: #4caf50;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .program-card.featured {
        transform: none;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-row > div {
        border-bottom: 1px solid #eee;
    }
    
    .feature-name::before {
        content: attr(data-label);
        font-weight: bold;
        margin-right: 10px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

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

.consultation-form-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
z-index: 1;
}

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

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

.form-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 30px;
box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

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

.form-title {
font-size: 48px;
font-weight: 700;
color: #1e293b;
margin-bottom: 16px;
line-height: 1.2;
letter-spacing: -0.02em;
}

.form-subtitle {
font-size: 20px;
color: #64748b;
margin-bottom: 40px;
line-height: 1.6;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.form-benefits {
display: flex;
justify-content: center;
gap: 40px;
margin-top: 32px;
}

.form-benefits .benefit-item {
display: flex;
align-items: center;
gap: 8px;
color: #475569;
font-weight: 500;
}

.form-benefits .benefit-item i {
color: #22c55e;
font-size: 16px;
}

.consultation-form-container {
background: white;
border-radius: 24px;
padding: 60px;
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(226, 232, 240, 0.6);
}

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

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

.input-label {
font-weight: 600;
color: #374151;
font-size: 15px;
letter-spacing: -0.01em;
}

.input-wrapper {
position: relative;
}

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

.form-input {
width: 100%;
height: 60px;
padding: 0 20px 0 50px;
border: 2px solid #e5e7eb;
border-radius: 16px;
font-size: 16px;
font-weight: 500;
color: #1f2937;
background: white;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-input:focus {
outline: none;
border-color: #22c55e;
box-shadow: 
0 0 0 4px rgba(34, 197, 94, 0.1),
0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-input:focus + .input-icon,
.form-input:not(:placeholder-shown) + .input-icon {
color: #22c55e;
}

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

.submit-button {
position: relative;
width: 100%;
height: 70px;
background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
border: none;
border-radius: 18px;
color: white;
font-size: 18px;
font-weight: 600;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
overflow: hidden;
box-shadow: 
0 10px 15px -3px rgba(34, 197, 94, 0.3),
0 4px 6px -2px rgba(34, 197, 94, 0.2);
}

.submit-button:hover {
transform: translateY(-2px);
box-shadow: 
0 20px 25px -5px rgba(34, 197, 94, 0.4),
0 10px 10px -5px rgba(34, 197, 94, 0.3);
}

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

.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;
}

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

.form-guarantee {
display: flex;
align-items: center;
gap: 8px;
color: #6b7280;
font-size: 14px;
font-weight: 500;
}

.form-guarantee i {
color: #22c55e;
}

.trust-indicators {
display: flex;
justify-content: center;
gap: 40px;
margin-top: 40px;
padding-top: 32px;
border-top: 1px solid #f1f5f9;
}

.trust-item {
display: flex;
align-items: center;
gap: 8px;
color: #6b7280;
font-size: 14px;
font-weight: 500;
}

.trust-item i {
color: #22c55e;
font-size: 16px;
}

.social-proof-bar {
background: white;
border-radius: 20px;
padding: 32px;
margin-top: 40px;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
border: 1px solid #f1f5f9;
}

.proof-content {
display: flex;
align-items: center;
justify-content: center;
gap: 24px;
}

.proof-avatars {
display: flex;
align-items: center;
}

.proof-avatar {
width: 48px;
height: 48px;
border-radius: 50%;
border: 3px solid white;
margin-left: -12px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.proof-avatar:first-child {
margin-left: 0;
}

.proof-counter {
width: 48px;
height: 48px;
background: #22c55e;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 600;
font-size: 14px;
margin-left: -12px;
border: 3px solid white;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.proof-text {
display: flex;
flex-direction: column;
gap: 8px;
}

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

.proof-stats {
display: flex;
gap: 20px;
}

.proof-stats .stat-item {
display: flex;
align-items: center;
gap: 4px;
color: #6b7280;
font-size: 14px;
font-weight: 500;
}

.proof-stats .stat-item i {
color: #fbbf24;
font-size: 12px;
}

@media (max-width: 768px) {
.consultation-form-section {
padding: 80px 0;
}

.form-title {
font-size: 36px;
}

.form-subtitle {
font-size: 18px;
}

.consultation-form-container {
padding: 40px 24px;
border-radius: 20px;
}

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

.submit-button {
height: 64px;
font-size: 16px;
}

.trust-indicators {
flex-direction: column;
gap: 20px;
}

.proof-content {
flex-direction: column;
gap: 20px;
text-align: center;
}

.proof-stats {
justify-content: center;
}
}

@media (max-width: 480px) {
.form-title {
font-size: 28px;
}

.consultation-form-container {
padding: 32px 20px;
}

.form-input {
height: 56px;
font-size: 15px;
}
}
