/* Лендинг для продавцов — seller_landing.php */
.slr-land {
    max-width: 1180px;
    margin: 0 auto;
    padding-bottom: 64px;
}
.slr-land__crumbs {
    margin: 12px 0 20px;
    font-size: 0.82rem;
    opacity: 0.75;
}
.slr-land__crumbs a { color: #8aa9ff; text-decoration: none; }
.slr-land__crumbs a:hover { text-decoration: underline; }

.slr-land-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    padding: 36px 32px;
    margin-bottom: 28px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(58, 207, 107, 0.14) 0%, transparent 42%),
        linear-gradient(220deg, rgba(72, 132, 255, 0.08) 0%, transparent 48%),
        #141c28;
    border: 1px solid rgba(134, 239, 172, 0.22);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}
.slr-land-hero__glow {
    position: absolute;
    top: -40%;
    right: -10%;
    width: 50%;
    height: 130%;
    background: radial-gradient(circle, rgba(58, 207, 107, 0.16), transparent 68%);
    pointer-events: none;
}
.slr-land-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(58, 207, 107, 0.25), rgba(42, 160, 82, 0.15));
    border: 1px solid rgba(134, 239, 172, 0.35);
    color: #b8ffd1;
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 14px;
}
.slr-land-hero__title {
    font-size: clamp(1.75rem, 4.5vw, 2.4rem);
    font-weight: 500;
    margin: 0 0 12px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.slr-land-hero__lead {
    font-size: 1.02rem;
    opacity: 0.9;
    line-height: 1.55;
    margin: 0 0 18px;
    max-width: 540px;
}
.slr-land-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}
.slr-land-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.18s;
}
.slr-land-btn--primary {
    background: linear-gradient(135deg, #86efac, #3acf6b);
    color: #06210f;
    box-shadow: 0 10px 28px rgba(58, 207, 107, 0.28);
}
.slr-land-btn--primary:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}
.slr-land-btn--outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #eef2f6;
}
.slr-land-btn--outline:hover {
    border-color: #4884ff60;
    background: rgba(72, 132, 255, 0.1);
}
.slr-land-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    font-size: 0.78rem;
    opacity: 0.7;
}
.slr-land-hero__meta i { color: #86efac; margin-right: 4px; }

.slr-land-hero__card {
    position: relative;
    z-index: 1;
    background: rgba(10, 15, 26, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 22px;
}
.slr-land-hero__card h3 {
    margin: 0 0 14px;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
}
.slr-land-mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.slr-land-mini-stat {
    padding: 14px;
    border-radius: 14px;
    background: #0f1722;
    border: 1px solid #ffffff0a;
}
.slr-land-mini-stat strong {
    display: block;
    font-size: 1.35rem;
    color: #86efac;
    margin-bottom: 4px;
}
.slr-land-mini-stat span { font-size: 0.72rem; opacity: 0.65; }

.slr-land-section {
    margin-bottom: 32px;
}
.slr-land-section__head {
    margin-bottom: 20px;
}
.slr-land-section__head h2 {
    margin: 0 0 8px;
    font-size: 1.35rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.slr-land-section__head h2 i { color: #86efac; }
.slr-land-section__head p {
    margin: 0;
    opacity: 0.72;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 720px;
}

.slr-land-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.slr-land-benefit {
    padding: 20px;
    border-radius: 18px;
    background: #131c29;
    border: 1px solid #ffffff0a;
    transition: 0.2s;
}
.slr-land-benefit:hover {
    border-color: rgba(134, 239, 172, 0.25);
    transform: translateY(-2px);
}
.slr-land-benefit__ic {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(58, 207, 107, 0.12);
    border: 1px solid rgba(134, 239, 172, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #86efac;
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.slr-land-benefit h3 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 600;
}
.slr-land-benefit p {
    margin: 0;
    font-size: 0.82rem;
    opacity: 0.78;
    line-height: 1.5;
}

.slr-land-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    counter-reset: slrstep;
}
.slr-land-step {
    padding: 18px 14px;
    border-radius: 16px;
    background: #131c29;
    border: 1px solid #ffffff0a;
    position: relative;
}
.slr-land-step::before {
    counter-increment: slrstep;
    content: counter(slrstep);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #86efac, #3acf6b);
    color: #06210f;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.slr-land-step h4 {
    margin: 0 0 6px;
    font-size: 0.85rem;
    font-weight: 600;
}
.slr-land-step p {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.72;
    line-height: 1.45;
}

.slr-land-finance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.slr-land-panel {
    padding: 22px;
    border-radius: 20px;
    background: #131c29;
    border: 1px solid #ffffff0a;
}
.slr-land-panel h3 {
    margin: 0 0 14px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.slr-land-panel h3 i { color: #86efac; }
.slr-land-rate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ffffff08;
    font-size: 0.88rem;
}
.slr-land-rate-row:last-child { border-bottom: none; }
.slr-land-rate-row strong { color: #86efac; font-size: 1.05rem; }
.slr-land-example {
    margin-top: 14px;
    padding: 14px;
    border-radius: 14px;
    background: #0a0f1a;
    border: 1px dashed #ffffff15;
    font-size: 0.82rem;
    line-height: 1.55;
    opacity: 0.88;
}
.slr-land-payout-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}
.slr-land-payout-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 12px;
    background: #0a0f1a;
    border: 1px solid #ffffff12;
    font-size: 0.78rem;
}
.slr-land-payout-tag i { color: #8aa9ff; }

.slr-land-hold {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 184, 61, 0.08);
    border: 1px solid rgba(255, 184, 61, 0.25);
    font-size: 0.82rem;
    line-height: 1.5;
    color: #ffd080;
}
.slr-land-hold i { margin-right: 6px; }

.slr-land-promo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.slr-land-promo-card {
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(72, 132, 255, 0.08), #131c29);
    border: 1px solid #ffffff0a;
}
.slr-land-promo-card h4 {
    margin: 0 0 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.slr-land-promo-card h4 i { color: #8aa9ff; }
.slr-land-promo-card p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.5;
}
.slr-land-promo-card ul {
    margin: 8px 0 0;
    padding-left: 18px;
    font-size: 0.78rem;
    opacity: 0.85;
    line-height: 1.55;
}

.slr-land-rules {
    display: grid;
    gap: 10px;
}
.slr-land-rule {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #131c29;
    border: 1px solid #ffffff0a;
    font-size: 0.84rem;
    line-height: 1.5;
}
.slr-land-rule i {
    color: #ffb83d;
    margin-top: 2px;
    flex-shrink: 0;
}

.slr-land-faq details {
    border: 1px solid #ffffff0a;
    border-radius: 14px;
    background: #131c29;
    margin-bottom: 8px;
    overflow: hidden;
}
.slr-land-faq summary {
    padding: 14px 16px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    list-style: none;
}
.slr-land-faq summary::-webkit-details-marker { display: none; }
.slr-land-faq details[open] summary {
    border-bottom: 1px solid #ffffff0a;
    color: #86efac;
}
.slr-land-faq details p {
    margin: 0;
    padding: 14px 16px;
    font-size: 0.82rem;
    opacity: 0.82;
    line-height: 1.55;
}

.slr-land-register {
    padding: 28px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(58, 207, 107, 0.12), transparent 50%),
        #131c29;
    border: 1px solid rgba(134, 239, 172, 0.28);
    text-align: center;
}
.slr-land-register h2 {
    margin: 0 0 10px;
    font-size: 1.4rem;
}
.slr-land-register > p {
    margin: 0 0 20px;
    opacity: 0.8;
    font-size: 0.9rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.slr-land-register-form {
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
    display: grid;
    gap: 12px;
}
.slr-land-register-form label {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.8;
    display: block;
    margin-bottom: 4px;
}
.slr-land-register-form input,
.slr-land-register-form textarea {
    width: 100%;
    background: #0a0f1a;
    border: 1px solid #2a3545;
    border-radius: 12px;
    padding: 11px 14px;
    color: #eef2f6;
    font-size: 0.9rem;
    font-family: inherit;
    box-sizing: border-box;
}
.slr-land-register-form textarea { min-height: 80px; resize: vertical; }

.slr-land-alert {
    max-width: 480px;
    margin: 0 auto 16px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
}
.slr-land-alert--ok {
    background: #3acf6b18;
    border: 1px solid #3acf6b45;
    color: #b8ffd1;
}
.slr-land-alert--err {
    background: #ff475718;
    border: 1px solid #ff475745;
    color: #ffc9c9;
}

@media (max-width: 1000px) {
    .slr-land-hero { grid-template-columns: 1fr; }
    .slr-land-benefits { grid-template-columns: repeat(2, 1fr); }
    .slr-land-steps { grid-template-columns: repeat(2, 1fr); }
    .slr-land-finance { grid-template-columns: 1fr; }
    .slr-land-promo { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .slr-land-benefits,
    .slr-land-steps { grid-template-columns: 1fr; }
    .slr-land-hero { padding: 24px 18px; }
}
