

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

.crypto-device {
    --crypto-device-accent: #10a875;
    --crypto-device-accent-2: #16c88d;
    --crypto-device-soft: #eaf8f3;
    --crypto-device-navy: #071d3d;
    --crypto-device-text: #284166;
    --crypto-device-muted: #617696;
    --crypto-device-border: #dfeaf3;
    width: 100%;
    padding: 22px 0;
    color: var(--crypto-device-text);
    font-family: inherit;
}

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

.crypto-device__inner {
    position: relative;
    overflow: hidden;
    padding: 76px 42px 78px;
    border: 1px solid var(--crypto-device-border);
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #fbfefe 56%, #f4fbf8 100%);
    box-shadow: 0 28px 84px rgba(10, 46, 75, 0.08);
}

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

.crypto-device__content {
    max-width: 560px;
    min-width: 0;
}

.crypto-device__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 10px 20px;
    border: 1px solid rgba(16,168,117,.18);
    border-radius: 999px;
    background: rgba(16,168,117,.07);
    color: var(--crypto-device-accent);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
}

.crypto-device__badge-icon,
.crypto-device__badge-icon svg,
.crypto-device__device-icon,
.crypto-device__device-icon svg,
.crypto-device__support-icon,
.crypto-device__support-icon svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    fill: currentColor;
    color: currentColor;
}

.crypto-device__badge-icon {
    font-size: 24px;
}

.crypto-device__heading {
    margin: 34px 0 30px;
    color: var(--crypto-device-navy);
    font-size: clamp(42px, 4.3vw, 68px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.08;
}

.crypto-device__description {
    margin: 0;
    max-width: 540px;
    color: var(--crypto-device-text);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.72;
}

.crypto-device__device-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 64px;
    overflow: hidden;
    border: 1px solid var(--crypto-device-border);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(7, 29, 61, 0.05);
}

.crypto-device__device-card {
    min-height: 125px;
    padding: 26px 18px 22px;
    text-align: center;
    background: #ffffff;
}

.crypto-device__device-card + .crypto-device__device-card {
    border-left: 1px solid var(--crypto-device-border);
}

.crypto-device__device-icon {
    margin: 0 auto 14px;
    color: var(--crypto-device-accent);
    font-size: 42px;
}

.crypto-device__device-title {
    display: block;
    color: var(--crypto-device-navy);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
}

.crypto-device__support-box {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    margin-top: 28px;
    padding: 26px 30px;
    border: 1px solid var(--crypto-device-border);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(7, 29, 61, 0.05);
}

.crypto-device__support-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--crypto-device-soft);
    color: var(--crypto-device-accent);
    font-size: 38px;
}

.crypto-device__support-title {
    display: block;
    margin-bottom: 16px;
    color: var(--crypto-device-accent);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.crypto-device__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.crypto-device__chips span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    min-height: 42px;
    padding: 9px 17px;
    border: 1px solid var(--crypto-device-border);
    border-radius: 12px;
    background: #ffffff;
    color: var(--crypto-device-navy);
    font-size: 17px;
    font-weight: 800;
}

.crypto-device__visual {
    position: relative;
    min-width: 0;
    min-height: 660px;
}

.crypto-device__uploaded-image {
    display: block;
    width: 100%;
    max-width: 760px;
    height: auto;
    margin-left: auto;
}

.crypto-device__mockup {
    position: relative;
    width: min(100%, 780px);
    min-height: 660px;
    margin-left: auto;
}

.crypto-device__halo {
    position: absolute;
    top: -28px;
    left: 180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,168,117,.16), rgba(16,168,117,0) 70%);
}

.crypto-device__laptop {
    position: absolute;
    top: 42px;
    right: 48px;
    z-index: 2;
    width: 540px;
    min-height: 360px;
    padding: 22px 24px;
    border: 12px solid #12161f;
    border-bottom-width: 24px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 30px 56px rgba(7, 29, 61, .20);
}

.crypto-device__laptop::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -36px;
    width: 250px;
    height: 16px;
    border-radius: 0 0 22px 22px;
    background: linear-gradient(180deg, #cbd3db, #eef3f7);
    transform: translateX(-50%);
}

.crypto-device__laptop-top,
.crypto-device__tablet-bar,
.crypto-device__phone-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.crypto-device__mock-logo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    color: var(--crypto-device-navy);
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .02em;
}

.crypto-device__mock-logo span {
    color: var(--crypto-device-accent);
    font-size: 18px;
}

