/* ══════════════════════════════════════════════════════════
   WAITLIST WEBSITE BUILDER PAGE - Sleek Tech Aesthetic
   ══════════════════════════════════════════════════════════ */

/* ── Section Header Centering ── */
.trusted-by-section .section-header,
.pain-points-section .section-header,
.benefits-outcomes-section .section-header,
.works-with-section .section-header,
.lead-flow-section .section-header,
.template-showcase-section .section-header,
.comparison-table-section .section-header,
.no-code-section .section-header {
    text-align: center;
}

/* ── CTA Button ── */
.waitlist-section-cta {
    display: flex;
    justify-content: center !important;
    gap: var(--spacing-md);
    margin-top: var(--spacing-3xl);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

/* ── Hero ── */
.universal-hero.waitlist-hero {
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 100%),
        linear-gradient(180deg, #EEF2FF 0%, #FFFFFF 50%, #FAFAFA 100%);
    position: relative;
    overflow: hidden;
}

.universal-hero.waitlist-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.universal-hero.waitlist-hero .hero-content {
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.universal-hero.waitlist-hero .hero-title {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.universal-hero.waitlist-hero .hero-subtitle {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
}

.universal-hero.waitlist-hero .hero-feature {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.15);
    font-weight: var(--fw-medium);
    border-radius: 100px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.universal-hero.waitlist-hero .hero-feature i {
    color: #6366F1;
}

.universal-hero.waitlist-hero .hero-feature:hover {
    background: #6366F1;
    color: #FFFFFF;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
    border-color: #6366F1;
}

.universal-hero.waitlist-hero .hero-feature:hover i {
    color: #FFFFFF;
}

@media (min-width: 1400px) {
    .universal-hero.waitlist-hero .hero-title {
        max-width: 1100px;
    }
    .universal-hero.waitlist-hero .hero-subtitle {
        max-width: 1000px;
    }
    .universal-hero.waitlist-hero .hero-features {
        gap: 2rem;
    }
}

/* ── Feature Cards (#all-features) ── */
.waitlist-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.waitlist-feature-card {
    padding: var(--spacing-xl);
    background: var(--white);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.waitlist-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(168, 85, 247, 0.03) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.waitlist-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
}

.waitlist-feature-card:hover::after {
    opacity: 1;
}

.waitlist-feature-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.waitlist-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.waitlist-feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(168, 85, 247, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.waitlist-feature-icon i {
    font-size: 1.5rem;
    color: #6366F1;
    background: linear-gradient(135deg, #6366F1 0%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.waitlist-feature-header h3 {
    font-size: 1.1rem;
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.waitlist-feature-card p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .waitlist-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .universal-hero.waitlist-hero .hero-content,
    .universal-hero.waitlist-hero .section-badge {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .waitlist-features-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1rem;
    }
    
    .comparison-table {
        font-size: var(--text-sm);
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.625rem 0.75rem;
    }

    .lf-row {
        flex-direction: column;
        align-items: center;
        max-width: 400px;
    }

    .lf-card {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .lf-arrow-right {
        transform: rotate(90deg);
        padding: var(--spacing-sm) 0;
        width: 100%;
        justify-content: center;
    }

    .lf-arrow-down {
        justify-content: center;
        padding: var(--spacing-sm) 0;
    }
}
