/* Conversion Enhancement Styles */

/* Hero Badge Row */
.hero-badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-trial-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #00d4aa 0%, #00a8e8 100%);
    color: var(--bg-primary);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: subtle-glow 3s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 212, 170, 0.6);
    }
}

/* Hero Benefits */
.hero-benefits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.benefit-check {
    color: var(--accent);
    font-weight: 600;
    margin-right: 4px;
}

/* Product Preview */
.product-preview {
    margin: 60px auto 40px;
    max-width: 1000px;
}

.browser-frame {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.browser-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 212, 170, 0.2),
                0 0 0 1px rgba(0, 212, 170, 0.3);
}

.browser-bar {
    background: var(--bg-tertiary);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.browser-dots span:nth-child(1) {
    background: #ff5f57;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #28ca42;
}

.browser-url {
    flex: 1;
    background: var(--bg-primary);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: 'Monaco', 'Courier New', monospace;
}

.dashboard-mockup {
    width: 100%;
    height: auto;
    display: block;
    background: var(--bg-primary);
}

.preview-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.caption-icon {
    font-size: 1.2rem;
    animation: point-down 2s ease-in-out infinite;
}

@keyframes point-down {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Enhanced Social Proof Section */
.social-proof-enhanced {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

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

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.author-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Enhanced Secondary CTA */
.secondary-cta-banner {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 32px;
    margin: 80px auto;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: all 0.3s ease;
}

.secondary-cta-banner:hover {
    border-color: rgba(0, 212, 170, 0.3);
}

.secondary-cta-content {
    flex: 1;
}

.secondary-cta-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.secondary-cta-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.secondary-cta-action {
    flex-shrink: 0;
}

/* Enhanced CTA Section */
.cta-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 100px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cta-check {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
}

.secondary-cta-banner-section {
    padding: 0 0 80px 0;
}

/* ========== How It Works Visual ========== */
.how-it-works-visual {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.hiw-steps {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 64px;
    justify-content: center;
}

.hiw-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 48px 32px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.hiw-step:hover {
    border-color: rgba(0, 212, 170, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 212, 170, 0.15);
}

.hiw-step-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
}

.hiw-step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hiw-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.hiw-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.hiw-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: var(--accent);
    opacity: 0.5;
}

/* ========== Value Props (replaces testimonials) ========== */
.value-props-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.value-prop {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-prop::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.value-prop:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.vp-stat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1.1;
}

.vp-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.vp-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Value proof bullets */
.value-proof-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
    padding: 32px 40px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.vp-bullet {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.vp-check {
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1rem;
    margin-top: 1px;
}

/* ========== CTA button with subline ========== */
.btn-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.btn-subline {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-badge-row {
        flex-direction: column;
        gap: 12px;
    }

    .hero-trial-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 12px;
    }

    .product-preview {
        margin: 40px auto 20px;
    }

    .browser-bar {
        padding: 8px 12px;
    }

    .browser-url {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .dashboard-mockup {
        min-height: 400px;
    }

    .secondary-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

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

    /* How It Works Visual - mobile */
    .hiw-steps {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hiw-step {
        max-width: 100%;
        width: 100%;
        padding: 32px 24px;
    }

    .hiw-arrow {
        transform: rotate(90deg);
        padding: 4px 0;
    }

    /* Value Props - mobile */
    .value-props-grid {
        grid-template-columns: 1fr;
    }

    .value-proof-bullets {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        gap: 14px;
    }

    .vp-stat {
        font-size: 1.8rem;
    }

    /* CTA wrapper - mobile */
    .hero-cta {
        align-items: center;
    }

    .btn-cta-wrapper {
        width: 100%;
    }

    .btn-cta-wrapper .btn-primary {
        width: 100%;
        justify-content: center;
    }
}
