/* ============================================
   LANDING PAGE STYLES - Noesis Performance
   ============================================ */

/* Base Landing Page */
.landing-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
    overflow-y: auto;
    overscroll-behavior: none;
    overflow-x: hidden;
}

.landing-page.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100%);
}

.landing-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 150px;
    position: relative;
    z-index: 2;
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: white;
    margin: 40px 0;
}

/* Section Title (Main Headings) */
.section-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

/* Subheadings - Standardized size for specific sections */
.who-we-are-section .section-title,
.services-section .section-title,
.other-features-section .section-title,
.by-the-numbers-section .section-title,
.testimonials-section .section-title,
.pricing-section .section-title {
    font-size: 36px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    margin-bottom: 60px;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.hero-left {
    flex: 1;
}

.landing-title {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.title-noesis,
.title-performance {
    font-size: 64px;
    font-weight: bold;
    color: white;
}

.title-libraries {
    font-size: 64px;
    font-weight: bold;
    color: #00FFFF;
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-top: 40px; /* Move content down to center with "Performance" */
}

.hero-welcome {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.watch-video-btn {
    padding: 12px 30px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 0;
    font-size: 16px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    align-self: flex-start;
}

.watch-video-btn:hover {
    background: transparent; /* Keep transparent on hover */
    border-color: #00FFFF; /* Cyan outline on hover */
    color: white;
}

/* ============================================
   WHO WE ARE SECTION
   ============================================ */

.who-we-are-section {
    text-align: center;
}

.who-we-are-text {
    font-size: 16px;
    line-height: 1.8;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    text-align: center;
    position: relative;
}

.services-section-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.services-sidebar-image {
    width: 120px;
    min-height: 600px;
    background: transparent;
    border: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
}

.services-sidebar-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.services-main-content {
    flex: 1;
    max-width: 800px;
}

.services-intro {
    font-size: 16px;
    line-height: 1.8;
    color: white;
    max-width: 1200px;
    margin: 0 auto 40px;
}

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

.library-tab {
    padding: 8px 16px;
    background: transparent;
    color: #ccc;
    border: 1px solid #444;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: none; /* Remove transitions */
}

.library-tab.active,
.library-tab:hover {
    background: transparent; /* Keep transparent */
    color: #ccc;
    border-color: #444;
}

.services-content {
    margin-top: 40px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    width: 100%;
}

.service-arrow {
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
    text-decoration: underline;
    font-weight: bold;
}

.service-item p {
    font-size: 16px;
    line-height: 1.8;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   OTHER FEATURES SECTION
   ============================================ */

.other-features-section {
    text-align: center;
    margin-top: 0px;
}

.features-grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-category {
    text-align: left;
}

.feature-category-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: block;
}

.feature-item h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
    display: block;
    width: 100%;
}

.feature-item ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.feature-item li {
    font-size: 14px;
    line-height: 1.6;
    color: white;
    margin-bottom: 5px;
}

/* ============================================
   BY THE NUMBERS SECTION
   ============================================ */

.by-the-numbers-section {
    text-align: center;
}

.numbers-category {
    margin-bottom: 50px;
    text-align: center;
}

.numbers-subtitle {
    font-size: 28px;
    font-weight: normal;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.number-circle {
    width: 135px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.circle-number {
    width: 90px;
    height: 90px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    color: #00FFFF;
}

.circle-label {
    font-size: 12px;
    color: white;
    text-align: center;
    max-width: 120px;
    line-height: 1.3;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    text-align: center;
    position: relative;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.admin-testimonial-btn {
    position: absolute;
    top: 0;
    right: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-testimonial-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.testimonial-author {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.testimonial-divider {
    width: 60px;
    height: 2px;
    background: white;
    margin: 0 auto 30px;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    font-style: italic;
    margin: 0 0 30px 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    text-align: center;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1;
    max-width: 300px;
    padding: 60px 40px;
    background: transparent;
    border: 2px solid white;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    transition: none !important; /* Force remove all transitions */
    transform: none !important; /* Prevent any transforms */
}

.pricing-card:hover {
    /* Explicitly prevent any hover effects */
    border-color: white;
    background: transparent;
    transform: none !important;
    box-shadow: none;
}

.pricing-plan-name {
    font-size: 28px;
    font-weight: normal;
    color: white;
    margin: 0;
}

.pricing-price {
    font-size: 48px;
    font-weight: bold;
    color: white;
}

.pricing-note {
    font-size: 14px;
    color: white;
    margin: -20px 0 0 0;
}

.pricing-subscribe-btn {
    padding: 12px 40px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 0;
    font-size: 16px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.pricing-subscribe-btn:hover {
    background: transparent; /* Keep transparent on hover */
    border-color: #00FFFF; /* Cyan outline on hover */
    color: white;
}

/* ============================================
   CTA & ACCESS CODE SECTION
   ============================================ */

.cta-section {
    text-align: center;
    margin: 60px 0 30px;
}

.enter-library-btn {
    padding: 15px 50px;
    background: #00FFFF;
    color: black;
    border: none;
    border-radius: 0;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.enter-library-btn:hover {
    background: #00CCCC;
    transform: translateY(-2px);
}

.access-code-section {
    text-align: center;
    margin-bottom: 40px;
}

.access-code-btn {
    padding: 12px 30px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 0;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.access-code-btn:hover {
    background: white;
    color: black;
}

.btn-arrow {
    font-size: 20px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .landing-content {
        padding: 60px 60px;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
    }


    .title-noesis,
    .title-performance,
    .title-libraries {
        font-size: 48px;
    }


    .features-grid-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .numbers-grid {
        gap: 12px;
        max-width: 950px;
    }
    
    .number-circle {
        width: 100px;
    }

    .circle-number {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .landing-content {
        padding: 40px 20px;
    }

    .section-divider {
        margin: 30px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .title-noesis,
    .title-performance,
    .title-libraries {
        font-size: 36px;
    }

    .library-tabs {
        flex-direction: column;
    }

    .numbers-grid {
        gap: 10px;
        max-width: 650px;
    }
    
    .number-circle {
        width: 85px;
    }

    .circle-number {
        width: 65px;
        height: 65px;
        font-size: 22px;
    }

    .circle-label {
        font-size: 11px;
        max-width: 100px;
    }
}

