/* Neo Landing Page */
.neo-landing {
    background: var(--background);
    width: 100%;
}

/* Hero Section */
.neo-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pink-2) 0%, var(--purple-2) 50%, var(--blue-2) 100%);
}

.neo-hero-content {
    max-width: 800px;
    z-index: 10;
    text-align: center;
}

.neo-hero-badge {
    display: inline-block;
    background: var(--yellow-1);
    color: var(--n-1);
    font-size: 1rem;
    font-weight: 800;
    padding: 0.5rem 1.5rem;
    border: 3px solid var(--n-1);
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: 4px 4px 0 var(--n-1);
}

.neo-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--n-1);
    margin: 0 0 2rem 0;
    text-transform: uppercase;
}

.neo-highlight {
    position: relative;
    display: inline-block;
    padding: 0 0.5rem;
}

.neo-highlight-yellow {
    background: var(--yellow-1);
    border: 4px solid var(--n-1);
    box-shadow: 6px 6px 0 var(--n-1);
    transform: rotate(-2deg);
}

.neo-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--n-2);
    margin: 0 0 3rem 0;
    font-weight: 600;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.neo-hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.neo-btn-hero {
    font-size: 1.25rem;
    font-weight: 800;
    padding: 1.25rem 3rem;
    border: 4px solid var(--n-1);
    border-radius: 12px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 6px 6px 0 var(--n-1);
}

.neo-btn-hero-primary {
    background: var(--purple-1);
    color: var(--n-1);
}

.neo-btn-hero-primary:hover {
    background: var(--green-1);
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0 var(--n-1);
}

.neo-btn-hero-secondary {
    background: var(--white);
    color: var(--n-1);
}

.neo-btn-hero-secondary:hover {
    background: var(--yellow-1);
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0 var(--n-1);
}

/* Floating Cards */
.neo-hero-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.neo-floating-card {
    position: absolute;
    background: var(--white);
    border: 4px solid var(--n-1);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 8px 8px 0 var(--n-1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.neo-card-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.neo-card-2 {
    top: 60%;
    right: 8%;
    animation-delay: 1s;
}

.neo-card-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.neo-card-icon {
    font-size: 2.5rem;
}

.neo-card-text {
    display: flex;
    flex-direction: column;
}

.neo-card-text strong {
    font-size: 2rem;
    font-weight: 900;
    color: var(--n-1);
    line-height: 1;
}

.neo-card-text span {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--n-3);
    text-transform: uppercase;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Mentorship CTA Section */
.neo-mentorship-cta {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: var(--background);
}

.neo-mentorship-content {
    background: var(--yellow-1);
    border: 4px solid var(--n-1);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 12px 12px 0 var(--n-1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.neo-mentorship-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.neo-mentorship-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--n-1);
    margin: 0;
    text-transform: uppercase;
    line-height: 1.1;
}

.neo-mentorship-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--n-2);
    font-weight: 600;
    margin: 0;
}

.neo-btn-mentorship {
    display: inline-block;
    background: var(--n-1);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 800;
    padding: 1.125rem 2.5rem;
    border: 4px solid var(--n-1);
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
    width: fit-content;
}

.neo-btn-mentorship:hover {
    background: var(--purple-1);
    color: var(--n-1);
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 rgba(0,0,0,0.3);
}

.neo-mentorship-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.neo-feature-card {
    background: var(--white);
    border: 4px solid var(--n-1);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 6px 6px 0 var(--n-1);
    transition: all 0.3s ease;
}

.neo-feature-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--n-1);
}

.neo-feature-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
    display: inline-block;
    vertical-align: middle;
}

.neo-feature-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--n-1);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
}

.neo-feature-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--n-3);
    font-weight: 600;
    margin: 0;
}

