/* Landing Page Specific Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--qbn-primary) 0%, var(--qbn-secondary) 50%, var(--qbn-accent) 100%);
    color: var(--qbn-white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    color: var(--qbn-white);
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
}

.hero .highlight {
    color: var(--qbn-gold);
    position: relative;
    display: inline-block;
}

.hero p.lead {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--qbn-gray-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust Signals */
.trust-signals {
    background: var(--qbn-white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--qbn-gold);
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--qbn-gray);
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--qbn-light);
}

.feature-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--qbn-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--qbn-blue) 0%, var(--qbn-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--qbn-white);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--qbn-primary);
}

.feature-card p {
    color: var(--qbn-gray);
    line-height: 1.7;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--qbn-white);
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--qbn-light);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.benefit-item:hover {
    background: var(--qbn-white);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--qbn-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--qbn-primary);
}

.benefit-content h4 {
    margin-bottom: 0.5rem;
    color: var(--qbn-primary);
}

.benefit-content p {
    color: var(--qbn-gray);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--qbn-primary) 0%, var(--qbn-accent) 100%);
    color: var(--qbn-white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--qbn-white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--qbn-gray-light);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--qbn-light);
}

.testimonial-card {
    background: var(--qbn-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--qbn-gold);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--qbn-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--qbn-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--qbn-primary);
}

.author-info h5 {
    margin: 0;
    color: var(--qbn-primary);
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    color: var(--qbn-gray);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        margin: 0 auto;
    }
}