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

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

.hero-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(0, 123, 255, 0.85) 0%, rgba(108, 117, 125, 0.75) 100%);
    z-index: -1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    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%, #e3f2fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #f8f9fa;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #e9ecef;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description-secondary {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    color: #ced4da;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-cta-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
    color: white;
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ced4da;
    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 {
        font-size: 1.1rem;
    }
    
    .hero-description-secondary {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

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

.features-content {
    padding-right: 40px;
}

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

.features-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.features-description {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.features-description-secondary {
    font-size: 1rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

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

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

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

.feature-content {
    flex: 1;
}

.feature-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 0.9375rem;
    color: #718096;
    line-height: 1.5;
    margin: 0;
}

.features-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.features-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

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

.features-btn-secondary {
    background: white;
    color: #667eea;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid #667eea;
}

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

.features-visual {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.features-main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.features-stats-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.stats-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.stat-metric:last-child {
    margin-bottom: 0;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.stat-description {
    font-size: 0.8125rem;
    color: #718096;
    font-weight: 500;
    margin-top: 4px;
}

.features-testimonial-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    right: 50px;
    z-index: 3;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonial-text {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.2;
}

.author-title {
    font-size: 0.75rem;
    color: #718096;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .features-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .features-title {
        font-size: 2.25rem;
    }
    
    .features-visual {
        min-height: 500px;
    }
    
    .features-stats-overlay {
        position: static;
        margin-top: 20px;
    }
    
    .features-testimonial-card {
        position: static;
        margin-top: 20px;
        left: auto;
        right: auto;
    }
}

@media (max-width: 576px) {
    .features-title {
        font-size: 1.875rem;
    }
    
    .features-actions {
        flex-direction: column;
    }
    
    .features-btn-primary,
    .features-btn-secondary {
        text-align: center;
        justify-content: center;
    }
    
    .feature-item {
        padding: 16px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
}

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

.testimonials-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
}

.testimonials-header {
    position: relative;
    z-index: 2;
}

.testimonials-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(203, 213, 225, 0.3);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.testimonial-rating .fas {
    color: #fbbf24;
    font-size: 18px;
    margin-right: 4px;
}

.rating-score {
    font-weight: 700;
    color: #1e293b;
    margin-left: 12px;
    font-size: 16px;
}

.testimonial-content {
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 16px;
    border: 3px solid #e2e8f0;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.author-position {
    font-size: 14px;
    color: #3b82f6;
    font-weight: 600;
    margin: 0 0 2px 0;
}

.author-company {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.testimonial-metrics {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

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

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.testimonials-summary {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(203, 213, 225, 0.3);
    text-align: center;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 2px solid #f1f5f9;
}

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

.summary-stat .stat-description {
    font-size: 16px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 12px;
}

.star-display .fas {
    color: #fbbf24;
    font-size: 20px;
    margin: 0 2px;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonials-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.testimonials-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
    color: white;
}

.testimonials-btn-secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.testimonials-btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 36px;
    }
    
    .testimonials-subtitle {
        font-size: 18px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testimonials-summary {
        padding: 40px 24px;
    }
    
    .summary-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-btn-primary,
    .testimonials-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

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

.pricing-comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.05;
    border-radius: 0 0 50% 50%;
}

.pricing-header {
    margin-bottom: 50px;
}

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

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

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

.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

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

.pricing-starter {
    border-top: 4px solid #48bb78;
}

.pricing-professional {
    border-top: 4px solid #667eea;
    transform: scale(1.05);
}

.pricing-enterprise {
    border-top: 4px solid #9f7aea;
}

.pricing-card-header {
    padding: 30px;
    text-align: center;
    position: relative;
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #48bb78;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-badge-recommended {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin: 20px 0 15px;
}

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

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #667eea;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2d3748;
    margin: 0 5px;
}

.price-period {
    font-size: 1.2rem;
    color: #718096;
    font-weight: 500;
}

.plan-description {
    color: #718096;
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-card-body {
    padding: 0 30px;
    flex: 1;
}

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

.plan-features li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f7fafc;
    font-size: 0.95rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: #48bb78;
    margin-right: 12px;
    width: 16px;
    text-align: center;
}

.pricing-card-footer {
    padding: 30px;
    text-align: center;
    margin-top: auto;
}

.pricing-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    font-size: 1rem;
}

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

.trial-info {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #718096;
}

.pricing-features-comparison {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 40px;
    margin-top: 60px;
}

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

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    font-weight: 600;
    text-align: left;
}

.feature-column {
    width: 40%;
}

.plan-column {
    width: 20%;
    text-align: center;
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

.feature-name {
    font-weight: 600;
    color: #2d3748;
}

.feature-value {
    text-align: center;
    font-weight: 500;
    color: #4a5568;
}

.comparison-table tbody tr:hover {
    background-color: #f8faff;
}

.pricing-guarantee {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    margin-top: 60px;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.guarantee-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.guarantee-description {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.pricing-faq {
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 40px;
}

.faq-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

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

.faq-item {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-answer {
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 2.2rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-professional {
        transform: none;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
}

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

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

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

.form-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.form-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
    max-width: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    letter-spacing: -0.025em;
}

.form-control {
    width: 100%;
    padding: 20px 24px 20px 56px;
    font-size: 16px;
    color: #2d3748;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

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

.form-icon {
    position: absolute;
    left: 20px;
    top: 50px;
    color: #a0aec0;
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group:focus-within .form-icon {
    color: #667eea;
}

.form-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
}

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

.form-submit-btn {
    position: relative;
    width: 100%;
    padding: 24px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.025em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    margin-bottom: 32px;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

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

.form-submit-btn span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.form-submit-btn:hover .btn-glow {
    left: 100%;
}

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

.privacy-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #718096;
    margin-bottom: 24px;
}

.privacy-notice i {
    color: #48bb78;
}

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

.trust-badge {
    height: 32px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-badge:hover {
    opacity: 1;
}

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

.testimonial-quote {
    font-size: 18px;
    font-style: italic;
    color: #2d3748;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-details {
    text-align: left;
}

.author-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 4px;
}

.author-title {
    display: block;
    font-size: 14px;
    color: #718096;
    margin-bottom: 8px;
}

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

.author-rating i {
    color: #f6ad55;
    font-size: 14px;
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 80px 0;
    }
    
    .form-title {
        font-size: 36px;
    }
    
    .form-description {
        font-size: 18px;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .form-benefits {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-details {
        text-align: center;
    }
    
    .trust-indicators {
        gap: 16px;
    }
    
    .trust-badge {
        height: 28px;
    }
}

@media (min-width: 992px) {
    .form-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