.crypto-device__mock-logo strong {
    max-width: 70px;
    line-height: 1.05;
}

.crypto-device__laptop nav {
    display: flex;
    gap: 21px;
    color: var(--crypto-device-navy);
    font-size: 9px;
    font-weight: 800;
}

.crypto-device__laptop nav span:first-child {
    color: var(--crypto-device-accent);
}

.crypto-device__mini-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 7px 12px;
    border-radius: 5px;
    background: var(--crypto-device-accent);
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
}

.crypto-device__mock-heading {
    margin: 22px 0 14px;
}

.crypto-device__mock-heading strong,
.crypto-device__mock-heading small {
    display: block;
}

.crypto-device__mock-heading strong {
    color: var(--crypto-device-navy);
    font-size: 17px;
    font-weight: 800;
}

.crypto-device__mock-heading em,
.crypto-device__phone-title em {
    color: var(--crypto-device-accent);
    font-style: normal;
}

.crypto-device__mock-heading small {
    margin-top: 6px;
    color: var(--crypto-device-muted);
    font-size: 10px;
    font-weight: 600;
}

.crypto-device__rate-table {
    overflow: hidden;
    border-radius: 8px;
    background: #fbfdfe;
}

.crypto-device__rate-head,
.crypto-device__rate-row {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, .8fr);
    align-items: center;
    gap: 10px;
}

.crypto-device__rate-head {
    min-height: 32px;
    padding: 8px 12px;
    background: #f2f5f8;
    color: var(--crypto-device-text);
    font-size: 9px;
    font-weight: 800;
}

.crypto-device__rate-row {
    min-height: 56px;
    padding: 9px 12px;
    border-top: 1px solid #e9eef4;
    color: var(--crypto-device-navy);
    font-size: 10px;
    font-weight: 800;
}

.crypto-device__rate-row span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.crypto-device__rate-row i,
.crypto-device__phone-usdt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--crypto-device-accent);
    color: #ffffff;
    font-style: normal;
    font-size: 18px;
}

.crypto-device__rate-row small {
    display: block;
    margin-top: 2px;
    color: var(--crypto-device-muted);
    font-size: 8px;
}

.crypto-device__trust-line,
.crypto-device__phone-trust {
    display: block;
    margin-top: 16px;
    color: var(--crypto-device-accent);
    font-size: 10px;
    font-weight: 800;
}

.crypto-device__tablet {
    position: absolute;
    z-index: 4;
    left: 0;
    bottom: 22px;
    width: 500px;
    min-height: 300px;
    padding: 24px 28px;
    border: 14px solid #11141a;
    border-radius: 28px;
    background: #ffffff;
    transform: rotate(-5deg);
    box-shadow: 0 28px 58px rgba(7, 29, 61, .22);
}

.crypto-device__tablet-bar span:last-child {
    min-height: 28px;
    padding: 7px 14px;
    border: 1px solid var(--crypto-device-border);
    border-radius: 999px;
    color: var(--crypto-device-navy);
    font-size: 11px;
    font-weight: 800;
}

.crypto-device__tablet-title {
    display: block;
    margin: 18px 0 8px;
    color: var(--crypto-device-navy);
    font-size: 15px;
    font-weight: 800;
}

.crypto-device__chart {
    width: 100%;
    height: 86px;
    color: var(--crypto-device-accent);
}

.crypto-device__balance {
    display: flex;
    align-items: baseline;
    gap: 12px;
    min-height: 58px;
    padding: 12px 15px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(7,29,61,.08);
}

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

.crypto-device__balance small {
    color: var(--crypto-device-muted);
    font-size: 9px;
    font-weight: 700;
}

.crypto-device__balance strong {
    color: var(--crypto-device-navy);
    font-size: 19px;
    font-weight: 900;
}

.crypto-device__balance em {
    color: var(--crypto-device-accent);
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.crypto-device__tablet-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.crypto-device__tablet-cards span {
    min-height: 70px;
    padding: 14px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(7,29,61,.08);
    color: var(--crypto-device-text);
    font-size: 10px;
    font-weight: 800;
}

.crypto-device__tablet-cards strong {
    display: block;
    margin-top: 4px;
    color: var(--crypto-device-accent);
}

.crypto-device__phone {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 35px;
    width: 205px;
    min-height: 380px;
    padding: 18px 16px;
    border: 10px solid #101318;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 26px 46px rgba(7, 29, 61, .24);
}

.crypto-device__phone::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 72px;
    height: 16px;
    border-radius: 0 0 12px 12px;
    background: #101318;
    transform: translateX(-50%);
}

