

.crypto-bulk,
.crypto-bulk * {
    box-sizing: border-box;
}

.crypto-bulk {
    --crypto-bulk-accent: #10a875;
    --crypto-bulk-accent-2: #18c189;
    --crypto-bulk-soft: #eaf8f3;
    --crypto-bulk-navy: #071d3d;
    --crypto-bulk-text: #284166;
    --crypto-bulk-muted: #607497;
    --crypto-bulk-border: #dfeaf3;
    --crypto-bulk-card: #ffffff;
    width: 100%;
    padding: 22px 0;
    color: var(--crypto-bulk-text);
    font-family: inherit;
}

.crypto-bulk a {
    text-decoration: none;
}

.crypto-bulk__container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 18px;
}

.crypto-bulk__inner {
    position: relative;
    overflow: hidden;
    padding: 80px 70px;
    border: 1px solid var(--crypto-bulk-border);
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #fbfefe 52%, #f4fbf8 100%);
    box-shadow: 0 28px 84px rgba(10, 46, 75, 0.08);
}

.crypto-bulk__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 66px;
}

.crypto-bulk__content {
    min-width: 0;
    max-width: 500px;
}

.crypto-bulk__badge {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 42px;
    padding: 8px 18px;
    border: 1px solid rgba(16, 168, 117, 0.22);
    border-radius: 999px;
    background: rgba(16, 168, 117, 0.08);
    color: var(--crypto-bulk-accent);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.crypto-bulk__badge-icon,
.crypto-bulk__badge-icon svg,
.crypto-bulk__btn-icon,
.crypto-bulk__btn-icon svg,
.crypto-bulk__form-button-icon,
.crypto-bulk__form-button-icon svg,
.crypto-bulk__check-icon,
.crypto-bulk__check-icon svg,
.crypto-bulk__qty-icon-svg,
.crypto-bulk__qty-icon-svg svg,
.crypto-bulk__benefit-icon,
.crypto-bulk__benefit-icon svg,
.crypto-bulk__trust-icon,
.crypto-bulk__trust-icon svg {
    width: 1em;
    height: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    fill: currentColor;
    color: currentColor;
}

.crypto-bulk__badge-icon {
    font-size: 18px;
}

.crypto-bulk__heading {
    margin: 30px 0 22px;
    color: var(--crypto-bulk-navy);
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 800;
    letter-spacing: -0.052em;
    line-height: 1.08;
}

.crypto-bulk__description {
    margin: 0;
    color: var(--crypto-bulk-text);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.75;
}

.crypto-bulk__checklist {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.crypto-bulk__checkitem {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--crypto-bulk-text);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
}

.crypto-bulk__check-icon {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--crypto-bulk-soft);
    color: var(--crypto-bulk-accent);
    font-size: 13px;
    box-shadow: inset 0 0 0 1px rgba(16, 168, 117, 0.17);
}

.crypto-bulk__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
}

.crypto-bulk__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.15;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.crypto-bulk__btn--primary {
    color: #ffffff;
    background: var(--crypto-bulk-accent);
    box-shadow: 0 18px 34px rgba(16, 168, 117, 0.25);
}

.crypto-bulk__btn--secondary {
    color: var(--crypto-bulk-accent);
    background: #ffffff;
    border: 1px solid rgba(16, 168, 117, 0.26);
}

.crypto-bulk__btn:hover,
.crypto-bulk__btn:focus {
    transform: translateY(-2px);
}

.crypto-bulk__btn--primary:hover,
.crypto-bulk__btn--primary:focus {
    color: #ffffff;
    box-shadow: 0 22px 42px rgba(16, 168, 117, 0.33);
}

.crypto-bulk__btn--secondary:hover,
.crypto-bulk__btn--secondary:focus {
    color: var(--crypto-bulk-accent);
    box-shadow: 0 14px 28px rgba(10, 46, 75, 0.08);
}

.crypto-bulk__panel-wrap {
    min-width: 0;
    width: 100%;
}

.crypto-bulk__panel {
    position: relative;
    width: 100%;
    max-width: 670px;
    margin-left: auto;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--crypto-bulk-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 76px rgba(7, 29, 61, 0.11);
}

.crypto-bulk__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.crypto-bulk__panel-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.crypto-bulk__usdt-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--crypto-bulk-accent), var(--crypto-bulk-accent-2));
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.17);
}

.crypto-bulk__panel-title,
.crypto-bulk__panel-brand small {
    display: block;
}

.crypto-bulk__panel-title {
    color: var(--crypto-bulk-navy);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.crypto-bulk__panel-brand small {
    margin-top: 4px;
    color: var(--crypto-bulk-muted);
    font-size: 14px;
    font-weight: 600;
}

.crypto-bulk__secure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 15px;
    border-radius: 999px;
    background: var(--crypto-bulk-soft);
    color: var(--crypto-bulk-accent);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.crypto-bulk__secure span {
    display: inline-flex;
    width: 17px;
    height: 17px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--crypto-bulk-accent);
    color: #fff;
    font-size: 10px;
}

