/* ===== TELEGRAM BLOCK ===== */

.telegram-section {
    padding: 120px 24px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,180,80,.09), transparent 28%),
        linear-gradient(180deg, #050505, #030303);
}

.telegram-wrap {
    display: block;
}

.telegram-card {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 58px 46px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.telegram-card::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, rgba(255,180,80,.16), transparent 65%);
    filter: blur(65px);
    animation: pulseGlow 6s infinite ease-in-out;
    pointer-events: none;
}

.telegram-content {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.telegram-card h2 {
    font-size: clamp(38px, 5vw, 68px);
    margin-bottom: 26px;
    letter-spacing: 2px;
}

.telegram-text {
    margin: 22px auto;
    max-width: 720px;
    font-size: 17px;
    line-height: 1.8;
    opacity: .7;
}

.telegram-thought {
    margin: 30px auto;
    max-width: 720px;
    font-size: 18px;
    line-height: 1.8;
    opacity: .82;
    font-style: italic;
}

.telegram-card .buttons {
    margin-top: 34px;
}

/* ===== TELEGRAM MOBILE ===== */

@media (max-width: 720px) {
    .telegram-section {
        padding: 80px 18px;
    }

    .telegram-card {
        padding: 42px 24px;
    }

    .telegram-card h2 {
        font-size: 42px;
    }

    .telegram-text,
    .telegram-thought {
        font-size: 16px;
    }
}
