/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #374151;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

.logo i {
    margin-right: 0.5rem;
    color: #f97316;
}

.industry-tag {
    background: #f97316;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1e3a8a;
}

.cta-button {
    background: #1e3a8a;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #1e40af;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #374151;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 8rem 0 4rem;
    margin-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

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

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: #1e3a8a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #1e3a8a;
    padding: 1rem 2rem;
    border: 2px solid #1e3a8a;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #1e3a8a;
    color: white;
}

.trust-indicators {
    color: #6b7280;
    font-size: 0.875rem;
}

.platform-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.platform-logos i {
    font-size: 1.5rem;
    color: #9ca3af;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-review {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 300px;
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.floating-review p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.floating-review span {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Problem Section */
.problem {
    padding: 4rem 0;
    background: #f9fafb;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

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

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.problem-icon {
    width: 4rem;
    height: 4rem;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.problem-icon i {
    font-size: 1.5rem;
    color: #dc2626;
}

.problem-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

/* Solution Section */
.solution {
    padding: 4rem 0;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.solution-text p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.solution-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.solution-img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #f9fafb;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #1e3a8a;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #f97316;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.testimonial-avatar i {
    color: #1e3a8a;
}

.testimonial-info h4 {
    font-weight: 600;
    color: #1e3a8a;
}

.testimonial-info span {
    font-size: 0.875rem;
    color: #6b7280;
}

.testimonial-stars {
    margin-left: auto;
    color: #fbbf24;
}

.testimonial-card p {
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-stats {
    display: flex;
    gap: 1rem;
}

.testimonial-stats .stat {
    background: #f3f4f6;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e3a8a;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background: #f9fafb;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid #f97316;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #f97316;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

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

.currency {
    font-size: 1.5rem;
    color: #6b7280;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a8a;
}

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

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.pricing-features .feature i {
    color: #10b981;
    margin-right: 1rem;
}

.btn-outline {
    background: transparent;
    color: #1e3a8a;
    padding: 1rem 2rem;
    border: 2px solid #1e3a8a;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

.btn-outline:hover {
    background: #1e3a8a;
    color: white;
}

.pricing-note {
    text-align: center;
    color: #6b7280;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.form-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.cta-form input,
.cta-form select {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.cta-form input:focus,
.cta-form select:focus {
    outline: none;
    border-color: #1e3a8a;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    width: 100%;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit i {
    color: #10b981;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    color: #f97316;
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #f97316;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .floating-review {
        position: static;
        margin-top: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}


/* Hero Testimonial */
.hero-testimonial {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 4px solid #f97316;
}

.hero-testimonial .testimonial-stars {
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.hero-testimonial p {
    font-style: italic;
    margin-bottom: 0.5rem;
    color: #374151;
}

.hero-testimonial span {
    font-size: 0.875rem;
    color: #6b7280;
}

/* ROI Highlight */
.roi-highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.roi-highlight h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.roi-highlight p {
    opacity: 0.9;
    margin: 0;
}

/* Urgency Note */
.urgency-note {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    margin-top: 1rem;
}

.urgency-note p {
    margin: 0;
    color: #92400e;
    font-weight: 600;
}

/* Enhanced CTA Form */
.cta-form .form-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Mobile Responsiveness for New Elements */
@media (max-width: 768px) {
    .hero-testimonial {
        margin-bottom: 1.5rem;
    }
    
    .roi-highlight {
        margin-bottom: 1.5rem;
    }
    
    .roi-highlight h3 {
        font-size: 1.125rem;
    }
    
    .cta-form .form-group {
        grid-template-columns: 1fr;
    }
}


/* Trust Badges Section */
.trust-badges {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.trust-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
}

.badges-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.badge-item i {
    color: #10b981;
    font-size: 1.125rem;
}

.badge-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.as-seen-in {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.as-seen-in span {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.media-logos {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.media-logo {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.25rem;
    background: #f9fafb;
}

/* Mobile Responsiveness for Trust Badges */
@media (max-width: 768px) {
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .as-seen-in {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .media-logos {
        justify-content: center;
        gap: 1rem;
    }
}


/* Calculator Section */
.calculator {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
}

.calculator-content {
    max-width: 600px;
    margin: 0 auto;
}

.calculator-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.calculator-form .form-group {
    margin-bottom: 1.5rem;
}

.calculator-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.calculator-form input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.calculator-form input:focus {
    outline: none;
    border-color: #3b82f6;
}

.calculator-results {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item.highlight {
    background: #dbeafe;
    margin: 0 -1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.result-item.success {
    background: #dcfce7;
    margin: 0 -1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.result-item.roi {
    background: #fef3c7;
    margin: 0 -1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
}

.result-label {
    font-weight: 500;
    color: #374151;
}

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

.calculator-cta {
    text-align: center;
}

.cta-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Enhanced Visual Hierarchy */
h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
}

/* Enhanced CTA Buttons */
.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    min-height: 44px;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    border: 2px solid #ff6b35;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Mobile Responsiveness for Calculator */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .calculator-form {
        padding: 1.5rem;
    }
    
    .result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}


/* Disclaimer Styling */
.disclaimer {
    font-size: 0.75rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 1rem;
    text-align: center;
}


/* Video Testimonials Section */
.video-testimonials {
    background: #f8fafc;
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-testimonial {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.video-testimonial.featured {
    border: 3px solid #ff6b35;
    transform: scale(1.05);
}

.video-placeholder {
    position: relative;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

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

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

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

.testimonial-content {
    padding: 1.5rem;
}

.testimonial-content h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.testimonial-content p {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-author {
    margin-bottom: 1rem;
}

.testimonial-author strong {
    display: block;
    color: #1f2937;
    font-size: 1rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.875rem;
}

.testimonial-stats {
    display: flex;
    gap: 1rem;
}

.testimonial-stats .stat {
    text-align: center;
    flex: 1;
}

.testimonial-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.testimonial-stats .stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-testimonial.featured {
        transform: none;
    }
    
    .video-placeholder {
        height: 150px;
    }
    
    .testimonial-content {
        padding: 1rem;
    }
}


/* Third-Party Validation */
.third-party-validation {
    margin-top: 2rem;
    text-align: center;
}

.validation-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.validation-badge {
    height: 40px;
    width: auto;
}

.validation-item span {
    font-weight: 600;
    color: #374151;
}

/* Customer Logos Section */
.customer-logos {
    background: white;
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
}

.customer-logos .section-header h3 {
    color: #374151;
    margin-bottom: 0.5rem;
}

.customer-logos .section-header p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.logo-item:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.logo-text {
    font-weight: 600;
    color: #6b7280;
    text-align: center;
    font-size: 0.875rem;
}

/* Guarantee Badge */
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

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

.badge-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.125rem;
    font-weight: 700;
}

.badge-content p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1.5rem;
    }
    
    .badge-icon {
        font-size: 1.5rem;
    }
}