.crypto-bulk__panel-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
}

.crypto-bulk__qty-list {
    display: grid;
    gap: 14px;
}

.crypto-bulk__qty-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 96px;
    padding: 16px 18px;
    border: 1px solid var(--crypto-bulk-border);
    border-radius: 14px;
    background: var(--crypto-bulk-card);
    box-shadow: 0 12px 26px rgba(7, 29, 61, 0.06);
}

.crypto-bulk__qty-card.is-featured {
    border-color: rgba(16, 168, 117, 0.58);
    box-shadow: inset 0 0 0 1px rgba(16, 168, 117, 0.12), 0 15px 30px rgba(16, 168, 117, 0.09);
}

.crypto-bulk__qty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(145deg, #82dcbf 0%, var(--crypto-bulk-accent) 100%);
    color: #ffffff;
    font-size: 22px;
}

.crypto-bulk__qty-amount {
    display: block;
    color: var(--crypto-bulk-navy);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.05;
}

.crypto-bulk__qty-copy small,
.crypto-bulk__qty-meta small {
    display: block;
    color: var(--crypto-bulk-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.crypto-bulk__qty-meta {
    text-align: center;
}

.crypto-bulk__qty-meta em {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #d8f5e7;
    color: var(--crypto-bulk-accent);
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.crypto-bulk__form-card {
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--crypto-bulk-border);
    border-radius: 14px;
    background: var(--crypto-bulk-card);
    box-shadow: 0 12px 26px rgba(7, 29, 61, 0.05);
}

.crypto-bulk__form-title {
    display: block;
    margin-bottom: 22px;
    color: var(--crypto-bulk-navy);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.crypto-bulk__form-card label {
    display: block;
    margin: 0 0 8px;
    color: var(--crypto-bulk-text);
    font-size: 12px;
    font-weight: 700;
}

.crypto-bulk__input-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 45px;
    margin-bottom: 17px;
    padding: 10px 12px;
    border: 1px solid var(--crypto-bulk-border);
    border-radius: 9px;
    background: #ffffff;
    color: var(--crypto-bulk-navy);
    font-size: 16px;
    font-weight: 700;
}

.crypto-bulk__input-row strong {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.crypto-bulk__mini-usdt {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--crypto-bulk-accent);
    color: #ffffff;
    font-size: 17px;
    line-height: 1;
}

.crypto-bulk__chips {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.crypto-bulk__chips--currencies {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.crypto-bulk__chips--networks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.crypto-bulk__chip,
.crypto-bulk__network-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 0;
    min-height: 40px;
    padding: 8px 9px;
    border: 1px solid var(--crypto-bulk-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--crypto-bulk-navy);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.crypto-bulk__chip.is-active,
.crypto-bulk__network-chip.is-active {
    border-color: rgba(16, 168, 117, 0.55);
    background: #f5fcf9;
}

.crypto-bulk__network-chip i {
    font-style: normal;
    font-size: 22px;
    line-height: 1;
}

.crypto-bulk__form-button {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    border-radius: 8px;
    background: var(--crypto-bulk-accent);
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: default;
    box-shadow: 0 14px 26px rgba(16, 168, 117, 0.22);
}

.crypto-bulk__panel-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
    gap: 12px;
    margin-top: 12px;
}

.crypto-bulk__mini-card {
    min-height: 132px;
    padding: 18px 20px;
    border: 1px solid var(--crypto-bulk-border);
    border-radius: 12px;
    background: var(--crypto-bulk-card);
}

.crypto-bulk__mini-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.crypto-bulk__mini-title {
    color: var(--crypto-bulk-navy);
    font-size: 14px;
    font-weight: 800;
}

.crypto-bulk__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--crypto-bulk-accent);
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.crypto-bulk__status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--crypto-bulk-accent);
}

.crypto-bulk__market-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.crypto-bulk__market-row strong,
.crypto-bulk__market-row small,
.crypto-bulk__market-row em {
    display: block;
}

.crypto-bulk__market-row strong {
    color: var(--crypto-bulk-navy);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.crypto-bulk__market-row small {
    margin-top: 5px;
    color: var(--crypto-bulk-muted);
    font-size: 12px;
    font-weight: 700;
}

.crypto-bulk__market-row em {
    margin-top: 9px;
    color: var(--crypto-bulk-accent);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.crypto-bulk__chart {
    flex: 0 1 210px;
    width: 46%;
    max-width: 210px;
    min-width: 120px;
    height: 86px;
    color: var(--crypto-bulk-accent);
    filter: drop-shadow(0 16px 12px rgba(16, 168, 117, 0.11));
}

.crypto-bulk__benefit-card {
    display: grid;
    align-content: start;
    gap: 8px;
}

.crypto-bulk__benefit-line {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--crypto-bulk-text);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}

.crypto-bulk__benefit-icon {
    color: var(--crypto-bulk-accent);
    font-size: 11px;
}

.crypto-bulk__trust-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
    padding: 14px 18px;
    border: 1px solid var(--crypto-bulk-border);
    border-radius: 12px;
    background: var(--crypto-bulk-card);
}

