/* Лендинг: кислотный маркетинг */
body { background: #14060e; }

.l-btn {
    display: inline-block; padding: 14px 30px; border: none; border-radius: 100px;
    background: linear-gradient(90deg, #ff6b35, #ff2e88); color: #fff;
    font-weight: 700; text-decoration: none; cursor: pointer; font-size: 1rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, .4); transition: .3s; text-align: center;
}
.l-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255, 46, 136, .5); }
.l-btn-big { padding: 18px 45px; font-size: 1.1rem; }
.l-btn-ghost {
    display: inline-block; padding: 14px 30px; border-radius: 100px;
    border: 2px solid rgba(255, 255, 255, .3); color: #fff; text-decoration: none;
    font-weight: 600; transition: .3s; text-align: center;
}
.l-btn-ghost:hover { border-color: #ff6b35; color: #ff6b35; }

.l-hero { padding: 60px 5% 80px; text-align: center; max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.l-badge {
    display: inline-block; padding: 8px 20px; border-radius: 100px;
    background: rgba(255, 107, 53, .15); border: 1px solid #ff6b35;
    color: #ff6b35; font-weight: 700; margin-bottom: 25px;
    animation: pulseBadge 2s infinite;
}
@keyframes pulseBadge { 50% { box-shadow: 0 0 25px rgba(255, 107, 53, .5); } }
.l-hero h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.l-hero h1 span { color: #ff6b35; }
.l-hero p { color: #c9a8b8; font-size: 1.2rem; margin-bottom: 35px; }
.l-hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.l-hero-note { color: #7ddf8a; font-size: .95rem; }

.ticker { overflow: hidden; background: linear-gradient(90deg, #ff6b35, #ff2e88); padding: 14px 0; position: relative; z-index: 1; }
.ticker-track { display: flex; gap: 50px; white-space: nowrap; width: max-content; animation: tick 25s linear infinite; font-weight: 700; }
@keyframes tick { to { transform: translateX(-50%); } }

.l-section { padding: 80px 5%; max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.l-section h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; text-align: center; margin-bottom: 50px; }

.l-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.l-card {
    background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 107, 53, .2);
    border-radius: 16px; padding: 30px; font-size: 2rem; transition: .3s;
}
.l-card b { display: block; font-size: 1.1rem; color: #fff; margin: 12px 0 8px; }
.l-card p { color: #c9a8b8; font-size: .95rem; }
.l-card:hover { transform: translateY(-6px); border-color: #ff6b35; }

.l-prices { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; align-items: stretch; }
.l-price {
    background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px; padding: 35px 30px; text-align: center; position: relative;
    display: flex; flex-direction: column; gap: 15px;
}
.l-price h3 { letter-spacing: 3px; color: #c9a8b8; }
.l-sum { font-size: 2.4rem; font-weight: 900; color: #fff; }
.l-price ul { list-style: none; color: #c9a8b8; text-align: left; margin-bottom: 15px; }
.l-price li { padding: 6px 0 6px 24px; position: relative; }
.l-price li::before { content: '✔'; position: absolute; left: 0; color: #7ddf8a; }
.l-price.hit {
    border: 2px solid #ff6b35; transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 107, 53, .3);
    background: rgba(255, 107, 53, .08);
}
.hit-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(90deg, #ff6b35, #ff2e88); padding: 5px 25px;
    border-radius: 100px; font-weight: 800; font-size: .85rem;
}

/* Форма */
.l-order { max-width: 550px; margin: 0 auto; text-align: center; }
.l-order p { color: #c9a8b8; margin-bottom: 30px; }
.l-order .form-consent { text-align: left; background: rgba(255, 107, 53, .05); animation-name: consentGlowWarm; }
@keyframes consentGlowWarm {
    0%, 100% { border-color: rgba(255, 107, 53, .25); box-shadow: 0 0 15px rgba(255, 107, 53, .08); }
    50% { border-color: rgba(255, 107, 53, .6); box-shadow: 0 0 30px rgba(255, 107, 53, .2); }
}
.l-order .checkbox input:checked + .checkmark { background: linear-gradient(135deg, #ff6b35, #ff2e88); }

@media (max-width: 768px) { .l-price.hit { transform: scale(1); } }