/* ========================================
   Benefits, Trust Elements & Demo Styles
   ======================================== */

/* Benefits Section */
.benefits-section {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.benefits-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.benefits-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-header p {
    color: var(--text-tertiary);
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefits-grid-4 {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
    .benefits-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefits-footer {
    text-align: center;
    margin-top: 2rem;
}

.privacy-statement {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.benefit-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--backdrop-blur));
    -webkit-backdrop-filter: blur(var(--backdrop-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
    border-color: var(--primary);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(52, 211, 153, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background: var(--primary-gradient);
    color: white;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Section */
.features-section {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.features-content h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 500;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.features-list li:hover {
    transform: translateX(5px);
    border-color: var(--primary);
}

.check-icon {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Audience Section New */
.audience-section-new {
    max-width: 1000px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.audience-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.audience-header h2 {
    font-size: 2rem;
    font-weight: 700;
}

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

.audience-card {
    background: var(--glass-bg);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.audience-card h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.audience-card p {
    color: var(--text-secondary);
    font-weight: 500;
}

.final-statement {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 600px;
    margin: 0 auto;
}

/* Demo Section */
.demo-section {
    max-width: 900px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
    text-align: center;
}

.demo-header {
    margin-bottom: 2.5rem;
}

.demo-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.demo-header p {
    color: var(--text-tertiary);
    font-size: 1.1rem;
}

.demo-showcase {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--backdrop-blur));
    -webkit-backdrop-filter: blur(var(--backdrop-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
}

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

.demo-step {
    position: relative;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.demo-step:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.demo-step-icon {
    width: 48px;
    height: 48px;
    margin: 0.5rem auto 1rem;
    background: var(--glass-highlight);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.demo-step-icon svg {
    width: 24px;
    height: 24px;
}

.demo-step h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.demo-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.demo-footer p {
    color: var(--text-tertiary);
    font-weight: 500;
}

.demo-cta {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-cta:hover {
    transform: translateY(4px);
}

.demo-cta svg {
    animation: bounce-arrow 1.5s infinite;
}

@keyframes bounce-arrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* Trust Section */
.trust-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.trust-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-header p {
    color: var(--text-tertiary);
    font-size: 1.1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-counter {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--backdrop-blur));
    -webkit-backdrop-filter: blur(var(--backdrop-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-counter:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.1);
}

.stat-counter .count {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-counter .stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Testimonials */
.testimonials-container {
    position: relative;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--backdrop-blur));
    -webkit-backdrop-filter: blur(var(--backdrop-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* Integration Badges */
.integration-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.integration-badge {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--backdrop-blur));
    -webkit-backdrop-filter: blur(var(--backdrop-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.integration-badge:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.integration-badge svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.integration-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .benefits-header h2,
    .demo-header h2,
    .trust-header h2 {
        font-size: 1.75rem;
    }

    .benefits-grid,
    .benefits-grid-4 {
        grid-template-columns: 1fr;
    }

    .demo-steps {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-counter .count {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .integration-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {

    .benefits-section,
    .demo-section,
    .trust-section,
    .features-section,
    .audience-section-new {
        padding: 0 1rem;
    }

    .benefit-card,
    .demo-showcase,
    .stat-counter,
    .testimonial-card,
    .audience-card {
        padding: 1.5rem;
    }

    /* Stats grid - stack vertically on small screens */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-counter .count {
        font-size: 1.75rem;
    }

    .stat-counter .stat-label {
        font-size: 0.85rem;
    }

    /* Testimonials - full width cards */
    .testimonials-grid {
        gap: 1rem;
    }

    .testimonial-quote {
        font-size: 0.9rem;
        padding-left: 0.75rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    /* Audience tags - better wrapping */
    .audience-tags {
        gap: 0.5rem;
    }

    .audience-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Demo steps - single column */
    .demo-step {
        padding: 1.25rem 1rem;
    }

    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .demo-step-icon {
        width: 40px;
        height: 40px;
    }

    .demo-step h4 {
        font-size: 0.9rem;
    }

    .demo-step p {
        font-size: 0.8rem;
    }

    /* Benefits header */
    .benefits-header h2,
    .demo-header h2,
    .trust-header h2,
    .features-content h2,
    .audience-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .benefits-header p,
    .demo-header p,
    .trust-header p {
        font-size: 0.95rem;
    }

    /* Benefit card icons */
    .benefit-icon {
        width: 52px;
        height: 52px;
    }

    .benefit-icon svg {
        width: 26px;
        height: 26px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* Active Beta Section */
.active-beta-container {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--glass-bg);
    border: 1px dashed var(--glass-border);
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
}

.active-beta-container h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.active-beta-container p {
    color: var(--text-tertiary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-secondary-outline {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid var(--primary);
    /* Highlighting border */
    color: var(--primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary-outline:hover {
    background: var(--bg-hover, rgba(16, 185, 129, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--glass-bg);
    margin-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.25rem 3.5rem;
    border-radius: 99px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.5);
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }

    .btn-large {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
        width: 100%;
        display: flex;
    }
}