.crypto-bulk__trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 0;
}

.crypto-bulk__trust-icon {
    flex: 0 0 auto;
    color: var(--crypto-bulk-accent);
    font-size: 29px;
}

.crypto-bulk__trust-item strong,
.crypto-bulk__trust-item small {
    display: block;
    color: var(--crypto-bulk-navy);
    line-height: 1.12;
}

.crypto-bulk__trust-item strong {
    font-size: 12px;
    font-weight: 800;
}

.crypto-bulk__trust-item small {
    margin-top: 3px;
    font-size: 11px;
    font-weight: 700;
}

.crypto-bulk__decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.crypto-bulk__decor--dots {
    top: 52px;
    left: 52px;
    width: 140px;
    height: 120px;
    opacity: 0.55;
    background-image: radial-gradient(circle, rgba(16, 168, 117, 0.36) 3px, transparent 3px);
    background-size: 28px 28px;
}

.crypto-bulk__decor--globe {
    top: -30px;
    right: -38px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    opacity: 0.33;
    border: 2px solid rgba(16, 168, 117, 0.24);
    background: repeating-radial-gradient(circle, transparent 0 35px, rgba(16, 168, 117, 0.2) 36px 38px), repeating-linear-gradient(90deg, transparent 0 52px, rgba(16, 168, 117, 0.16) 53px 55px);
}

.crypto-bulk__decor--coin {
    right: -44px;
    bottom: -62px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 18px solid rgba(16, 168, 117, 0.18);
    opacity: 0.75;
}

.crypto-bulk__decor--coin::before {
    content: "₮";
    position: absolute;
    inset: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(16, 168, 117, 0.24);
    color: rgba(16, 168, 117, 0.34);
    font-size: 72px;
    font-weight: 900;
}

.crypto-bulk__decor--coin-stack {
    left: -90px;
    top: 170px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 168, 117, 0.14), rgba(16, 168, 117, 0));
}

.crypto-bulk--no-decor .crypto-bulk__decor {
    display: none;
}


.crypto-bulk__qty-copy,
.crypto-bulk__qty-meta,
.crypto-bulk__input-row,
.crypto-bulk__chips,
.crypto-bulk__panel-bottom,
.crypto-bulk__mini-card,
.crypto-bulk__trust-item {
    min-width: 0;
}

.crypto-bulk__qty-meta {
    max-width: 88px;
}

.crypto-bulk__qty-meta small {
    word-break: break-word;
}

@media (max-width: 1040px) {
    .crypto-bulk__panel-main,
    .crypto-bulk__panel-bottom {
        grid-template-columns: 1fr;
    }

    .crypto-bulk__panel {
        max-width: 760px;
    }
}

@media (max-width: 1180px) {
    .crypto-bulk__grid {
        grid-template-columns: 1fr;
    }

    .crypto-bulk__content {
        max-width: 760px;
    }

    .crypto-bulk__panel {
        margin: 0 auto;
    }
}

@media (max-width: 860px) {
    .crypto-bulk__inner {
        padding: 54px 26px;
        border-radius: 18px;
    }

    .crypto-bulk__heading {
        font-size: clamp(34px, 8vw, 50px);
    }

    .crypto-bulk__description {
        font-size: 16px;
    }

    .crypto-bulk__panel-main,
    .crypto-bulk__panel-bottom,
    .crypto-bulk__trust-bar {
        grid-template-columns: 1fr;
    }

    .crypto-bulk__panel-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .crypto-bulk__container {
        padding: 0 12px;
    }

    .crypto-bulk__inner {
        padding: 42px 16px;
    }

    .crypto-bulk__buttons {
        flex-direction: column;
    }

    .crypto-bulk__btn {
        width: 100%;
    }

    .crypto-bulk__panel {
        padding: 16px;
        border-radius: 18px;
    }

    .crypto-bulk__qty-card {
        grid-template-columns: 48px 1fr;
    }

    .crypto-bulk__qty-meta {
        grid-column: 2;
        text-align: left;
    }

    .crypto-bulk__chips--currencies,
    .crypto-bulk__chips--networks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .crypto-bulk__chip,
    .crypto-bulk__network-chip {
        font-size: 11px;
    }

    .crypto-bulk__market-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .crypto-bulk__chart {
        width: 100%;
        max-width: none;
    }
}
