/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
    --bg:         #0c1017;
    --surface:    #131924;
    --surface-2:  #1b2332;
    --border:     rgba(255,255,255,.08);
    --border-h:   rgba(56,189,248,.4);

    --purple:     #38bdf8;
    --purple-lt:  #7dd3fc;
    --grad:       linear-gradient(135deg, #0ea5e9, #0284c7);

    --t1:         #f8fafc;
    --t2:         #94a3b8;
    --t3:         #475569;

    --green:      #10b981;
    --gold:       #f59e0b;

    --r:          12px;
    --r-lg:       18px;
    --r-pill:     999px;
}

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

body {
    background: var(--bg);
    color: var(--t1);
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
.header-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 24px;
    background: rgba(10,10,15,.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    width: 100%;
    max-width: 1100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--t1);
}
.brand-text span { color: var(--t3); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}
@media (max-width: 860px) { .nav-links { display: none; } }

.nav-link {
    color: var(--t2);
    text-decoration: none;
    padding: 6px 14px;
    font-size: .84rem;
    font-weight: 600;
    border-radius: var(--r-pill);
    transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active {
    color: var(--t1);
    background: rgba(255,255,255,.06);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    padding: 6px 14px;
    color: var(--t3);
    transition: border-color .2s;
}
.search-box:focus-within { border-color: rgba(168,85,247,.3); }
.search-box svg { width: 13px; height: 13px; fill: var(--t3); flex-shrink: 0; }
.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--t1);
    font-size: .82rem;
    font-family: inherit;
    width: 110px;
}
.search-box input::placeholder { color: var(--t3); }
@media (max-width: 600px) { .search-box { display: none; } }

.btn-lang, .btn-currency {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--t2);
    padding: 6px 12px;
    font-size: .82rem;
    font-weight: 700;
    font-family: inherit;
    border-radius: var(--r-pill);
    cursor: pointer;
    outline: none;
    transition: color .2s, border-color .2s;
}
.btn-lang:hover, .btn-currency:hover, .btn-currency:focus {
    color: var(--t1);
    border-color: var(--purple-lt);
}
.btn-currency option {
    background: var(--surface-2);
    color: var(--t1);
}

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.main-wrapper {
    width: 100%;
    max-width: 1100px;
    padding: 100px 24px 80px;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero-section {
    text-align: center;
    padding: 56px 0 72px;
}

.badge-trusted {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,197,94,.08);
    border: 1px solid rgba(34,197,94,.2);
    border-radius: var(--r-pill);
    padding: 5px 14px;
    font-size: .77rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: .02em;
    margin-bottom: 24px;
}

.status-dot-pulse {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.4; transform:scale(1.3); }
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-title span.gradient-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--t2);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}
@media (max-width: 500px) { .stats-bar { gap: 24px; } }

.stat-item { text-align: center; }
.stat-val {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--t1);
}
.stat-lbl {
    font-size: .72rem;
    font-weight: 600;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 3px;
}

/* ─────────────────────────────────────────
   CATEGORY FILTER
───────────────────────────────────────── */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.filter-pill {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--t2);
    padding: 7px 18px;
    font-size: .82rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all .2s;
}
.filter-pill:hover   { color: var(--t1); border-color: rgba(255,255,255,.15); }
.filter-pill.active  { color: var(--t1); background: var(--surface-2); border-color: rgba(168,85,247,.45); }

/* ─────────────────────────────────────────
   SECTION HEADER
───────────────────────────────────────── */
.section-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--t2);
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ─────────────────────────────────────────
   PRODUCT GRID
───────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 56px;
}
@media (max-width: 700px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.product-card:hover {
    border-color: var(--border-h);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

/* иконка-баннер сверху карточки */
.card-icon-banner {
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
    min-height: 140px;
}

.card-icon-big {
    width: 96px;
    height: 96px;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(168,85,247,.35));
}

/* тело карточки */
.card-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 14px;
    justify-content: space-between;
}

