
/* 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: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 28, 55, 0.85) 0%, rgba(37, 47, 75, 0.75) 50%, rgba(16, 28, 55, 0.9) 100%);
}

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

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

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: #bbdefb;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #e3f2fd;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

.hero-description-secondary {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #c5d9ed;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    max-width: 580px;
}

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

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
    border: 2px solid transparent;
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(33, 150, 243, 0.6);
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    color: #ffffff;
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #64b5f6;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(100, 181, 246, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    color: #b3d9f2;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1rem 0;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .stat-item {
        align-items: center;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

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

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

.section-title {
font-size: 3.5rem;
font-weight: 800;
background: linear-gradient(135deg, #1e293b, #475569);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 24px;
line-height: 1.1;
letter-spacing: -0.02em;
}

.section-description {
font-size: 1.25rem;
color: #64748b;
line-height: 1.6;
margin-bottom: 0;
}

.feature-content {
padding: 40px;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
border-radius: 24px;
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
height: 100%;
transition: all 0.3s ease;
}

.feature-content:hover {
transform: translateY(-8px);
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon-wrapper {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #3b82f6, #1d4ed8);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 32px;
position: relative;
}

.feature-icon-wrapper::before {
content: '';
position: absolute;
inset: -4px;
background: linear-gradient(135deg, #3b82f6, #1d4ed8, #7c3aed);
border-radius: 24px;
z-index: -1;
opacity: 0.3;
filter: blur(8px);
}

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

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

.feature-description {
font-size: 1.1rem;
color: #475569;
line-height: 1.7;
margin-bottom: 20px;
}

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

.feature-image-container {
position: relative;
height: 100%;
min-height: 500px;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.feature-image-container:hover .feature-image {
transform: scale(1.05);
}

.image-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(124, 58, 237, 0.1));
display: flex;
align-items: flex-end;
padding: 32px;
}

.tech-badge {
background: rgba(0, 0, 0, 0.8);
color: white;
padding: 12px 20px;
border-radius: 50px;
display: flex;
align-items: center;
gap: 8px;
font-weight: 600;
backdrop-filter: blur(10px);
}

.demo-controls {
display: flex;
gap: 12px;
}

.demo-btn {
background: rgba(255, 255, 255, 0.2);
border: 2px solid rgba(255, 255, 255, 0.3);
color: white;
padding: 8px 16px;
border-radius: 25px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
}

.demo-btn.active,
.demo-btn:hover {
background: white;
color: #3b82f6;
}

.feature-stats {
display: flex;
gap: 24px;
margin-top: 32px;
}

.stat-card {
background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
padding: 20px;
border-radius: 16px;
text-align: center;
flex: 1;
border: 1px solid rgba(255, 255, 255, 0.5);
}

.stat-value {
display: block;
font-size: 2rem;
font-weight: 800;
color: #3b82f6;
margin-bottom: 8px;
}

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

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

.benefit-item {
display: flex;
align-items: center;
gap: 12px;
font-size: 1.1rem;
color: #475569;
font-weight: 500;
}

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

.reconstruction-types {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin-top: 32px;
}

.recon-type {
background: linear-gradient(135deg, #f8fafc, #e2e8f0);
padding: 16px;
border-radius: 12px;
display: flex;
align-items: center;
gap: 12px;
font-weight: 600;
color: #475569;
border: 1px solid rgba(255, 255, 255, 0.5);
}

.recon-type i {
color: #3b82f6;
font-size: 1.2rem;
}

.process-indicator {
display: flex;
align-items: center;
gap: 20px;
}

.process-step {
display: flex;
align-items: center;
gap: 8px;
color: rgba(255, 255, 255, 0.7);
transition: color 0.3s ease;
}

.process-step.active {
color: white;
}

.step-number {
width: 32px;
height: 32px;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
border: 2px solid rgba(255, 255, 255, 0.3);
}

.process-step.active .step-number {
background: white;
color: #3b82f6;
}

.step-label {
font-weight: 600;
font-size: 0.9rem;
}

.cta-container {
margin-top: 80px;
text-align: center;
background: linear-gradient(135deg, #3b82f6, #1d4ed8);
border-radius: 32px;
padding: 60px 40px;
position: relative;
overflow: hidden;
}

.cta-container::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
animation: float 6s ease-in-out infinite;
}

@keyframes float {
0%, 100% { transform: translateY(0px) rotate(0deg); }
50% { transform: translateY(-20px) rotate(180deg); }
}

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

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

.cta-description {
font-size: 1.25rem;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 40px;
}

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

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

.btn-cta-primary {
background: white;
color: #3b82f6;
}

.btn-cta-primary:hover {
background: #f8fafc;
color: #1d4ed8;
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

@media (max-width: 991px) {
.section-title {
    font-size: 2.5rem;
}

.feature-content {
    margin-bottom: 40px;
}

.feature-stats {
    flex-direction: column;
}

.reconstruction-types {
    grid-template-columns: 1fr;
}

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

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

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

.testimonials-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.6;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.testimonial-featured {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.testimonial-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

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

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.testimonial-role {
    color: #667eea;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 4px 0 8px 0;
}

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

.testimonial-rating i {
    color: #ffd700;
    font-size: 1rem;
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 500;
}

.testimonial-details {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0;
}

.testimonial-stats {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    margin-top: 25px;
}

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

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
}

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

.testimonial-metrics {
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    padding-top: 20px;
    margin-top: 25px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
}

.metric-item i {
    color: #667eea;
    width: 16px;
}

.testimonial-achievements {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    padding-top: 20px;
    margin-top: 25px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
}

.achievement-item i {
    color: #667eea;
    width: 18px;
    font-size: 1.1rem;
}

.overall-rating-section {
    margin-top: 80px;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.rating-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.rating-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rating-visual {
    margin-bottom: 40px;
}

.rating-score {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 15px;
}

.rating-stars i {
    color: #ffd700;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rating-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

.rating-breakdown {
    max-width: 400px;
    margin: 0 auto;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.rating-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    min-width: 60px;
}

.bar-container {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700 0%, #ffed4a 100%);
    border-radius: 4px;
    transition: width 1.5s ease;
}

.rating-percent {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 35px;
    text-align: right;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

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

.cta-testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

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

.btn-cta-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    color: #667eea;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-cta-primary:hover {
    background: #ffffff;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .testimonials-showcase {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .rating-score {
        font-size: 3rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .metric-row {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .rating-bar {
        gap: 10px;
    }
    
    .rating-label {
        min-width: 50px;
        font-size: 0.85rem;
    }
}

/* Block 4 */
.pricing-comparison {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.pricing-comparison::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.1;
}

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

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

