/* ===================================
   Trust Signal Enhancements
   Additional styles for trust-focused design
   =================================== */

/* Trust Navigation */
.nav-trust-badges {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
}

.nav-trust-item i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--success);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

/* Hero Trust Enhancements */
.hero-trust-badges {
    display: none; /* Hide on desktop - they'll show on mobile only */
}

.hero-badge {
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-weight: 600;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--dark);
}

.hero-badge i {
    color: var(--primary-blue);
    font-size: 1.125rem;
}

.hero-stats-overlay {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: white;
}

.hero-stat-item .stat-label {
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
    color: white;
}

/* Hero Trust Indicators */
.hero-trust-enhanced .hero-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-trust-enhanced .hero-trust .trust-item {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-trust-enhanced .hero-trust .trust-item i {
    color: #25D366;
    font-size: 1.125rem;
}

/* Trust Dashboard Section */
.trust-dashboard-section {
    background: var(--dark);
    color: white;
    padding: 5rem 0;
}

.section-title-dark {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.section-subtitle-dark {
    text-align: center;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.dashboard-metric {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: 0.3s;
}

.dashboard-metric:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.metric-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
    min-width: 120px;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.375rem;
}

.metric-sublabel {
    font-size: 0.8125rem;
    opacity: 0.7;
}

/* Recovery Timeline */
.recovery-timeline-section {
    padding: 6rem 0;
    background: white;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-card {
    text-align: center;
}

.timeline-card.featured .timeline-circle {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.4);
}

.timeline-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
    transition: 0.3s;
}

.timeline-number {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
}

.timeline-unit {
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.timeline-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.timeline-desc {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Solutions with Trust Stats */
.solutions-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.solution-card {
    background: white;
    border: 3px solid var(--light-gray);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.solution-header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #2196F3, #1976D2, #2196F3);
    border-radius: 13px 13px 0 0;
    box-shadow:
        0 0 20px rgba(33, 150, 243, 0.5),
        0 0 40px rgba(33, 150, 243, 0.3);
}

.solution-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.15);
    transform: translateY(-10px);
}

.solution-trust-badge {
    position: absolute;
    top: 10px;
    right: 20px;
    background: #2196F3;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
    z-index: 10;
}

.solution-trust-badge i {
    display: inline-block;
}

.solution-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    z-index: 1;
}

.solution-icon i {
    display: block;
}

.solution-tagline {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.solution-desc {
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.solution-trust-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--trust-bg);
    border-radius: 12px;
}

.mini-stat {
    text-align: center;
}

.mini-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.mini-stat span {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

/* Platform Security - Dark Theme */
.platform-security {
    padding: 5rem 0;
    background: #1a1a2e;
}

.platform-security .section-title {
    color: white;
}

.platform-security .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.security-card {
    background: #0f1419;
    padding: 3rem 2rem;
    border-radius: 12px;
    border-left: 4px solid #2196F3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
}

.security-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(33, 150, 243, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #2196F3;
}

.security-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-align: center;
}

.security-stat {
    font-size: 2rem;
    font-weight: 900;
    color: #2196F3;
    text-align: center;
    margin-bottom: 1.5rem;
}

.security-card p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Social Proof Showcase */
.social-proof-showcase {
    padding: 6rem 0;
    background: white;
}

.review-platforms-display {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.platform-showcase {
    text-align: center;
    padding: 2.5rem 3rem;
    background: white;
    border: 3px solid var(--light-gray);
    border-radius: 16px;
    min-width: 280px;
    transition: 0.3s;
}

.platform-showcase:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.2);
    transform: translateY(-5px);
}

.platform-logo-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.platform-logo-large.google {
    color: #4285F4;
}

.platform-logo-large.facebook {
    color: #1877F2;
}