.crypto-device__phone-head {
    margin-top: 8px;
}

.crypto-device__phone-title {
    display: block;
    margin: 24px 0 9px;
    color: var(--crypto-device-navy);
    font-size: 13px;
    font-weight: 900;
}

.crypto-device__phone-card {
    display: grid;
    gap: 13px;
    padding: 18px 14px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(7,29,61,.10);
    text-align: center;
}

.crypto-device__phone-usdt {
    width: 52px;
    height: 52px;
    margin: 0 auto;
    font-size: 36px;
}

.crypto-device__phone-card strong {
    color: var(--crypto-device-navy);
    font-size: 15px;
    font-weight: 900;
}

.crypto-device__phone-card div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--crypto-device-border);
    color: var(--crypto-device-navy);
    font-size: 12px;
    font-weight: 700;
}

.crypto-device__phone-card b {
    color: var(--crypto-device-accent);
}

.crypto-device__quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 7px;
    background: var(--crypto-device-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.crypto-device__phone-trust {
    margin-top: 16px;
    text-align: center;
}

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

.crypto-device__decor--dots {
    left: 42px;
    top: 70px;
    width: 170px;
    height: 145px;
    opacity: .45;
    background-image: radial-gradient(circle, rgba(16,168,117,.38) 3px, transparent 3px);
    background-size: 28px 28px;
}

.crypto-device__decor--globe {
    right: -36px;
    top: 70px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    opacity: .26;
    border: 2px solid rgba(16,168,117,.25);
    background: repeating-radial-gradient(circle, transparent 0 38px, rgba(16,168,117,.22) 39px 41px), repeating-linear-gradient(90deg, transparent 0 58px, rgba(16,168,117,.18) 59px 61px);
}

.crypto-device__decor--hex {
    right: 120px;
    top: 185px;
    width: 110px;
    height: 110px;
    border: 3px solid rgba(16,168,117,.22);
    border-radius: 26px;
    transform: rotate(30deg);
}

.crypto-device__decor--spark {
    right: 98px;
    top: 330px;
    width: 28px;
    height: 28px;
    color: rgba(16,168,117,.34);
}

.crypto-device__decor--spark::before,
.crypto-device__decor--spark::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background: currentColor;
    border-radius: 999px;
}

.crypto-device__decor--spark::before {
    width: 28px;
    height: 8px;
}

.crypto-device__decor--spark::after {
    width: 8px;
    height: 28px;
}

.crypto-device--no-decor .crypto-device__decor {
    display: none;
}

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

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

    .crypto-device__mockup,
    .crypto-device__uploaded-image {
        margin: 45px auto 0;
    }
}

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

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

    .crypto-device__description {
        font-size: 17px;
    }

    .crypto-device__visual {
        min-height: 760px;
    }

    .crypto-device__mockup {
        width: 100%;
        min-height: 760px;
    }

    .crypto-device__laptop {
        position: relative;
        top: 0;
        right: auto;
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
    }

    .crypto-device__laptop nav {
        display: none;
    }

    .crypto-device__tablet {
        left: 0;
        bottom: 75px;
        width: min(78vw, 500px);
    }

    .crypto-device__phone {
        right: 0;
        bottom: 0;
    }
}

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

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

    .crypto-device__device-cards {
        grid-template-columns: 1fr;
    }

    .crypto-device__device-card + .crypto-device__device-card {
        border-left: 0;
        border-top: 1px solid var(--crypto-device-border);
    }

    .crypto-device__support-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .crypto-device__support-icon {
        margin: 0 auto;
    }

    .crypto-device__chips {
        justify-content: center;
    }

    .crypto-device__visual,
    .crypto-device__mockup {
        min-height: 0;
    }

    .crypto-device__laptop,
    .crypto-device__tablet,
    .crypto-device__phone {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        margin: 18px auto 0;
        transform: none;
    }

    .crypto-device__rate-head,
    .crypto-device__rate-row {
        grid-template-columns: 1.2fr repeat(2, .8fr);
    }

    .crypto-device__rate-head span:nth-child(n+4),
    .crypto-device__rate-row strong:nth-child(n+4) {
        display: none;
    }

    .crypto-device__tablet-cards {
        grid-template-columns: 1fr;
    }
}
