html {
    scroll-behavior: smooth;
}

/* General Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* Decorative Elements */
.decorative-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.decoration {
    position: absolute;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.decoration svg {
    width: 100%;
    height: 100%;
    display: block;
}

.decoration-1 { top: 10%; left: 5%; width: 80px; height: 80px; animation-delay: 0s; }
.decoration-2 { top: 35%; left: 15%; width: 50px; height: 50px; animation-delay: 0.5s; }
.decoration-3 { top: 60%; left: 8%; width: 60px; height: 60px; animation-delay: 1s; }
.decoration-4 { top: 85%; left: 20%; width: 50px; height: 50px; animation-delay: 1.5s; }
.decoration-5 { top: 50%; left: 2%; width: 45px; height: 45px; animation-delay: 2s; }
.decoration-6 { top: 15%; left: 25%; width: 55px; height: 55px; animation-delay: 2.5s; }
.decoration-7 { top: 70%; left: 22%; width: 40px; height: 40px; animation-delay: 3s; }
.decoration-8 { top: 40%; left: 28%; width: 40px; height: 40px; animation-delay: 3.5s; }
.decoration-9 { top: 90%; left: 10%; width: 60px; height: 60px; animation-delay: 4s; }
.decoration-10 { top: 12%; right: 5%; width: 80px; height: 80px; animation-delay: 0.3s; }
.decoration-11 { top: 38%; right: 18%; width: 55px; height: 55px; animation-delay: 0.8s; }
.decoration-12 { top: 65%; right: 8%; width: 50px; height: 50px; animation-delay: 1.3s; }
.decoration-13 { top: 88%; right: 22%; width: 60px; height: 60px; animation-delay: 1.8s; }
.decoration-14 { top: 45%; right: 3%; width: 55px; height: 55px; animation-delay: 2.3s; }
.decoration-15 { top: 20%; right: 25%; width: 50px; height: 60px; animation-delay: 2.8s; }
.decoration-16 { top: 75%; right: 15%; width: 50px; height: 60px; animation-delay: 3.3s; }
.decoration-17 { top: 55%; right: 28%; width: 50px; height: 50px; animation-delay: 3.8s; }
.decoration-18 { top: 92%; right: 5%; width: 45px; height: 45px; animation-delay: 4.3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

h1, h2, h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #000;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
}

a {
    text-decoration: none;
    color: #000;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Header */
header {
    background: #fff;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: none;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.logo-link {
    text-decoration: none;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #000;
}

header .logo svg {
    width: 40px;
    height: 40px;
}

header ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

header ul a {
    color: #000;
    font-weight: 500;
    transition: opacity 0.3s ease;
    font-family: 'Inter', sans-serif;
}

header ul a:hover {
    opacity: 0.7;
}

.cta-button {
    background: #000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.3s ease;
    box-shadow: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    opacity: 0.8;
    transform: none;
    box-shadow: none;
    color: #fff;
}

/* Hero Section */
#hero {
    background: transparent;
    color: #000;
    padding: 6rem 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

#hero .hero-content {
    max-width: 600px;
    text-align: left;
}

#hero h1 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #000;
}

#hero h2 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: #000;
}

#hero .hero-image img {
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #000;
}

#hero .cta-button {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Features Section */
#features {
    padding: 5rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

#features h2 {
    margin-bottom: 4rem;
    color: #000;
}

.feature-cards {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.feature-cards .card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    flex-basis: 30%;
    min-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.feature-cards .card h3 {
    color: #000;
    margin-bottom: 1rem;
}

.feature-cards .card p {
    color: #333;
}

/* How It Works Section */
#how-it-works {
    padding: 5rem 0;
    background: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

#how-it-works h2 {
    margin-bottom: 4rem;
    color: #000;
}

.how-it-works-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex-basis: 50%;
    min-width: 300px;
}

.steps .step {
    text-align: left;
}

.steps .step h3 {
    color: #000;
}

.steps .step p {
    color: #333;
}

.steps .step .mentor-clarification {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.how-it-works-image img {
    max-width: 500px;
    border-radius: 12px;
}

.steps .step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Storyboard Section */
#storyboard {
    padding: 5rem 0;
    text-align: center;
    background: transparent;
    position: relative;
    z-index: 1;
}

#storyboard h2 {
    margin-bottom: 4rem;
    color: #000;
}

.storyboard-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    position: relative;
}

.storyboard-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #ddd;
    z-index: -1;
}

.story-step {
    flex-basis: 22%;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-step .icon {
    margin-bottom: 1.5rem;
    background: #fff;
    padding: 0.5rem;
    border-radius: 50%;
    color: #000;
    border: 2px solid #ddd;
}

.story-step .icon svg {
    width: 48px;
    height: 48px;
}

.story-step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #000;
}

.story-step p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

/* Testimonials Section */
#testimonials {
    padding: 5rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

#testimonials h2 {
    margin-bottom: 4rem;
    color: #000;
}

.testimonial-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    width: 80%;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.testimonial-cards .card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    flex-basis: 45%;
    min-width: 300px;
}

.testimonial-cards blockquote {
    font-style: italic;
    margin: 0 0 1rem 0;
    color: #333;
}

.testimonial-cards cite {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
#cta {
    background: transparent;
    color: #000;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

#cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #000;
}

#cta p {
    color: #333;
    margin-bottom: 2rem;
}

#cta .cta-button {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 2.5rem;
    border: none;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.close-button {
    color: #999;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: #000;
}

.modal-content p {
    margin-bottom: 1.5rem;
    color: #666;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-content input[type="email"] {
    padding: 0.875rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.modal-content input[type="email"]:focus {
    border-color: #000;
}

.modal-content button {
    background: #000;
    color: #fff;
    padding: 0.875rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.modal-content button:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    #hero {
        flex-direction: column;
        gap: 2rem;
        padding: 4rem 0;
    }

    #hero .hero-content {
        text-align: center;
    }

    .decoration {
        width: 30px !important;
        height: 30px !important;
    }

    header nav {
        width: 95%;
    }

    header ul {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .feature-cards .card,
    .testimonial-cards .card {
        flex-basis: 100%;
    }

    .storyboard-steps::before {
        display: none;
    }
}