.prod-name-row {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.prod-type {
    font-size: .78rem;
    color: var(--t2);
    font-weight: 500;
}

.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--r-pill);
    letter-spacing: .04em;
    text-transform: uppercase;
}
.status-badge.active {
    background: rgba(34,197,94,.1);
    color: var(--green);
    border: 1px solid rgba(34,197,94,.2);
}
.status-badge.soon {
    background: rgba(255,255,255,.04);
    color: var(--t3);
    border: 1px solid var(--border);
}

.rating-pill {
    font-size: .82rem;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 4px;
}
.rating-pill svg { width: 13px; height: 13px; fill: var(--gold); }

.prod-header-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.product-icon-tide {
    width: 68px; height: 68px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(0,0,0,.3);
    border: 1px solid var(--border);
    padding: 8px;
    flex-shrink: 0;
}

.prod-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--t1);
}

.prod-desc {
    font-size: .88rem;
    color: var(--t2);
    line-height: 1.65;
}

.prod-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tag-item {
    font-size: .72rem;
    font-weight: 600;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    color: var(--t3);
    padding: 3px 10px;
    border-radius: 6px;
    letter-spacing: .02em;
}

.card-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 4px;
}

.price-tag {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--purple-lt);
}
.price-tag span { font-size: .8rem; font-weight: 500; color: var(--t3); }

.btn-view {
    background: var(--grad);
    border: none;
    color: #fff;
    padding: 10px 22px;
    font-size: .84rem;
    font-weight: 700;
    font-family: inherit;
    border-radius: var(--r);
    cursor: pointer;
    transition: opacity .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(168,85,247,.25);
}
.btn-view:hover { opacity: .9; box-shadow: 0 6px 24px rgba(168,85,247,.4); }

.btn-disabled {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    color: var(--t3);
    padding: 10px 22px;
    font-size: .84rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--r);
    cursor: not-allowed;
}

/* ─────────────────────────────────────────
   VERIFIER
───────────────────────────────────────── */
.verifier-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
    margin-bottom: 56px;
}

.verifier-header { margin-bottom: 20px; }

.verifier-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 4px;
}

.verifier-desc { font-size: .86rem; color: var(--t2); line-height: 1.6; }

.verifier-form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
@media (max-width: 600px) { .verifier-form-row { flex-direction: column; } }

.key-input-field {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 11px 16px;
    color: var(--t1);
    font-family: 'JetBrains Mono', monospace;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s;
}
.key-input-field::placeholder { color: var(--t3); }
.key-input-field:focus { border-color: rgba(168,85,247,.5); }

.btn-check-key {
    background: var(--purple);
    border: none;
    color: #fff;
    padding: 11px 22px;
    font-size: .84rem;
    font-weight: 700;
    font-family: inherit;
    border-radius: var(--r);
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
}
.btn-check-key:hover { background: #9333ea; }

.verifier-result-box {
    background: rgba(0,0,0,.3);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 18px;
    display: none;
}
.verifier-result-box.active { display: block; }

.result-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .82rem;
    margin-bottom: 14px;
}
@media (max-width: 600px) { .result-grid { grid-template-columns: 1fr; } }

.res-lbl { color: var(--t3); font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; }
.res-val { color: var(--t1); font-weight: 700; margin-top: 4px; }
.res-val.active-status { color: var(--green); }

.btn-reset-hwid {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--t2);
    padding: 7px 14px;
    font-size: .78rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--r);
    cursor: pointer;
    transition: all .2s;
}
.btn-reset-hwid:hover { color: var(--t1); border-color: rgba(255,255,255,.2); }

/* ─────────────────────────────────────────
   REVIEWS
───────────────────────────────────────── */
.reviews-section { margin-bottom: 56px; }

.reviews-header-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.rating-overview { display: flex; align-items: center; gap: 20px; }

.big-rating-score {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--t1);
    line-height: 1;
}

.rating-stars-col { display: flex; flex-direction: column; gap: 5px; }

.stars-row-svg { display: flex; gap: 3px; }
.stars-row-svg svg { width: 16px; height: 16px; fill: var(--gold); }

