* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0c10;
    color: #eef2ff;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* стеклянные карточки */
.glass-card {
    background: rgba(20, 24, 35, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 229, 160, 0.2);
    border-radius: 32px;
    transition: all 0.2s ease;
}

/* акцентный цвет */
.accent {
    color: #00e5a0;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #00e5a0 0%, #00b87a 100%);
    color: #0a0c10;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 229, 160, 0.25);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 229, 160, 0.4);
    background: linear-gradient(135deg, #0af5aa 0%, #00d48a 100%);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    border: 1.5px solid #00e5a0;
    color: #00e5a0;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: rgba(0, 229, 160, 0.1);
    transform: translateY(-2px);
}

/* header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 18px 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, #fff, #00e5a0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-link {
    color: #eef2ff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.05);
    transition: 0.2s;
}

.nav-link:hover {
    background: #00e5a0;
    color: #0a0c10;
}

/* hero */
.hero {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 32px;
}

.form-card {
    background: rgba(20, 24, 35, 0.8);
    backdrop-filter: blur(16px);
    border-radius: 32px;
    padding: 32px;
    border: 1px solid rgba(0, 229, 160, 0.3);
}

.form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-card p {
    color: #9ca3af;
    margin-bottom: 24px;
}

input {
    width: 100%;
    padding: 14px 18px;
    background: #1e1f29;
    border: 1px solid #2d2f3a;
    border-radius: 20px;
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
    outline: none;
    transition: 0.2s;
}

input:focus {
    border-color: #00e5a0;
    box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.2);
}

label {
    font-size: 0.85rem;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.required {
    color: #00e5a0;
}

/* секции */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-sub {
    text-align: center;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto 48px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.value-card {
    background: rgba(20, 24, 35, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.2s;
}

.value-card:hover {
    border-color: rgba(0, 229, 160, 0.4);
    transform: translateY(-4px);
}

.card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00e5a0;
    font-weight: 600;
}

.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;
}

.income-list li::before {
    content: "✓";
    color: #00e5a0;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 40px;
}

.step {
    background: #13151e;
    border-radius: 40px;
    padding: 32px 24px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    border: 1px solid #242633;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #00e5a0;
    color: #0a0c10;
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.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) invert(1);
    opacity: 0.7;
    transition: 0.2s;
}

.payouts-logos img:hover {
    opacity: 1;
}

/* faq */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
}

details {
    background: #13151e;
    padding: 20px 24px;
    border-radius: 24px;
    border: 1px solid #242633;
    cursor: pointer;
}

summary {
    font-weight: 700;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    font-size: 1.5rem;
    color: #00e5a0;
}

details[open] summary::after {
    content: "−";
}

.faq-answer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #242633;
    color: #b0b8c9;
}

/* cta bottom */
.cta-bottom {
    background: linear-gradient(145deg, #0b0e14, #07090e);
    text-align: center;
    border-radius: 64px;
    margin: 40px auto 20px;
    padding: 60px 24px;
}

/* footer */
.footer {
    background: #05070a;
    border-top: 1px solid #1a1d26;
    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, #fff, #00e5a0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 12px;
}

.footer-nav a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.2s;
}

.footer-nav a:hover {
    color: #00e5a0;
}

.footer-contact p {
    margin-bottom: 8px;
    color: #9ca3af;
}

.copy {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #1a1d26;
    color: #6b7280;
    font-size: 0.85rem;
}

@media (max-width: 800px) {
    .hero-grid, .income-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.3rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .container {
        padding: 0 20px;
    }
}

#successMessage {
    margin-top: 20px; padding: 15px; background: #00e5a0; color: #0a0c15; border-radius: 30px; font-weight: 600; text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
#successMessage.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition: opacity 1s, transform .5s;
    transform: translate(-50%, -50%);
}