/* ========================================
   TechBoost Waitlist - Additional Styles
   Extends website-v2 styles
======================================== */

/* Global Border Radius Override - 15px */
:root {
    --radius-sm: 10px;
    --radius: 15px;
    --radius-lg: 15px;
    --radius-xl: 15px;
    --radius-2xl: 15px;
}

/* Add these CSS variables */
:root {
    --primary: #7c3aed;
    --primary-alt: #6f00ff;
    --dark-blue: #131628;
    --light-grey: #efefef;
}

.btn, .btn-primary, .btn-secondary, .btn-outline,
.problem-card, .program-card, .feature-card, .audience-card,
.tab-btn, .tab-content, .tab-panel,
.faq-item, .faq-question,
.card, .form-control, input, textarea, select,
.waitlist-form, .waitlist-card,
.hero-badge, .section-label {
    border-radius: 15px !important;
}

/* Sticky Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #7c3aed, #a855f7, #7c3aed);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite, pulse-glow 2s ease-in-out infinite;
    padding: 14px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1002;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(168, 85, 247, 0.6); }
}

@keyframes bounce-arrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.announcement-bar a {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.announcement-bar a:hover {
    transform: scale(1.02);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.announcement-bar a i {
    font-size: 0.9rem;
    animation: bounce-arrow 1s ease-in-out infinite;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-socials a {
    width: 36px;
    height: 36px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.9rem;
}

.header-socials a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Sticky Header - below announcement bar */
.header {
    position: sticky !important;
    top: 44px !important; /* Height of announcement bar */
    z-index: 1001 !important;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo Image Styles */
.logo-img {
    height: 70px;
    width: auto;
    transition: var(--transition);
    /* Make logo purple to match the website theme */
    filter: brightness(0) saturate(100%) invert(24%) sepia(89%) saturate(2057%) hue-rotate(254deg) brightness(93%) contrast(93%) drop-shadow(0 0 8px rgba(124, 58, 237, 0.6)) drop-shadow(0 0 15px rgba(124, 58, 237, 0.4));
    margin: -12px 0; /* Compensate for larger size */
    animation: logo-glow 2s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% { 
        filter: brightness(0) saturate(100%) invert(24%) sepia(89%) saturate(2057%) hue-rotate(254deg) brightness(93%) contrast(93%) drop-shadow(0 0 8px rgba(124, 58, 237, 0.6)) drop-shadow(0 0 15px rgba(124, 58, 237, 0.4));
    }
    50% { 
        filter: brightness(0) saturate(100%) invert(24%) sepia(89%) saturate(2057%) hue-rotate(254deg) brightness(110%) contrast(93%) drop-shadow(0 0 12px rgba(168, 85, 247, 0.8)) drop-shadow(0 0 25px rgba(124, 58, 237, 0.6));
    }
}

.logo:hover .logo-img {
    filter: brightness(0) saturate(100%) invert(24%) sepia(89%) saturate(2057%) hue-rotate(254deg) brightness(120%) contrast(93%) drop-shadow(0 0 15px rgba(168, 85, 247, 1)) drop-shadow(0 0 30px rgba(124, 58, 237, 0.8));
    transform: scale(1.05);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    transition: var(--transition);
    margin-bottom: 0;
    animation: footer-logo-glow 2s ease-in-out infinite;
}

@keyframes footer-logo-glow {
    0%, 100% { 
        filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    }
    50% { 
        filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.5));
    }
}

.footer-logo:hover .footer-logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
    transform: scale(1.05);
}

/* Waitlist Footer Styles */
.waitlist-footer {
    background: #131628 !important;
    padding: 60px 0 0 !important;
}

.waitlist-footer::before,
.waitlist-footer::after {
    display: none !important;
}

.waitlist-footer .footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.waitlist-footer .footer-about {
    max-width: 500px;
}

.waitlist-footer .footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    margin-top: 16px;
}

.waitlist-footer .footer-social {
    display: flex;
    gap: 12px;
}

.waitlist-footer .footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
}

.waitlist-footer .footer-social a:hover {
    background: rgba(111, 0, 255, 0.3);
    transform: translateY(-3px);
}

.waitlist-footer .footer-contact-section {
    text-align: left;
    padding-top: 66px;
}

.waitlist-footer .footer-contact-section h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.waitlist-footer .footer-contact-section a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: var(--transition);
}

.waitlist-footer .footer-contact-section a:hover {
    color: #fff;
}

.waitlist-footer .footer-contact-section a i {
    width: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.waitlist-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.waitlist-footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.waitlist-footer .footer-legal {
    display: flex;
    gap: 30px;
}

.waitlist-footer .footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.waitlist-footer .footer-legal a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .waitlist-footer .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .waitlist-footer .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(111, 0, 255, 0.08);
    border-color: #6f00ff;
    color: #6f00ff;
}

/* Footer Contact Section */
.footer-contact {
    margin: 20px 0;
}

.footer-contact h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: #fff;
}