/* Section Styles */
.neo-latest-section,
.neo-courses-section,
.neo-books-cta,
.neo-featured-course,
.neo-final-cta {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.neo-section-label {
    display: inline-block;
    background: var(--pink-1);
    color: var(--n-1);
    font-size: 0.875rem;
    font-weight: 800;
    padding: 0.375rem 1rem;
    border: 2px solid var(--n-1);
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Use specific class for homepage titles to avoid conflicts */
.neo-latest-section .neo-section-title,
.neo-courses-section .neo-section-title,
.neo-featured-course .neo-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--n-1);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}

.neo-section-desc {
    font-size: 1.125rem;
    color: var(--n-3);
    font-weight: 600;
    margin: 0 0 2rem 0;
    max-width: 600px;
}

.neo-section-cta {
    text-align: center;
    margin-top: 3rem;
}

.neo-btn-section {
    display: inline-block;
    background: var(--white);
    color: var(--n-1);
    font-size: 1.125rem;
    font-weight: 800;
    padding: 1rem 2.5rem;
    border: 4px solid var(--n-1);
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0 var(--n-1);
}

.neo-btn-section:hover {
    background: var(--purple-1);
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--n-1);
}

/* Latest Posts Grid */
.neo-latest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.neo-latest-card {
    background: var(--white);
    border: 4px solid var(--n-1);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 8px 8px 0 var(--n-1);
}

.neo-latest-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 var(--n-1);
}

.neo-latest-card-1:hover {
    border-color: var(--purple-1);
}

.neo-latest-card-2:hover {
    border-color: var(--green-1);
}

.neo-latest-card-3:hover {
    border-color: var(--yellow-1);
}

.neo-latest-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.neo-latest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.neo-latest-card:hover .neo-latest-image img {
    transform: scale(1.1);
}

.neo-latest-content {
    padding: 2rem;
}

.neo-latest-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.neo-latest-date,
.neo-latest-duration {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--n-3);
}

.neo-latest-title {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.3;
    color: var(--n-1);
    margin: 0;
    text-transform: uppercase;
}

/* Courses Section */
.neo-courses-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.neo-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.neo-course-item {
    background: var(--white);
    border: 4px solid var(--n-1);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 6px 6px 0 var(--n-1);
    display: flex;
    flex-direction: column;
}

.neo-course-item:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--n-1);
}

.neo-course-img {
    height: 180px;
    overflow: hidden;
}

.neo-course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.neo-course-item:hover .neo-course-img img {
    transform: scale(1.08);
}

.neo-course-name {
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--n-1);
    margin: 0;
    text-transform: uppercase;
    line-height: 1.3;
    flex: 1;
    transition: color 0.3s ease;
}

.neo-course-item:hover .neo-course-name {
    color: var(--purple-1);
}

/* Books CTA Section */
.neo-books-cta {
    background: var(--green-1);
    position: relative;
    overflow: hidden;
}

.neo-books-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.neo-books-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--n-1);
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    line-height: 1.1;
}

.neo-books-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--n-2);
    font-weight: 600;
    margin: 0 0 3rem 0;
}

.neo-books-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.neo-book-cta-card {
    background: var(--white);
    border: 4px solid var(--n-1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 6px 6px 0 var(--n-1);
}

.neo-book-cta-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0 var(--n-1);
}

.neo-book-cta-img {
    width: 100px;
    flex-shrink: 0;
}

.neo-book-cta-img img {
    width: 100%;
    height: auto;
    border: 3px solid var(--n-1);
    border-radius: 6px;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

.neo-book-cta-info h4 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--n-1);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
}

.neo-book-cta-link {
    font-size: 1rem;
    font-weight: 700;
    color: var(--purple-1);
}

.neo-books-visual {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    pointer-events: none;
}

.neo-visual-shape {
    position: absolute;
    border: 4px solid var(--n-1);
    opacity: 0.3;
}

.neo-shape-1 {
    width: 200px;
    height: 200px;
    background: var(--yellow-1);
    border-radius: 50%;
    top: 10%;
    right: 10%;
    animation: float 4s ease-in-out infinite;
}