.rating-count-text { font-size: .82rem; color: var(--t2); }

.btn-add-review {
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--t1);
    padding: 10px 20px;
    font-size: .82rem;
    font-weight: 700;
    font-family: inherit;
    border-radius: var(--r);
    cursor: pointer;
    transition: border-color .2s;
    white-space: nowrap;
}
.btn-add-review:hover { border-color: rgba(168,85,247,.4); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px)  { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    transition: border-color .2s;
}
.review-card:hover { border-color: var(--border-h); }

.rev-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.rev-author { display: flex; align-items: center; gap: 10px; }

.avatar-circle {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 800;
    flex-shrink: 0;
}

.author-name { font-size: .88rem; font-weight: 700; color: var(--t1); }

.verified-pill {
    font-size: .68rem;
    font-weight: 700;
    color: var(--green);
    background: rgba(34,197,94,.08);
    padding: 2px 7px;
    border-radius: 4px;
    margin-top: 2px;
    display: inline-block;
}

.rev-text {
    font-size: .86rem;
    color: var(--t2);
    line-height: 1.65;
}

.rev-footer {
    display: flex;
    justify-content: space-between;
    font-size: .75rem;
    color: var(--t3);
    border-top: 1px solid var(--border);
    padding-top: 12px;
    flex-wrap: wrap;
    gap: 4px;
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq-section { margin-bottom: 56px; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color .2s;
}
.faq-item.active { border-color: rgba(168,85,247,.3); }

.faq-btn {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    color: var(--t1);
    font-size: .92rem;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}

.faq-btn svg {
    width: 16px; height: 16px;
    fill: var(--t3);
    flex-shrink: 0;
    transition: transform .2s, fill .2s;
}
.faq-item.active .faq-btn svg { transform: rotate(180deg); fill: var(--purple-lt); }

.faq-answer {
    padding: 0 22px 18px;
    font-size: .88rem;
    color: var(--t2);
    line-height: 1.7;
    display: none;
}
.faq-item.active .faq-answer { display: block; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
    text-align: center;
    font-size: .8rem;
    color: var(--t3);
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    width: 100%;
}

/* ─────────────────────────────────────────
   TOAST
───────────────────────────────────────── */
.toast-purchase {
    position: fixed;
    bottom: 24px; left: 24px;
    z-index: 90;
    background: var(--surface-2);
    border: 1px solid var(--border-h);
    border-radius: var(--r-lg);
    padding: 12px 16px;
    display: none;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.5);
    backdrop-filter: blur(12px);
    max-width: 300px;
}

.toast-icon {
    width: 30px; height: 30px;
    background: rgba(168,85,247,.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-text { font-size: .79rem; color: var(--t2); line-height: 1.4; }
.toast-text strong { color: var(--t1); }

/* ─────────────────────────────────────────
   MODALS BACKDROP
───────────────────────────────────────── */
.review-modal-backdrop,
.checkout-dialog-backdrop,
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5,5,10,.75);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}
.review-modal-backdrop.active,
.checkout-dialog-backdrop.active,
.modal-overlay.active { display: flex; }

.modal-content-box,
.review-modal-box,
.checkout-dialog-box {
    background: var(--surface);
    border: 1px solid var(--border-h);
    border-radius: 20px;
    max-width: 780px;
    width: 100%;
    padding: 32px;
    position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,.7);
    max-height: 90vh;
    overflow-y: auto;
}
.review-modal-box  { max-width: 440px; }
.checkout-dialog-box { max-width: 400px; }

.close-modal {
    position: absolute;
    top: 18px; right: 18px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    color: var(--t2);
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all .2s;
    line-height: 1;
}
.close-modal:hover { color: var(--t1); border-color: rgba(255,255,255,.2); }

/* ─────────────────────────────────────────
   STEPPER
───────────────────────────────────────── */
.stepper-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 28px;
}

.step-node-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--t3);
    cursor: pointer;
    transition: color .2s;
}
.step-node-item.active { color: var(--t1); }

