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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #2d4a3e;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #E8F5E8, #B8E8B8);
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 20px;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 10;
    position: relative;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-headline {
    font-family: 'Fredoka', cursive;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2d4a3e;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: #4a7c59;
    line-height: 1.4;
}

.cta-button {
    font-family: 'Fredoka', cursive;
    background: linear-gradient(45deg, #90EE90, #98FB98);
    color: #2d4a3e;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(144,238,144,0.4);
    text-transform: none;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(144,238,144,0.6);
    background: linear-gradient(45deg, #98FB98, #90EE90);
}

.slu-container {
    text-align: center;
    animation: slideInRight 1s ease-out;
}

.slu-video {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.slu-video:hover {
    transform: scale(1.05);
}

/* Jungle Decorative Elements */
.jungle-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 40px;
    height: 60px;
    background: linear-gradient(45deg, #90EE90, #6fa373);
    border-radius: 0 100% 0 100%;
    opacity: 0.4;
}

.leaf-1 {
    left: 10%;
    animation: fall 8s linear infinite;
    animation-delay: 0s;
}

.leaf-2 {
    left: 25%;
    animation: fall 10s linear infinite;
    animation-delay: 2s;
    transform: scale(0.8);
}

.leaf-3 {
    left: 50%;
    animation: fall 12s linear infinite;
    animation-delay: 4s;
    transform: scale(1.2);
}

.leaf-4 {
    left: 70%;
    animation: fall 9s linear infinite;
    animation-delay: 1s;
    transform: scale(0.9);
}

.leaf-5 {
    left: 85%;
    animation: fall 11s linear infinite;
    animation-delay: 3s;
    transform: scale(0.7);
}

.leaf-6 {
    left: 40%;
    animation: fall 13s linear infinite;
    animation-delay: 5s;
    transform: scale(1.1);
}

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

.how-it-works {
    background: linear-gradient(135deg, #a8e6cf 0%, #dcedc1 50%, #ffd3a5 100%);
}

.why-slu {
    background: linear-gradient(135deg, #2d5a3d 0%, #4a7c59 50%, #6fa373 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-slu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="30" r="1.5" fill="%23ffffff" opacity="0.1"/><circle cx="60" cy="70" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="30" cy="80" r="1" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.why-slu .container {
    position: relative;
    z-index: 2;
}

.financial-test {
    background: linear-gradient(135deg, #E8F5E8, #B8E8B8);
    color: #2d4a3e;
}

.join-nap-squad {
    background: #F0F9F0;
    color: #2d4a3e;
}

h2 {
    font-family: 'Fredoka', cursive;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #2d4a3e;
}

.why-slu h2 {
    color: #90EE90;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.why-slu h2::after {
    content: '🌿';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.7;
}

.why-slu h2::before {
    content: '🌿';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
    font-size: 2rem;
    opacity: 0.7;
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.95);
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    backdrop-filter: blur(10px);
}

.step:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #ff6b6b;
    box-shadow: 0 12px 35px rgba(255,107,107,0.3);
}

.step-number {
    font-family: 'Fredoka', cursive;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff6b6b, #fd79a8, #fdcb6e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

.step h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2d4a3e;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Why Slu */
.why-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-content {
    background: rgba(255,255,255,0.15);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.why-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    position: relative;
}

.why-content::before {
    content: '🦥';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 3rem;
    opacity: 0.6;
}

.why-content::after {
    content: '🌴';
    position: absolute;
    bottom: -20px;
    right: 30px;
    font-size: 2.5rem;
    opacity: 0.6;
}

/* Financial Test */
.test-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #4a7c59;
}

.test-embed {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.test-note {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.test-note a {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
}

.test-note a:hover {
    text-decoration: underline;
}

/* Join Nap Squad */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #4a7c59;
}

.email-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

#email {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #B8E8B8;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    background: white;
}

.submit-btn {
    font-family: 'Fredoka', cursive;
    background: #90EE90;
    color: #2d4a3e;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    background: #98FB98;
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #4a7c59;
}

/* Footer */
.footer {
    background: #2d4a3e;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes fall {
    0% {
        top: -100px;
        transform: translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    10% {
        opacity: 0.8;
    }
    20% {
        transform: translateX(10px) rotate(20deg);
    }
    40% {
        transform: translateX(-10px) rotate(-20deg);
    }
    60% {
        transform: translateX(15px) rotate(30deg);
    }
    80% {
        transform: translateX(-5px) rotate(-10deg);
    }
    90% {
        opacity: 0.6;
    }
    100% {
        top: calc(100% + 100px);
        transform: translateX(0px) rotate(0deg);
        opacity: 0;
    }
}

@keyframes slideInLeft {
    0% { 
        opacity: 0;
        transform: translateX(-50px);
    }
    100% { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% { 
        opacity: 0;
        transform: translateX(50px);
    }
    100% { 
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .leaf {
        width: 30px;
        height: 45px;
        opacity: 0.3;
    }
    
    .slu-video {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 15px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .slu-video {
        max-height: 250px;
    }
}