.neo-shape-2 {
    width: 150px;
    height: 150px;
    background: var(--purple-1);
    border-radius: 20px;
    transform: rotate(45deg);
    bottom: 20%;
    right: 25%;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

.neo-shape-3 {
    width: 100px;
    height: 100px;
    background: var(--pink-1);
    top: 50%;
    right: 5%;
    animation: float 3.5s ease-in-out infinite;
    animation-delay: 2s;
}

/* Featured Course */
.neo-featured-header {
    text-align: center;
    margin-bottom: 3rem;
}

.neo-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.neo-featured-item {
    background: var(--white);
    border: 3px solid var(--n-1);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0 var(--n-1);
}

.neo-featured-item:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--n-1);
}

.neo-featured-img {
    height: 160px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neo-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.neo-featured-play {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--yellow-1);
    border: 3px solid var(--n-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--n-1);
    font-weight: 900;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.neo-featured-item:hover .neo-featured-play {
    transform: scale(1.2);
    background: var(--green-1);
}

.neo-featured-title {
    padding: 1.25rem;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--n-1);
    margin: 0;
    text-transform: uppercase;
    line-height: 1.3;
}

/* Final CTA */
.neo-final-cta {
    background: var(--purple-1);
    text-align: center;
}

.neo-final-content {
    max-width: 700px;
    margin: 0 auto;
}

.neo-final-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--n-1);
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    line-height: 1.1;
}

.neo-final-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--n-1);
    font-weight: 600;
    margin: 0 0 3rem 0;
}

.neo-final-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.neo-btn-final {
    font-size: 1.125rem;
    font-weight: 800;
    padding: 1.125rem 2.5rem;
    border: 4px solid var(--n-1);
    border-radius: 12px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 6px 6px 0 var(--n-1);
}

.neo-btn-final-primary {
    background: var(--white);
    color: var(--n-1);
}

.neo-btn-final-primary:hover {
    background: var(--yellow-1);
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0 var(--n-1);
}

.neo-btn-final-secondary {
    background: var(--n-1);
    color: var(--white);
}

.neo-btn-final-secondary:hover {
    background: var(--green-1);
    color: var(--n-1);
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0 var(--n-1);
}

/* Responsive */
@media (max-width: 1024px) {
    .neo-hero-title {
        font-size: 3rem;
    }
    
    .neo-latest-grid,
    .neo-courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .neo-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .neo-floating-card {
        display: none;
    }
    
    .neo-mentorship-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .neo-hero {
        min-height: auto;
        padding: 3rem 1.5rem;
    }
    
    .neo-hero-title {
        font-size: 2.25rem;
    }
    
    .neo-hero-subtitle {
        font-size: 1rem;
    }
    
    .neo-hero-cta {
        flex-direction: column;
    }
    
    .neo-btn-hero {
        font-size: 1rem;
        padding: 1rem 2rem;
        width: 100%;
    }
    
    .neo-section-title {
        font-size: 2rem;
    }
    
    .neo-latest-grid,
    .neo-courses-grid,
    .neo-featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .neo-courses-header {
        flex-direction: column;
    }
    
    .neo-books-visual {
        display: none;
    }
    
    .neo-books-title,
    .neo-final-title {
        font-size: 2.5rem;
    }
    
    .neo-final-actions {
        flex-direction: column;
    }
    
    .neo-btn-final {
        width: 100%;
    }
    
    .neo-mentorship-content {
        padding: 2rem;
    }
    
    .neo-latest-section .neo-section-title,
    .neo-courses-section .neo-section-title,
    .neo-featured-course .neo-section-title,
    .neo-books-title,
    .neo-final-title {
        font-size: 2rem;
    }
    
    .neo-mentorship-title {
        font-size: 2rem;
    }
    
    .neo-books-title,
    .neo-final-title {
        font-size: 2rem;
    }
    
    .neo-btn-mentorship {
        width: 100%;
        text-align: center;
    }
}