.step-num-pill {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    flex-shrink: 0;
}
.step-node-item.active .step-num-pill {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
}

.step-line-bar { flex: 1; height: 1px; background: var(--border); margin: 0 10px; }
.step-line-bar.active { background: var(--purple); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─────────────────────────────────────────
   SHOWCASE MODAL INNARDS
───────────────────────────────────────── */
.preview-carousel-container {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 24px;
    background: var(--bg);
}

.carousel-slides-wrapper {
    display: flex;
    transition: transform .38s cubic-bezier(.25,1,.5,1);
}

.slide-img-item {
    min-width: 100%;
    height: 380px;
    object-fit: contain;
    padding: 12px;
}
@media (max-width: 600px) { .slide-img-item { height: 220px; } }

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10,10,15,.85);
    border: 1px solid var(--border);
    color: var(--t1);
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(8px);
    transition: all .2s;
    font-size: 1rem;
}
.carousel-arrow:hover { background: var(--purple); border-color: var(--purple); }
.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }

.carousel-dots-row {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    background: rgba(10,10,15,.7);
    padding: 5px 12px;
    border-radius: var(--r-pill);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.carousel-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    cursor: pointer;
    transition: all .2s;
}
.carousel-dot.active {
    background: var(--purple-lt);
    width: 20px;
    border-radius: var(--r-pill);
}

.modal-headline {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--t1);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.modal-tide-icon {
    width: 52px; height: 52px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(0,0,0,.3);
    border: 1px solid var(--border);
    padding: 7px;
    flex-shrink: 0;
}

.modal-lead {
    font-size: .9rem;
    color: var(--t2);
    line-height: 1.65;
    margin-bottom: 22px;
}

.features-2x2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
    margin-bottom: 24px;
}
@media (max-width: 600px) { .features-2x2 { grid-template-columns: 1fr; } }

.feat-card-item {
    background: var(--surface-2);
    border: 1px solid var(--border);
    padding: 14px;
    border-radius: var(--r);
}
.feat-card-title {
    font-size: .86rem;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 4px;
}
.feat-card-text {
    font-size: .78rem;
    color: var(--t2);
    line-height: 1.5;
}

/* ─────────────────────────────────────────
   PLAN SELECTION
───────────────────────────────────────── */
.plan-cards-row {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    margin-bottom: 22px;
}
@media (max-width: 600px) { .plan-cards-row { grid-template-columns: 1fr; } }

.plan-select-box {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 18px;
    cursor: pointer;
    transition: border-color .2s;
}
.plan-select-box.selected { border-color: var(--purple); background: rgba(168,85,247,.07); }

.plan-select-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--t1);
    margin-bottom: 10px;
}

.plan-select-bullets {
    list-style: none;
    font-size: .82rem;
    color: var(--t2);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dur-row-btn {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.duration-pill-btn {
    flex: 1;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--t2);
    padding: 10px;
    font-size: .82rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--r);
    cursor: pointer;
    text-align: center;
    transition: all .2s;
}
.duration-pill-btn.active {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
}

/* ─────────────────────────────────────────
   PAYMENT GATEWAYS
───────────────────────────────────────── */
.gateways-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-bottom: 24px;
}
@media (max-width: 600px) { .gateways-list { grid-template-columns: 1fr; } }

.gateway-item-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.gateway-item-card:hover {
    border-color: var(--border-h);
    background: rgba(168,85,247,.05);
}

.gw-icon {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gw-name { font-size: .8rem; font-weight: 700; color: var(--t2); margin-bottom: 6px; }
.gw-price { font-size: 1.2rem; font-weight: 800; letter-spacing: -.02em; color: var(--t1); }

/* ─────────────────────────────────────────
   MODAL ACTIONS BAR
───────────────────────────────────────── */
.actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 18px;
    gap: 10px;
}

.btn-prev-step {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--t2);
    padding: 9px 18px;
    font-size: .82rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--r);
    cursor: pointer;
    transition: all .2s;
}
.btn-prev-step:hover { color: var(--t1); border-color: rgba(255,255,255,.2); }