.footer-contact a i {
    width: 18px;
    color: var(--primary-light);
}

/* Hero Centered Layout */
.waitlist-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-centered .hero-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-centered .hero-text h1 {
    text-align: center;
}

.hero-centered .hero-text p {
    text-align: center;
    max-width: 800px;
}

/* Ensure hero background doesn't block clicks */
.hero-bg {
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(111, 0, 255, 0.1), rgba(124, 58, 237, 0.1));
    border: 2px solid rgba(124, 58, 237, 0.4);
    border-radius: 50px;
    color: #6f00ff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.hero-badge:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--primary);
}

.hero-video-cta {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 10px;
    text-align: center;
}

/* Video Container */
.video-container {
    max-width: 900px;
    margin: 50px auto;
    display: flex;
    justify-content: center;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #131628 0%, #1e1b4b 50%, #312e81 100%);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* Video grid pattern */
.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(124, 58, 237, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.video-icon {
    width: 80px;
    height: 80px;
    background: rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.video-icon i {
    font-size: 2rem;
    color: var(--primary-light);
}

.video-placeholder h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.video-placeholder p {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* Hero CTA Center */
.hero-cta-center {
    text-align: center;
    margin-top: 30px;
}

/* Solution Intro Section */
.solution-intro {
    padding: 80px 0 0;
    margin-bottom: 0;
}

/* ========================================
   Combined Solution Section
======================================== */
.solution-combined-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #131628 0%, #1e1b4b 35%, #312e81 65%, #131628 100%);
    position: relative;
    overflow: hidden;
}

.solution-combined-section .solution-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Moving gradient effects */
.solution-combined-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse 40% 50% at 25% 50%, rgba(124, 58, 237, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 75% 50%, rgba(139, 92, 246, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 35% 45% at 50% 25%, rgba(99, 102, 241, 0.3) 0%, transparent 50%);
    animation: solutionWave 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes solutionWave {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10%, 8%) rotate(3deg); }
    50% { transform: translate(0, 15%) rotate(0deg); }
    75% { transform: translate(-10%, 8%) rotate(-3deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Floating particles */
.solution-combined-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(3px 3px at 10% 20%, rgba(255,255,255,0.4), transparent),
        radial-gradient(4px 4px at 30% 70%, rgba(255,255,255,0.3), transparent),
        radial-gradient(3px 3px at 50% 30%, rgba(255,255,255,0.35), transparent),
        radial-gradient(4px 4px at 70% 80%, rgba(255,255,255,0.25), transparent),
        radial-gradient(3px 3px at 90% 40%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 20% 90%, rgba(255,255,255,0.35), transparent),
        radial-gradient(3px 3px at 80% 10%, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 60% 60%, rgba(255,255,255,0.3), transparent);
    background-size: 250px 250px;
    animation: solutionParticles 20s linear infinite;
    pointer-events: none;
}

@keyframes solutionParticles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-250px); }
}

.solution-combined-section .container {
    position: relative;
    z-index: 1;
}

.solution-combined-section .section-header {
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-combined-section .section-header h2 {
    text-align: center;
    color: var(--white);
}

.solution-combined-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.tab-content-wrapper {
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-combined-section .section-header {
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-light h2,
.section-header-light p {
    color: var(--white);
    text-align: center;
}

.section-label-light {
    color: #efefef !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    display: inline-block;
    text-align: center;
    padding: 8px 20px;
}

/* Solution Tabs */
.solution-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Bottom tabs - hidden on desktop, shown on mobile */
.solution-tabs-bottom {
    display: none;
    margin-top: 30px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.tab-btn.active {
    background: linear-gradient(135deg, #6f00ff, #7c3aed);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(111, 0, 255, 0.4);
}

.tab-btn i {
    font-size: 1.1rem;
}

/* Tab Content Styles */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-panel {
    background: var(--white);
    border: 2px solid rgba(124, 58, 237, 0.1);
    border-radius: var(--radius-2xl);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.panel-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
}

.panel-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.panel-header h3 {
    font-size: 1.75rem;
    color: #131628;
    margin: 0;
}

.panel-intro {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.panel-announcement {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(111, 0, 255, 0.15), rgba(124, 58, 237, 0.1));
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 20px;
}

.panel-announcement i {
    font-size: 1.25rem;
    color: var(--primary);
}

.panel-announcement span {
    font-size: 1rem;
    color: var(--text-dark);
}

.panel-announcement strong {
    color: var(--primary);
}

.tab-panel > p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

.tab-panel h4 {
    font-size: 1.1rem;
    margin: 30px 0 20px;
    color: var(--text-dark);
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-underline-offset: 4px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: var(--gray-50);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: rgba(111, 0, 255, 0.3);
    box-shadow: 0 4px 15px rgba(111, 0, 255, 0.12);
}

.feature-item i {
    color: #6f00ff;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-body);
    line-height: 1.5;
}

/* Audience Section */
.audience-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.audience-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.audience-card {
    background: var(--white);
    border: 2px solid #efefef;
    border-radius: var(--radius-2xl);
    padding: 40px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.audience-card:hover {
    border-color: rgba(111, 0, 255, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(111, 0, 255, 0.15);
}

.audience-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
}

.audience-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.audience-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: #131628;
}

.audience-card > p {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}

.audience-benefits {
    padding-top: 20px;
    border-top: 2px solid rgba(124, 58, 237, 0.1);
}

.benefit-label {
    display: block;
    color: #6f00ff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.audience-benefits ul {
    list-style: none;
}

.audience-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-body);
}

.audience-benefits li i {
    color: #6f00ff;
}

/* Service Tags */
.services-tags {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-tags > p {
    color: var(--text-body);
    margin-bottom: 24px;
    text-align: center;
}

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #efefef;
    border: 2px solid rgba(111, 0, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    color: #131628;
    font-weight: 500;
    transition: var(--transition);
}

.tag:hover {
    border-color: #6f00ff;
    background: rgba(111, 0, 255, 0.08);
    color: #6f00ff;
}

.tag i {
    color: var(--primary);
    font-size: 0.85rem;
}

/* Waitlist Section */
.waitlist-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #131628 0%, #1e1b4b 50%, #312e81 100%);
    position: relative;
    overflow: hidden;
}

.waitlist-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse 40% 50% at 25% 50%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 75% 50%, rgba(139, 92, 246, 0.25) 0%, transparent 50%);
    animation: statsWave 12s ease-in-out infinite;
}

.waitlist-section .section-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

.waitlist-section .section-header h2,
.waitlist-section .section-header p {
    text-align: center;
}

.bonus-text {
    color: var(--white) !important;
    font-size: 1.1rem;
}

.waitlist-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    text-align: center;
}

.waitlist-benefits span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-weight: 500;
}