.platform-rating-large {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.platform-reviews-count {
    font-size: 1.125rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.industry-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.testimonials-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-trust-card {
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.review-platform-tag {
    position: absolute;
    top: -12px;
    left: 20px;
    background: white;
    padding: 0.375rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.google-tag {
    color: #4285F4;
    border-color: #4285F4;
}

.facebook-tag {
    color: #1877F2;
    border-color: #1877F2;
}

.review-stars {
    color: var(--primary-blue);
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
}

.review-text {
    font-style: italic;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.review-author {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.recovery-time-badge {
    background: var(--trust-bg);
    color: var(--primary-blue);
    padding: 0.625rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.recovery-time-badge.savings {
    background: #e6f4ea;
    color: var(--success);
}

/* Performance ROI Section */
.performance-roi {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
}

.section-title-light {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.section-subtitle-light {
    text-align: center;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
}

.roi-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.roi-metric {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.roi-metric:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.roi-percentage {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
}

.roi-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.roi-desc {
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* Community Trust */
.community-trust {
    padding: 6rem 0;
    background: white;
}

.community-stat-large {
    text-align: center;
    margin: 4rem 0;
}

.community-number {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
}

.community-label {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 1rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.industry-card {
    background: var(--trust-bg);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid var(--primary-blue);
}

.industry-card i {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.industry-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.industry-card p {
    font-size: 0.9375rem;
    color: var(--medium-gray);
}

.scale-trust {
    text-align: center;
    padding: 2rem;
    background: var(--trust-bg);
    border-radius: 12px;
    font-size: 1.125rem;
    color: var(--dark);
}

.scale-trust strong {
    color: var(--primary-blue);
}

/* Guarantees Section */
.guarantees-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.guarantee-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 3px solid var(--primary-blue);
    text-align: center;
    transition: 0.3s;
}

.guarantee-card:hover {
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.2);
    transform: translateY(-8px);
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.guarantee-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.guarantee-stat {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.guarantee-card p {
    line-height: 1.8;
    color: var(--medium-gray);
}

/* Final Trust Summary */
.final-trust-summary {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--dark), #0d1b2a);
    color: white;
    text-align: center;
}

.summary-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.summary-subtitle {
    font-size: 1.375rem;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.trust-summary-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.summary-stat {
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.summary-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.summary-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.final-cta-block h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-white {
    background: white;
    color: var(--primary-blue);
    border: 2px solid white;
}

.btn-white:hover {
    background: var(--primary-blue);
    color: white;
    border-color: white;
}

.final-trust-note {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Footer Trust Enhancements */
.footer-trust-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
}

.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9375rem;
}

.footer-trust-item i {
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.response-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-top: 0.25rem;
}

/* WhatsApp with Trust */
.whatsapp-tooltip {
    position: absolute;
    top: -40px;
    right: 0;
    background: white;
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ===================================
   Responsive Styles for Trust Enhancements
   =================================== */

/* Tablet and Below (1023px and below) */
@media (max-width: 1023px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .timeline-grid {
        gap: 2rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .roi-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trust-summary-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-platforms-display {
        gap: 2rem;
    }
}

/* Mobile Devices (767px and below) */
@media (max-width: 767px) {
    /* Navigation Trust Badges - Hide on mobile */
    .nav-trust-badges {
        display: none;
    }
    
    /* Hero Content - Use flexbox for proper ordering */
    .hero-trust-enhanced .hero-content {
        display: flex;
        flex-direction: column;
    }
    
    /* Hero Trust Badges - Reposition for mobile and ensure centering */
    .hero-trust-badges {
        position: static;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        margin: var(--space-md) auto;
        order: 2; /* Load after stats */
        width: 100%;
        text-align: center;
        padding: 0 var(--space-md);
        max-width: 320px;
    }
    
    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.625rem 1rem;
        margin: 0;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-badge i {
        font-size: 1rem;
    }
    
    /* Hero Title Order */
    .hero-trust-enhanced .hero-title {
        order: 0;
    }
    
    .hero-trust-enhanced .hero-subtitle {
        order: 0;
    }
    
    /* Hero Stats Overlay - Before badges */
    .hero-trust-enhanced .hero-stats-overlay {
        order: 1;
    }
    
    /* Ensure hero-trust items appear after stats and center properly */
    .hero-trust-enhanced .hero-trust {
        order: 3;
    }
    
    /* Hero Buttons */
    .hero-trust-enhanced .hero-buttons {
        order: 4;
    }
    
    /* Hero Stats Overlay - Stack on mobile */
    .hero-stats-overlay {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .hero-stat-item .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-stat-item .stat-label {
        font-size: 0.875rem;
    }
    
    /* Trust Dashboard */
    .trust-dashboard-section {
        padding: var(--space-3xl) 0;
    }
    
    .section-title-dark {
        font-size: 2rem;
    }
    
    .section-subtitle-dark {
        font-size: 1rem;
        margin-bottom: var(--space-2xl);
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .dashboard-metric {
        padding: var(--space-xl);
    }
    
    .metric-icon {
        font-size: 2.5rem;
    }
    
    .metric-value {
        font-size: 3rem;
    }
    
    .metric-label {
        font-size: 0.9375rem;
    }
    
    /* Recovery Timeline */
    .recovery-timeline-section {
        padding: var(--space-3xl) 0;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .timeline-circle {
        width: 160px;
        height: 160px;
    }
    
    .timeline-number {
        font-size: 3.5rem;
    }
    
    .timeline-unit {
        font-size: 1rem;
    }
    
    .timeline-title {
        font-size: 1.25rem;
    }
    
    .timeline-card.featured .timeline-circle {
        transform: scale(1);
    }
    
    /* Solutions Grid */
    .solutions-section {
        padding: var(--space-3xl) 0;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .solution-card {
        padding: var(--space-2xl);
    }
    
    .solution-trust-badge {
        position: static;
        display: inline-flex;
        margin-bottom: var(--space-md);
    }
    
    .solution-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .solution-trust-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    /* Security Grid */
    .platform-security {
        padding: var(--space-3xl) 0;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .security-card {
        padding: var(--space-2xl) var(--space-lg);
    }
    
    .security-card h3 {
        font-size: 1.5rem;
    }
    
    .security-stat {
        font-size: 1.75rem;
    }
    
    /* Social Proof */
    .social-proof-showcase {
        padding: var(--space-3xl) 0;
        overflow-x: hidden; /* Prevent horizontal overflow */
    }
    
    /* Reviews Section - Dual Column Layout on Mobile */
    .review-platforms-display {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem; /* Further reduced from 0.75rem */
        margin-bottom: var(--space-2xl);
        max-width: 100%; /* Constrain to viewport */
        width: 100%;
        padding: 0 var(--space-sm); /* Add horizontal padding for safety */
        box-sizing: border-box; /* Ensure padding is included in width */
    }
    
    .platform-showcase {
        width: 100%;
        max-width: 100%;
        padding: 0.75rem; /* Further reduced from 1rem */
        min-width: 0; /* Allow shrinking below content size */
        min-height: auto; /* Changed from 280px */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-sizing: border-box; /* Critical for preventing overflow */
    }
    
    .platform-logo-large {
        font-size: 1.75rem; /* Further reduced from 2rem */
        margin-bottom: 0.5rem; /* Further reduced from 0.75rem */
    }
    
    .platform-rating-large {
        font-size: 1.25rem; /* Further reduced from 1.5rem */
        margin-bottom: 0.25rem; /* Further reduced from 0.375rem */
        word-break: break-word; /* Prevent text overflow */
    }
    
    .platform-reviews-count {
        font-size: 0.7rem; /* Further reduced from 0.75rem */
        margin-bottom: 0.375rem; /* Further reduced from 0.5rem */
        word-break: break-word; /* Prevent text overflow */
    }
    
    .industry-badge {
        font-size: 0.6rem; /* Further reduced from 0.625rem */
        padding: 0.25rem 0.5rem; /* Further reduced from 0.25rem 0.625rem */
        white-space: nowrap; /* Prevent wrapping */
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%; /* Constrain to container */
    }
    
    .testimonials-trust-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    /* Performance ROI */
    .performance-roi {
        padding: var(--space-3xl) 0;
    }
    
    .section-title-light {
        font-size: 2rem;
    }
    
    .section-subtitle-light {
        font-size: 1rem;
        margin-bottom: var(--space-2xl);
    }
    
    .roi-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .roi-metric {
        padding: var(--space-xl) var(--space-md);
    }
    
    .roi-percentage {
        font-size: 3.5rem;
    }
    
    .roi-label {
        font-size: 1rem;
    }
    
    /* Community Trust */
    .community-trust {
        padding: var(--space-3xl) 0;
    }
    
    .community-stat-large {
        margin: var(--space-2xl) 0;
    }
    
    .community-number {
        font-size: 5rem;
    }
    
    .community-label {
        font-size: 1.375rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .industry-card {
        padding: var(--space-xl) var(--space-lg);
    }
    
    .industry-card i {
        font-size: 3rem;
    }
    
    /* Guarantees */
    .guarantees-section {
        padding: var(--space-3xl) 0;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .guarantee-card {
        padding: var(--space-2xl) var(--space-lg);
    }
    
    .guarantee-card h3 {
        font-size: 1.5rem;
    }
    
    .guarantee-stat {
        font-size: 2.5rem;
    }
    
    /* Final Trust Summary */
    .final-trust-summary {
        padding: var(--space-3xl) 0;
    }
    
    .summary-title {
        font-size: 2rem;
    }
    
    .summary-subtitle {
        font-size: 1.125rem;
        margin-bottom: var(--space-2xl);
    }
    
    .trust-summary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .summary-value {
        font-size: 2rem;
    }
    
    .summary-label {
        font-size: 0.8125rem;
    }
    
    .final-cta-block h3 {
        font-size: 1.75rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        gap: var(--space-md);
        width: 100%;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
    }
    
    .final-trust-note {
        font-size: 1rem;
    }
    
    /* Footer Trust */
    .footer-trust-bar {
        flex-direction: column;
        gap: var(--space-md);
        align-items: center;
        text-align: center;
        padding: var(--space-lg) 0;
    }
    
    .footer-badges {
        justify-content: center;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .dashboard-metric {
        padding: var(--space-lg);
    }
    
    .metric-value {
        font-size: 2.5rem;
    }
    
    .timeline-circle {
        width: 140px;
        height: 140px;
    }
    
    .timeline-number {
        font-size: 3rem;
    }
    
    .roi-metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .roi-percentage {
        font-size: 3rem;
    }
    
    .community-number {
        font-size: 4rem;
    }
    
    .community-label {
        font-size: 1.125rem;
    }
    
    .trust-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .summary-value {
        font-size: 1.75rem;
    }
}