:root {
    --primary: #B6CE29;
    --primary-dark: #8BA81F;
    --background: #FAFCF5;
    --text-main: #2D3728;
    --text-muted: #64745D;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Fredoka', sans-serif; }

.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(182, 206, 41, 0.9) 0%, rgba(139, 168, 31, 0.85) 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #F2F6E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-green {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.float-animation { animation: float 4s ease-in-out infinite; }
.float-delay-1 { animation-delay: 0.5s; }
.float-delay-2 { animation-delay: 1s; }

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

.animate-marquee { animation: marquee 80s linear infinite; }

.depth-card {
    position: relative;
}

.depth-card::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: var(--primary);
    opacity: 0.2;
    border-radius: inherit;
    z-index: -1;
}

.partner-logo-box {
    border-radius: 1rem;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    height: 110px;
}

.partner-logo-box img {
    max-height: 80px;
    max-width: 220px;
    object-fit: contain;
}

.flow-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 8px 20px rgba(182, 206, 41, 0.3);
    flex-shrink: 0;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .icon-circle {
        width: 48px;
        height: 48px;
    }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 1.75rem;
    }
}

/* FAQ Section Styles */
.faq-item {
    background: white;
    border-radius: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(182, 206, 41, 0.1);
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(182, 206, 41, 0.1);
    border-color: rgba(182, 206, 41, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.faq-q-badge {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    flex-grow: 1;
    margin: 0;
    line-height: 1.5;
}

.faq-icon {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    padding: 0 1.5rem 0 4.25rem;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 640px) {
    .faq-answer {
        padding-left: 1.5rem;
    }
}
