/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #1a1f2e;
    line-height: 1.5;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glass Cards - Light Theme */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.glass-card:hover {
    box-shadow: 0 20px 25px -12px rgba(34, 197, 94, 0.15);
    transform: translateY(-2px);
}

/* Accent Color - Fresh Green */
.accent {
    color: #22c55e;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, #2dd4bf 0%, #22c55e 100%);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    border: 2px solid #22c55e;
    color: #22c55e;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
    border-color: #16a34a;
    color: #16a34a;
}

/* Header - Light Theme */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.header-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.header-inner nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
    background: linear-gradient(135deg, #1a1f2e 0%, #22c55e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 40px;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 60%;
}

.nav-link:hover {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.08);
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Form Card */
.form-card {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(16px);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #1a1f2e;
}

.form-card p {
    color: #64748b;
    margin-bottom: 24px;
}

/* Inputs - Light Theme */
input, textarea {
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    color: #1a1f2e;
    font-size: 1rem;
    margin-bottom: 20px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

input:focus, textarea:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

label {
    font-size: 0.875rem;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: #334155;
}

.required {
    color: #22c55e;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-sub {
    text-align: center;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1.1rem;
}

/* Grid 4 columns */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

/* Value Cards */
.value-card {
    background: white;
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 32px;
    border: 1px solid rgba(34, 197, 94, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    border-color: rgba(34, 197, 94, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -12px rgba(34, 197, 94, 0.2);
}

.card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #22c55e;
    font-weight: 700;
}

/* Income Section */
.income-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.income-list {
    list-style: none;
    margin: 28px 0;
}

.income-list li {
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
    font-weight: 500;
    color: #334155;
}

.income-list li::before {
    content: "✓";
    color: #22c55e;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Steps */
.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 40px;
}

.step {
    background: white;
    border-radius: 40px;
    padding: 40px 28px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    border: 1px solid rgba(34, 197, 94, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.step:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 20px 25px -12px rgba(34, 197, 94, 0.15);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    font-weight: 800;
    font-size: 1.8rem;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 14px rgba(34, 197, 94, 0.25);
}

.step h3 {
    margin-bottom: 12px;
    color: #1a1f2e;
}

.step p {
    color: #64748b;
}

/* Payouts Logos */
.payouts-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 48px;
    margin-top: 40px;
}

.payouts-logos img {
    flex: 1;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(35%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(85%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.payouts-logos img:hover {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(58%) sepia(57%) saturate(400%) hue-rotate(86deg) brightness(95%) contrast(90%);
    transform: scale(1.05);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
}

details {
    background: white;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(34, 197, 94, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

details:hover {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

summary {
    font-weight: 700;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a1f2e;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    font-size: 1.5rem;
    color: #22c55e;
    font-weight: 400;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: "−";
}

.faq-answer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    line-height: 1.6;
}

/* CTA Bottom */
.cta-bottom {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    text-align: center;
    border-radius: 64px;
    margin: 40px auto 20px;
    padding: 60px 32px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05);
}

.cta-bottom p {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a1f2e 0%, #22c55e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Footer - Light Theme */
.footer {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 48px 0 24px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1a1f2e 0%, #22c55e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 12px;
}

.footer-nav a {
    display: block;
    color: #64748b;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #22c55e;
    transform: translateX(4px);
}

.footer-contact p {
    margin-bottom: 8px;
    color: #64748b;
}

.footer-contact a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #16a34a !important;
}

.copy {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Success Message */
#successMessage {
    margin-top: 20px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border-radius: 60px;
    font-weight: 600;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 20px 35px -12px rgba(34, 197, 94, 0.3);
    font-size: 1rem;
}

#successMessage.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 800px) {
    .hero-grid, .income-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 20px;
    }

    .form-card {
        padding: 28px;
    }

    .cta-bottom p {
        font-size: 1.5rem;
    }

    .steps {
        flex-direction: column;
        gap: 20px;
    }

    .step {
        min-width: auto;
    }

    .payouts-logos {
        gap: 24px;
    }

    .grid-4 {
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .header-inner {
        flex-direction: column;
        gap: 16px;
    }

    .btn-primary, .btn-outline {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .value-card {
        padding: 24px;
    }
}

/* Hover Effects & Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-card, .step, .form-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2dd4bf 0%, #22c55e 100%);
}