.waitlist-benefits i {
    color: var(--primary-light);
}

/* Form */
.waitlist-form-container {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 15px;
    box-sizing: border-box;
}

.waitlist-form-container iframe {
    width: 100% !important;
    height: 720px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    display: block;
}

.waitlist-form {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 50px;
    box-shadow: var(--shadow-xl);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--gray-50);
    border: 2px solid rgba(124, 58, 237, 0.1);
    border-radius: var(--radius);
    color: var(--text-dark);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #6f00ff;
    box-shadow: 0 0 0 4px rgba(111, 0, 255, 0.1);
    background: var(--white);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 45px;
    background-color: var(--gray-50);
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--gray-50);
    border: 2px solid rgba(124, 58, 237, 0.1);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    color: var(--text-body);
}

.checkbox-label:hover {
    border-color: rgba(124, 58, 237, 0.3);
    background: var(--white);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* Problems Section Override */
.problems-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.problems-section .problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.problems-section .problem-card {
    text-align: center;
}

/* Enhanced Problem Icons */
.problems-section .problem-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(249, 115, 22, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 1.75rem;
    position: relative;
    animation: problem-pulse 2.5s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.problems-section .problem-icon i {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes problem-pulse {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 25px rgba(239, 68, 68, 0.35);
        transform: scale(1.05);
    }
}

.problems-section .problem-card:nth-child(1) .problem-icon {
    animation-delay: 0s;
}

.problems-section .problem-card:nth-child(2) .problem-icon {
    animation-delay: 0.5s;
}

.problems-section .problem-card:nth-child(3) .problem-icon {
    animation-delay: 1s;
}

.problems-section .problem-card:hover .problem-icon {
    animation: problem-shake 0.5s ease-in-out;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4);
}

@keyframes problem-shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* ========================================
   FAQ Section
======================================== */
.faq-section {
    padding: var(--section-padding);
    background: var(--white);
}

.faq-section .section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 2px solid rgba(124, 58, 237, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(124, 58, 237, 0.25);
}

.faq-item.active {
    border-color: #6f00ff;
    box-shadow: 0 4px 15px rgba(111, 0, 255, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #131628;
    transition: var(--transition);
}

.faq-question:hover {
    color: #6f00ff;
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    font-size: 0.9rem;
    color: #6f00ff;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-body);
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .problems-section .problems-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .tab-panel {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    /* Sticky header for mobile */
    .announcement-bar {
        padding: 10px 15px;
    }
    
    .header {
        position: sticky !important;
        top: 38px !important; /* Adjusted for smaller announcement bar on mobile */
        z-index: 1001 !important;
    }
    
    .solution-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Show bottom tabs on mobile */
    .solution-tabs-bottom {
        display: flex;
    }
    
    .tab-btn {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .waitlist-form {
        padding: 30px 20px;
    }
    
    .waitlist-benefits {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .video-container {
        margin: 30px auto;
    }
    
    .waitlist-form-container {
        padding: 0 15px;
    }
    
    .waitlist-form-container iframe {
        border-radius: 16px;
        height: 560px;
    }
}

@media (max-width: 480px) {
    .tags-grid {
        gap: 8px;
    }
    
    .tag {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .waitlist-form-container iframe {
        height: 580px;
    }
}