.section-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
}

.discount-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 8px;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #cbd5e1;
    transition: 0.3s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.toggle-input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

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

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

.pricing-card.featured {
    border: 2px solid #667eea;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

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

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

.plan-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.plan-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

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

.price {
    font-size: 4rem;
    font-weight: 800;
    color: #1e293b;
    display: none;
}

.monthly-price {
    display: block;
}

.price-period {
    font-size: 1.5rem;
    color: #64748b;
    margin-left: 8px;
}

.billing-info {
    color: #64748b;
    font-size: 0.95rem;
}

.billing-frequency::before {
    content: 'monthly';
}

.features-list {
    margin-bottom: 32px;
}

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

.feature-check {
    color: #10b981;
    margin-right: 16px;
    font-size: 1.2rem;
}

.plan-example {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-plan {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: 16px;
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-plan.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.trial-info {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.comparison-features {
    margin-top: 100px;
}

.comparison-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 48px;
}

.feature-table {
    width: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-table th,
.feature-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.feature-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-name {
    text-align: left !important;
    font-weight: 600;
    color: #374151;
}

.plan-column.featured {
    background: rgba(102, 126, 234, 0.05);
}

.plan-value {
    font-weight: 600;
    color: #1e293b;
}

.pricing-faq {
    margin-top: 80px;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 48px;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.faq-answer {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.pricing-cta {
    margin-top: 80px;
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
}

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

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #059669;
    font-weight: 600;
}

.cta-feature i {
    font-size: 1.2rem;
}

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

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

.btn-cta-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-cta-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.toggle-input:checked ~ .monthly-price {
    display: none;
}

.toggle-input:checked ~ .annual-price {
    display: block;
}

.toggle-input:checked ~ .billing-frequency::before {
    content: 'annually';
}

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

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/geometric-pattern-overlay.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

.contact-form-section .container {
    position: relative;
    z-index: 2;
}

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

.form-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 500;
}

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

.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 60px;
}

.contact-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 35px;
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.form-label i {
    margin-right: 10px;
    color: #6366f1;
    font-size: 1.1rem;
}

.form-input {
    width: 100%;
    padding: 18px 0;
    font-size: 1.1rem;
    color: #111827;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    outline: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-input:focus {
    border-bottom-color: #6366f1;
}

.form-input:focus + .input-underline,
.form-input:valid + .input-underline {
    transform: scaleX(1);
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

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

.form-submit {
    text-align: center;
    margin-top: 50px;
}

.submit-button {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    letter-spacing: 0.01em;
    min-width: 240px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

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

.button-text {
    margin-right: 12px;
}

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

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

.form-disclaimer {
    margin-top: 25px;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.form-disclaimer a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

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

.trust-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-logo {
    height: 35px;
    opacity: 0.8;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.security-item i {
    color: #4ade80;
    margin-right: 8px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 80px 0;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 40px 30px;
        margin-bottom: 50px;
    }
    
    .form-benefits {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .trust-logos {
        gap: 25px;
    }
    
    .trust-logo {
        height: 28px;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .submit-button {
        padding: 18px 40px;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .submit-button {
        width: 100%;
        min-width: auto;
    }
    
    .trust-logos {
        gap: 20px;
    }
}
