/* Simple, Clean CSS for BrainBox */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --abb-color-bg: #0e1014;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: radial-gradient(circle at 30% 20%, rgba(255, 185, 0, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 185, 0, 0.02) 0%, transparent 50%),
                var(--abb-color-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #1a1a1a;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 60px;
    width: auto;
}


.accent {
    color: #ffb900;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.nav a:hover {
    color: #ffb900;
}

.btn-login {
    background: #ffb900;
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-login:hover {
    background: #e6a800;
    color: #1a1a1a;
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at 30% 20%, rgba(255, 185, 0, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 185, 0, 0.02) 0%, transparent 50%),
                var(--abb-color-bg);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero .description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-video {
    background: #ffb900;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.btn-video:hover {
    background: #e6a800;
}

.play-icon {
    font-size: 1.2rem;
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.icon {
    font-size: 1.5rem;
    color: #ffb900;
}

.outcome {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.benefit {
    text-align: center;
    padding: 30px;
    background: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffb900;
}

.benefit h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.benefit p {
    color: #cccccc;
    font-size: 1.1rem;
}

.summary {
    text-align: center;
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Use Cases */
.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.use-case {
    text-align: center;
    padding: 30px 20px;
    background: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffb900;
}

.use-case h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.use-case p {
    color: #cccccc;
}

/* Pricing */
.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 50px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255,255,255,0.1);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid #ffb900;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffb900;
    color: #1a1a1a;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #ffb900;
    margin-bottom: 20px;
}

.price span {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 400;
}

.pricing-card p {
    color: #cccccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card li {
    padding: 8px 0;
    font-size: 1rem;
}

.btn-trial {
    background: #ffb900;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}

.btn-trial:hover {
    background: #e6a800;
}

.btn-trial.large {
    font-size: 1.3rem;
    padding: 20px 40px;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #ffb900;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.step p {
    color: #cccccc;
    font-size: 1.1rem;
}

/* CTA Section */
.cta {
    background: radial-gradient(circle at 30% 20%, rgba(255, 185, 0, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 185, 0, 0.02) 0%, transparent 50%),
                var(--abb-color-bg);
    text-align: center;
}

.cta h2 {
    margin-bottom: 30px;
}

.cta p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer .logo {
    justify-content: center;
    margin-bottom: 20px;
}

.footer p {
    color: #999;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Add scroll padding to account for sticky header */
    html {
        scroll-padding-top: 80px;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        padding: 15px 0;
        border-bottom: 1px solid #333;
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .features {
        flex-direction: column;
        gap: 20px;
    }
    
    .benefits {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

/* White Label Page Styles */
.white-label-section {
    padding: 80px 0;
    position: relative;
}

.white-label-section:nth-child(even) {
    background: rgba(255, 185, 0, 0.02);
}

.white-label-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.white-label-section .pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-table {
    margin: 3rem 0;
    overflow-x: auto;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 185, 0, 0.1);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.pricing-table th,
.pricing-table td {
    padding: 1.5rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-table th {
    background: rgba(255, 185, 0, 0.1);
    color: #ffb900;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px 8px 0 0;
}

.pricing-table td {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
}

.pricing-table tr:hover {
    background: rgba(255, 185, 0, 0.05);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

.pricing-table .accent {
    color: #ffb900;
    font-weight: 800;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 185, 0, 0.3);
}

.roi-text {
    text-align: center;
    margin-top: 2rem;
    color: #ffb900;
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem;
    background: rgba(255, 185, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 185, 0, 0.2);
}

.benefits-list {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
    padding: 0 1rem !important;
    width: 100% !important;
}

.benefits-list .benefit {
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    padding: 2rem !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 185, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    text-align: left !important;
    margin-bottom: 0 !important;
}

.benefits-list .benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffb900, #e6a800);
}

.benefits-list .benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 185, 0, 0.3);
}

.benefits-list .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffb900, #e6a800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 185, 0, 0.3);
    position: relative;
}

.benefits-list .benefit-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ffb900, #e6a800);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

.benefits-list .benefit-icon i {
    color: #0e1014;
    font-size: 1.5rem;
    font-weight: 700;
}

.benefits-list .benefit p {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 0 1rem;
}

.cta-buttons .btn-trial,
.cta-buttons .btn-video {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 250px;
}

.cta-buttons .btn-trial::before,
.cta-buttons .btn-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-buttons .btn-trial:hover::before,
.cta-buttons .btn-video:hover::before {
    left: 100%;
}

.cta-buttons .btn-trial:hover,
.cta-buttons .btn-video:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 185, 0, 0.4);
}

/* Enhanced section spacing */
.white-label-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Ensure benefits-list container is wide enough */
.white-label-section .benefits-list {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* NEW: White Label Benefits Grid - No Conflicts */
.white-label-benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
    padding: 0 1rem !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
}

.white-label-benefit-item {
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    padding: 2rem !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 185, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    margin: 0 !important;
}

.white-label-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffb900, #e6a800);
}

.white-label-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 185, 0, 0.3);
}

.white-label-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffb900, #e6a800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 185, 0, 0.3);
    position: relative;
}

.white-label-benefit-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ffb900, #e6a800);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

.white-label-benefit-icon i {
    color: #0e1014;
    font-size: 1.5rem;
    font-weight: 700;
}

.white-label-benefit-item p {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

.white-label-section h2 {
    margin-bottom: 2rem;
}

.white-label-section .benefits-grid,
.white-label-section .use-cases-grid {
    margin-top: 3rem;
}

/* Business model special styling */
#business .benefits-grid {
    max-width: 600px;
    margin: 3rem auto;
}

#business .benefit {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid rgba(255, 185, 0, 0.2);
}

#business .benefit h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffb900;
}

#business .benefit p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

#business .benefit p strong {
    color: #ffb900;
    font-size: 1.5rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .white-label-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .white-label-benefit-item {
        padding: 1.5rem;
    }
}

/* FORCE GRID LAYOUT - OVERRIDE ALL CONFLICTS */
.white-label-section .white-label-benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
    padding: 0 1rem !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
}

.white-label-section .white-label-benefit-item {
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    padding: 2rem !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 185, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    margin: 0 !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
}


/* Video Lightbox Styles */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-lightbox--active {
    opacity: 1;
    visibility: visible;
}

.video-lightbox__content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
}

.video-lightbox__close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10001;
    padding: 5px;
    line-height: 1;
}

.video-lightbox__close:hover {
    color: #ffb900;
}

.video-lightbox__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-lightbox__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-lightbox__content {
        width: 95%;
        margin: 20px;
    }
    
    .video-lightbox__close {
        top: 5px;
        right: 10px;
        font-size: 24px;
    }
}