.btn-next-step {
    background: var(--grad);
    border: none;
    color: #fff;
    padding: 9px 22px;
    font-size: .82rem;
    font-weight: 700;
    font-family: inherit;
    border-radius: var(--r);
    cursor: pointer;
    transition: opacity .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(168,85,247,.25);
}
.btn-next-step:hover { opacity: .9; box-shadow: 0 6px 24px rgba(168,85,247,.4); }

/* ─────────────────────────────────────────
   CHECKOUT DIALOG
───────────────────────────────────────── */
.dialog-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 8px;
}

.dialog-desc {
    font-size: .86rem;
    color: var(--t2);
    line-height: 1.6;
    margin-bottom: 18px;
}

.requisites-container {
    background: rgba(0,0,0,.35);
    border: 1px dashed rgba(168,85,247,.3);
    padding: 12px;
    border-radius: var(--r);
    font-size: .9rem;
    font-weight: 700;
    color: var(--purple-lt);
    text-align: center;
    margin-bottom: 18px;
    word-break: break-all;
    font-family: 'JetBrains Mono', monospace;
}

.btn-confirm-checkout {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--t1);
    color: #000;
    font-size: .88rem;
    font-weight: 700;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    border-radius: var(--r);
    transition: opacity .2s;
}
.btn-confirm-checkout:hover { opacity: .88; }

/* ─────────────────────────────────────────
   REVIEW FORM
───────────────────────────────────────── */
.form-group { margin-bottom: 14px; }

.form-label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: var(--t2);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.form-input,
.form-textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 10px 14px;
    color: var(--t1);
    font-family: inherit;
    font-size: .88rem;
    outline: none;
    transition: border-color .2s;
    appearance: none;
    -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus { border-color: rgba(168,85,247,.5); }
.form-textarea { resize: vertical; min-height: 80px; }

/* ─────────────────────────────────────────
   SCROLLBAR
───────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.18); }

/* ─────────────────────────────────────────
   DISCORD AUTH & PAYMENT ENHANCEMENTS
───────────────────────────────────────── */
.btn-discord-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #5865F2;
    color: #fff;
    border: none;
    padding: 7px 16px;
    font-size: .82rem;
    font-weight: 700;
    font-family: inherit;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.25);
}
.btn-discord-login:hover {
    background: #4752C4;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(88, 101, 242, 0.4);
}
.btn-discord-login svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.discord-user-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(88, 101, 242, 0.12);
    border: 1px solid rgba(88, 101, 242, 0.3);
    padding: 4px 12px 4px 6px;
    border-radius: var(--r-pill);
}
.discord-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #5865F2;
}
.discord-user-info {
    display: flex;
    flex-direction: column;
}
.discord-username {
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}
.discord-userid {
    font-size: .65rem;
    color: #949ba4;
    font-family: 'JetBrains Mono', monospace;
}
.btn-discord-logout {
    background: transparent;
    border: none;
    color: var(--t2);
    cursor: pointer;
    font-size: .75rem;
    padding: 2px 4px;
    margin-left: 4px;
    border-radius: 4px;
    transition: color .2s;
}
.btn-discord-logout:hover { color: #f87171; }

.discord-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--r);
    margin-bottom: 16px;
}
.discord-banner.unverified {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}
.discord-banner.verified {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}
.discord-banner-text {
    font-size: .84rem;
    color: var(--t1);
}
.discord-banner-text strong {
    color: #fff;
}

.copy-reqs-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border);
    color: var(--t1);
    padding: 4px 10px;
    font-size: .75rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 8px;
    transition: background .2s;
}
.copy-reqs-btn:hover {
    background: rgba(255,255,255,0.16);
}

.checkout-input-group {
    margin-top: 14px;
    text-align: left;
}
.checkout-input-label {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    color: var(--t2);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.checkout-input {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 10px 14px;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: .84rem;
    outline: none;
    transition: border-color .2s;
}
.checkout-input:focus {
    border-color: #5865F2;
}

