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

.crypto-contact-info {
    width: 100%;
    padding: 80px 20px;
    border-radius: 24px;
    background: #111111;
    color: #ffffff;
    font-family: 'Rajdhani', Arial, Helvetica, sans-serif;
}

.crypto-contact-info__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.crypto-contact-info__header {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}

.crypto-contact-info__eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    color: #ffb900;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.crypto-contact-info__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 700;
    line-height: 1.05;
}

.crypto-contact-info__description {
    margin: 16px auto 0;
    color: #b9b9b9;
    font-size: 18px;
    line-height: 1.55;
}

.crypto-contact-info__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.crypto-contact-info__card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-height: 150px;
    padding: 26px;
    border: 1px solid #303030;
    border-radius: 18px;
    background: #181818;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.crypto-contact-info__card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 185, 0, 0.58);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.crypto-contact-info__icon {
    display: grid;
    place-items: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 185, 0, 0.12);
    color: #ffb900;
}

.crypto-contact-info__icon svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.crypto-contact-info__card-copy {
    min-width: 0;
}

.crypto-contact-info__card-label {
    margin: 0 0 7px;
    color: #ffb900;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.crypto-contact-info__card-value,
.crypto-contact-info__card-value a {
    color: #ffffff;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.crypto-contact-info__card-value a:hover {
    color: #ffcf55;
}

@media (max-width: 767px) {
    .crypto-contact-info {
        padding: 56px 16px;
        border-radius: 18px;
    }

    .crypto-contact-info__grid {
        grid-template-columns: 1fr;
    }

    .crypto-contact-info__card {
        min-height: 0;
        padding: 22px;
    }
}

@media (max-width: 420px) {
    .crypto-contact-info__card {
        gap: 14px;
        padding: 18px;
    }

    .crypto-contact-info__icon {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
    }

    .crypto-contact-info__card-value,
    .crypto-contact-info__card-value a {
        font-size: 17px;
    }
}
