/* =========================
   TELEGRAM COMMUNITY LANDING
========================= */

.tgcom-page {
    --white: #ffffff;
    --black: #0B0B0B;
    --green: #62BD54;
    --green-dark: #4EAA42;
    --green-deep: #3F9734;
    --green-soft: #EFFAEB;
    --green-light: #DFF7D9;
    --soft: #F4F7F3;
    --line: rgba(11, 11, 11, 0.10);
    --text: #202420;
    --muted: #636B63;

    font-family: "Montserrat", Arial, sans-serif;
    color: var(--black);
    background: var(--white);
    overflow: hidden;
}

.tgcom-page *,
.tgcom-page *::before,
.tgcom-page *::after {
    box-sizing: border-box;
}

.tgcom-page h1,
.tgcom-page h2,
.tgcom-page h3,
.tgcom-page p {
    margin: 0;
}

.tgcom-page a {
    text-decoration: none;
}

.tgcom-page ul {
    margin: 0;
    padding: 0;
}

.tgcom-container { width:min(1200px, 100% - 32px); margin-inline:auto; }


/* =========================
   HERO
========================= */

.tgcom-hero {
    position: relative;
    padding: 54px 0 64px;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.20), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(11, 11, 11, 0.26), transparent 36%),
        linear-gradient(135deg, #62BD54 0%, #4EAA42 46%, #0B0B0B 132%);
    overflow: hidden;
    isolation: isolate;
}

.tgcom-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.28;
}

.tgcom-hero::after {
    content: "";
    position: absolute;
    right: -180px;
    top: -180px;
    z-index: 0;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.tgcom-hero__noise {
    display: none;
}

.tgcom-hero .tgcom-container {
    position: relative;
    z-index: 2;
}

/* top label */

.tgcom-hero__top {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    margin-bottom: 34px;
}

.tgcom-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 10px 17px;
    border-radius: 999px;
    background: rgba(11, 11, 11, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    color: var(--white);
    font-size: 13px;
    font-weight: 850;
}

.tgcom-hero__label span {
    flex: 0 0 9px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--white);
    box-shadow:
        0 0 0 5px rgba(255, 255, 255, 0.16),
        0 0 18px rgba(255, 255, 255, 0.55);
}

/* layout */

.tgcom-hero__main {
    position: relative;
    z-index: 3;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas:
        "content content content"
        "card-one card-two card-three";
    gap: 38px 22px;
    align-items: stretch;
    min-height: auto !important;
}

/* content */

.tgcom-hero__content {
    grid-area: content;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.tgcom-hero__content h1 {
    max-width: 1120px;
    margin: 0 auto;
    color: var(--white);
    font-size: 58px;
    font-weight: 850;
    line-height: 1.03;
    letter-spacing: -0.06em;
    text-wrap: balance;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.30);
}

.tgcom-hero__content p {
    max-width: 850px;
    margin: 26px auto 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.72;
    text-wrap: pretty;
}

/* CTA button */

.tgcom-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.tgcom-hero__actions .tgcom-btn,
.tgcom-seo__bottom a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    min-height: 52px;
    padding: 15px 24px;
    border-radius: 999px;
    background: #0B0B0B;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.30),
        0 0 0 6px rgba(255, 255, 255, 0.08);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background-color .18s ease,
        color .18s ease,
        border-color .18s ease;
}

.tgcom-hero__actions .tgcom-btn:hover,
.tgcom-seo__bottom a:hover {
    transform: translateY(-2px);
    background: #ffffff;
    color: #0B0B0B;
    border-color: #ffffff;
    box-shadow:
        0 22px 46px rgba(0, 0, 0, 0.34),
        0 0 0 7px rgba(255, 255, 255, 0.10);
}

/* cards */

.tgcom-floating {
    position: relative !important;
    z-index: 3;
    isolation: isolate;
    width: 100% !important;
    min-height: 150px;
    padding: 22px 22px 20px;
    border-radius: 22px;
    background: rgba(11, 11, 11, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow:
        0 22px 46px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.tgcom-floating--one {
    grid-area: card-one;
}

.tgcom-floating--two {
    grid-area: card-two;
    background: rgba(11, 11, 11, 0.36);
}

.tgcom-floating--three {
    grid-area: card-three;
    background: rgba(255, 255, 255, 0.14);
}

.tgcom-floating:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.36);
    box-shadow: 0 26px 52px rgba(0, 0, 0, 0.22);
}

.tgcom-floating strong {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 13px;
    color: var(--white);
    font-size: 18px;
    font-weight: 850;
    line-height: 1.25;
}

.tgcom-floating strong::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

.tgcom-floating--one strong::before {
    content: "01";
}

.tgcom-floating--two strong::before {
    content: "02";
}

.tgcom-floating--three strong::before {
    content: "03";
}

.tgcom-floating p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.58;
}

/* topic line */

.tgcom-topic-line {
    position: relative;
    z-index: 3;
    max-width: 1080px;
    margin: 44px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px;
}

.tgcom-topic-line span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 850;
    line-height: 1;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease;
}

.tgcom-topic-line span:nth-child(4n + 1),
.tgcom-topic-line span:nth-child(5),
.tgcom-topic-line span:nth-child(10) {
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.72);
    color: var(--green-deep);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.tgcom-topic-line span:nth-child(4n + 2) {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
}

.tgcom-topic-line span:nth-child(4n + 3) {
    background: rgba(11, 11, 11, 0.26);
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--white);
}

.tgcom-topic-line span:nth-child(4n + 4) {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.40);
    color: var(--white);
}

.tgcom-topic-line span:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* reveal */

.tgcom-hero [data-reveal] {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.42s ease,
        transform 0.42s ease;
}

.tgcom-hero [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.tgcom-hero__top[data-reveal] {
    transition-delay: 0.02s;
}

.tgcom-hero__content[data-reveal] {
    transition-delay: 0.06s;
}

.tgcom-floating--one[data-reveal] {
    transition-delay: 0.10s;
}

.tgcom-floating--two[data-reveal] {
    transition-delay: 0.14s;
}

.tgcom-floating--three[data-reveal] {
    transition-delay: 0.18s;
}

.tgcom-topic-line[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
}

.tgcom-topic-line[data-reveal] span {
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.36s ease,
        transform 0.36s ease;
}

.tgcom-topic-line[data-reveal].is-visible span {
    opacity: 1;
    transform: translateY(0);
}

.tgcom-topic-line[data-reveal].is-visible span:nth-child(1) { transition-delay: 0.02s; }
.tgcom-topic-line[data-reveal].is-visible span:nth-child(2) { transition-delay: 0.05s; }
.tgcom-topic-line[data-reveal].is-visible span:nth-child(3) { transition-delay: 0.08s; }
.tgcom-topic-line[data-reveal].is-visible span:nth-child(4) { transition-delay: 0.11s; }
.tgcom-topic-line[data-reveal].is-visible span:nth-child(5) { transition-delay: 0.14s; }
.tgcom-topic-line[data-reveal].is-visible span:nth-child(6) { transition-delay: 0.17s; }
.tgcom-topic-line[data-reveal].is-visible span:nth-child(7) { transition-delay: 0.20s; }
.tgcom-topic-line[data-reveal].is-visible span:nth-child(8) { transition-delay: 0.23s; }
.tgcom-topic-line[data-reveal].is-visible span:nth-child(9) { transition-delay: 0.26s; }
.tgcom-topic-line[data-reveal].is-visible span:nth-child(10) { transition-delay: 0.29s; }

/* responsive */

@media (max-width: 1100px) {
    .tgcom-hero {
        padding: 42px 0 64px;
    }

    .tgcom-hero__main {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "card-one"
            "card-two"
            "card-three";
        gap: 18px;
    }

    .tgcom-hero__content h1 {
        font-size: clamp(42px, 7vw, 64px);
    }

    .tgcom-floating {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .tgcom-hero {
        padding: 28px 0 54px;
    }

    .tgcom-hero__top {
        justify-content: flex-start;
        margin-bottom: 26px;
    }

    .tgcom-hero__content {
        text-align: left;
    }

    .tgcom-hero__content h1 {
        font-size: 38px;
        line-height: 1.07;
        letter-spacing: -0.045em;
    }

    .tgcom-hero__content p {
        max-width: 100%;
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.65;
    }

    .tgcom-hero__actions {
        justify-content: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-top: 28px;
    }

    .tgcom-hero__actions .tgcom-btn,
    .tgcom-seo__bottom a {
        width: 100%;
        min-width: 0;
    }

    .tgcom-floating {
        padding: 18px;
    }

    .tgcom-floating strong {
        font-size: 14px;
    }

    .tgcom-floating strong::before {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
    }

    .tgcom-floating p {
        font-size: 13px;
    }

    .tgcom-topic-line {
        gap: 8px;
        margin-top: 30px;
    }

    .tgcom-topic-line span {
        min-height: 34px;
        padding: 7px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .tgcom-hero__content h1 {
        font-size: 34px;
    }

    .tgcom-hero__label {
        min-height: 36px;
        padding: 8px 13px;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tgcom-hero [data-reveal],
    .tgcom-topic-line[data-reveal],
    .tgcom-topic-line[data-reveal] span {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* =========================
   QUESTIONS / WHAT YOU GET
========================= */

.tgcom-questions {
    padding: 56px 0;
    background: #fffdf8;
    overflow: hidden;
}

.tgcom-questions__grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 80px;
    align-items: center;
}

.tgcom-questions__image {
    position: relative;
}

.tgcom-questions__image::before {
    content: "";
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    background: rgba(98, 189, 84, 0.14);
    filter: blur(60px);
}

.tgcom-questions__image img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 34px 80px rgba(11, 11, 11, 0.12);
}

.tgcom-questions__content h2 {
    margin: 0 0 22px;
    color: var(--black);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -0.06em;
    text-wrap: balance;
    text-shadow: 0 16px 34px rgba(31, 92, 24, 0.22);
}

.tgcom-questions__content h3 {
    max-width: 740px;
    margin: 0 0 34px;
    color: #202020;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.28;
    letter-spacing: -0.035em;
}

.tgcom-questions__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 34px;
    margin-bottom: 36px;
}

.tgcom-question-item {
    position: relative;
    padding-left: 46px;
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
}

.tgcom-question-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 5px;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(98, 189, 84, 0.14);
    color: var(--green);
    font-size: 17px;
    font-weight: 900;
}

.tgcom-questions__bottom {
    max-width: 760px;
    margin: 0;
    padding: 24px 28px;
    border-left: 5px solid var(--green);
    border-radius: 0 22px 22px 0;
    background: rgba(98, 189, 84, 0.08);
    color: #4e5f4e;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.65;
}

/* =========================
   QUESTIONS RESPONSIVE
========================= */

/* laptop / small desktop */
@media (max-width: 1200px) {
    .tgcom-questions__grid {
        grid-template-columns: 420px 1fr;
        gap: 56px;
    }

    .tgcom-questions__content h2 {
        font-size: 42px;
    }

    .tgcom-questions__content h3 {
        font-size: 21px;
    }
}

/* tablet */
@media (max-width: 1024px) {
    .tgcom-questions {
        padding: 64px 0;
    }

    .tgcom-questions__grid {
        grid-template-columns: 1fr;
        gap: 42px;
        align-items: start;
    }

    .tgcom-questions__image {
        max-width: 420px;
        margin: 0 auto;
    }

    .tgcom-questions__content {
        max-width: 760px;
        margin: 0 auto;
        text-align: left;
    }

    .tgcom-questions__content h2 {
        margin-bottom: 18px;
        font-size: 40px;
        letter-spacing: -0.045em;
    }

    .tgcom-questions__content h3 {
        margin-bottom: 30px;
        font-size: 21px;
        line-height: 1.35;
    }

    .tgcom-questions__list {
        gap: 20px 28px;
        margin-bottom: 32px;
    }

    .tgcom-question-item {
        padding-left: 42px;
        font-size: 16px;
    }

    .tgcom-question-item::before {
        width: 26px;
        height: 26px;
        top: 2px;
    }
}

/* mobile */
@media (max-width: 768px) {
    .tgcom-questions {
        padding: 56px 0;
    }

    .tgcom-questions__grid {
        gap: 34px;
    }

    .tgcom-questions__image {
        max-width: 320px;
    }

    .tgcom-questions__image::before {
        inset: 20px;
        filter: blur(42px);
    }

    .tgcom-questions__image img {
        box-shadow: 0 24px 54px rgba(11, 11, 11, 0.12);
    }

    .tgcom-questions__content h2 {
        font-size: 34px;
        line-height: 1.05;
    }

    .tgcom-questions__content h3 {
        font-size: 19px;
        line-height: 1.42;
    }

    .tgcom-questions__list {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 28px;
    }

    .tgcom-question-item {
        min-height: 34px;
        padding-left: 42px;
        font-size: 16px;
        line-height: 1.4;
    }

    .tgcom-question-item::before {
        top: 0;
    }

    .tgcom-questions__bottom {
        padding: 20px;
        border-left-width: 4px;
        border-radius: 0 22px 22px 0;
        font-size: 15px;
        line-height: 1.6;
    }
}

/* small mobile */
@media (max-width: 480px) {
    .tgcom-questions {
        padding: 48px 0;
    }

    .tgcom-questions__image {
        max-width: 260px;
    }

    .tgcom-questions__content h2 {
        font-size: 30px;
    }

    .tgcom-questions__content h3 {
        margin-bottom: 26px;
        font-size: 18px;
    }

    .tgcom-question-item {
        padding-left: 38px;
        font-size: 15px;
    }

    .tgcom-question-item::before {
        width: 24px;
        height: 24px;
        font-size: 15px;
    }

    .tgcom-questions__bottom {
        padding: 18px;
        font-size: 14px;
    }
}


/* =========================
   LEAD FORM / BLOCK 3
========================= */

.tgcom-leadform {
    position: relative;
    padding: 56px 0;
    background:
        radial-gradient(900px 520px at 12% 10%, rgba(98, 189, 84, .18), transparent 60%),
        radial-gradient(900px 520px at 92% 30%, rgba(98, 189, 84, .10), transparent 65%),
        var(--black);
    color: #ffffff;
    overflow: hidden;
}

.tgcom-leadform .tgcom-container {
    position: relative;
    z-index: 2;
}

.tgcom-leadform__layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: stretch;
}

/* LEFT */

.tgcom-leadform__content {
    padding: 36px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
}

.tgcom-leadform__label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 24px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(98, 189, 84, 0.16);
    border: 1px solid rgba(98, 189, 84, 0.34);
    color: #8ee87f;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.tgcom-leadform__content h3 {
    max-width: 580px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.tgcom-leadform__content > p {
    max-width: 560px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
}

.tgcom-leadform__benefits {
    margin-top: 30px;
    padding: 24px;
    border-radius: 22px;
    background: rgba(98, 189, 84, 0.11);
    border: 1px solid rgba(98, 189, 84, 0.22);
}

.tgcom-leadform__benefits h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

.tgcom-leadform__benefits ul {
    display: grid;
    gap: 13px;
    margin-top: 16px;
    list-style: none;
}

.tgcom-leadform__benefits li {
    position: relative;
    padding-left: 32px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

.tgcom-leadform__benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #62BD54;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

/* RIGHT FORM */

.tgcom-leadform__box {
    padding: 36px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(98, 189, 84, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.tgcom-leadform__box-head {
    margin-bottom: 24px;
}

.tgcom-leadform__box-head h3 {
    color: #0B0B0B;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.tgcom-leadform__box-head p {
    max-width: 500px;
    margin-top: 10px;
    color: #4B5563;
    font-size: 15px;
    line-height: 1.7;
}

.tgcom-leadform__form {
    display: grid;
    gap: 16px;
}

.tgcom-leadform__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.tgcom-leadform__field {
    display: grid;
    gap: 8px;
}

.tgcom-leadform__field label {
    color: #0B0B0B;
    font-size: 13px;
    font-weight: 700;
}

.tgcom-leadform__field input,
.tgcom-leadform__field textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border-radius: 22px;
    border: 1px solid #DDE7DB;
    background: #F8FBF7;
    color: #0B0B0B;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.tgcom-leadform__field textarea {
    min-height: 128px;
    resize: vertical;
}

.tgcom-leadform__field input:focus,
.tgcom-leadform__field textarea:focus {
    background: #ffffff;
    border-color: #62BD54;
    box-shadow: 0 0 0 3px rgba(98, 189, 84, 0.14);
}

.tgcom-leadform__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    padding: 16px 24px;
    border: none;
    border-radius: 999px;
    background: #62BD54;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.tgcom-leadform__submit:hover {
    transform: translateY(-1px);
    background: #55ad49;
    box-shadow: 0 14px 28px rgba(98, 189, 84, 0.26);
}

.tgcom-leadform__telegram {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(11, 11, 11, 0.08);
}

.tgcom-leadform__telegram p {
    color: #4B5563;
    font-size: 14px;
    line-height: 1.65;
}

.tgcom-leadform__telegram a {
    display: inline-flex;
    width: fit-content;
    margin-top: 12px;
    color: #4EAA42;
    font-size: 14px;
    font-weight: 800;
}

.tgcom-leadform__telegram a:hover {
    color: #3F9734;
}

/* alerts */

.tgcom-leadform .form-alert {
    margin-bottom: 16px;
    padding: 13px 15px;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.tgcom-leadform .form-alert--success {
    background: #ECF9E9;
    border: 1px solid rgba(98, 189, 84, 0.28);
    color: #2F8F28;
}

.tgcom-leadform .form-alert--error {
    background: #FFF1F1;
    border: 1px solid rgba(220, 38, 38, 0.18);
    color: #B42318;
}

/* responsive */

@media (max-width: 1100px) {
    .tgcom-leadform__layout {
        grid-template-columns: 1fr;
    }

    .tgcom-leadform__content h3,
    .tgcom-leadform__content > p {
        max-width: 760px;
    }
}

@media (max-width: 768px) {
    .tgcom-leadform {
        padding: 64px 0;
    }

    .tgcom-leadform__layout {
        gap: 22px;
    }

    .tgcom-leadform__content,
    .tgcom-leadform__box {
        padding: 24px;
        border-radius: 22px;
    }

    .tgcom-leadform__content h3 {
        font-size: 30px;
    }

    .tgcom-leadform__content > p {
        font-size: 15px;
    }

    .tgcom-leadform__benefits {
        padding: 20px;
    }

    .tgcom-leadform__row {
        grid-template-columns: 1fr;
    }

    .tgcom-leadform__box-head h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .tgcom-leadform {
        padding: 52px 0;
    }

    .tgcom-leadform__content,
    .tgcom-leadform__box {
        padding: 20px;
        border-radius: 22px;
    }

    .tgcom-leadform__content h3 {
        font-size: 27px;
    }
}



/* =========================
   SEO CONTENT BLOCK
========================= */

.tgcom-seo {
    padding: 64px 0;
    background: #0B0B0B;
}

.tgcom-seo__card {
    position: relative;
    padding: 48px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(98, 189, 84, 0.28), transparent 34%),
        linear-gradient(135deg, #62BD54 0%, #4EAA42 46%, #111111 128%);
    color: #ffffff;
    overflow: hidden;
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.32),
        0 18px 48px rgba(98, 189, 84, 0.18);
}

.tgcom-seo__card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.32;
}

.tgcom-seo__card > * {
    position: relative;
    z-index: 1;
}

.tgcom-seo__top {
    margin-bottom: 38px;
}

.tgcom-seo__top h2 {
    margin: 0;
    max-width: 980px;
    color: #ffffff;
    font-size: 46px;
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -0.055em;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.tgcom-seo__body {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 46px;
    align-items: start;
}

.tgcom-seo__text {
    display: grid;
    gap: 18px;
}

.tgcom-seo__text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
}

.tgcom-seo__side {
    padding: 28px;
    border-radius: 22px;
    background: rgba(11, 11, 11, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.tgcom-seo__side h3 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 850;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.tgcom-seo__side ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tgcom-seo__side li {
    position: relative;
    padding-left: 34px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
}

.tgcom-seo__side li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.14);
}

.tgcom-seo__bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    margin-top: 42px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.tgcom-seo__bottom p {
    max-width: 820px;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.65;
}

.tgcom-seo__bottom a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 15px 24px;
    border-radius: 999px;
    background: #0B0B0B;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.30),
        0 0 0 6px rgba(255, 255, 255, 0.08);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background-color .18s ease,
        color .18s ease,
        border-color .18s ease;
}

.tgcom-seo__bottom a:hover {
    transform: translateY(-2px);
    background: #ffffff;
    color: #0B0B0B;
    border-color: #ffffff;
    box-shadow:
        0 22px 46px rgba(0, 0, 0, 0.34),
        0 0 0 7px rgba(255, 255, 255, 0.10);
}

/* =========================
   SEO LIGHT REVEAL
========================= */

.tgcom-seo [data-reveal] {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.tgcom-seo [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.tgcom-seo__top[data-reveal] {
    transition-delay: 0.02s;
}

.tgcom-seo__text[data-reveal] {
    transition-delay: 0.06s;
}

.tgcom-seo__side[data-reveal] {
    transition-delay: 0.10s;
}

.tgcom-seo__bottom[data-reveal] {
    transition-delay: 0.14s;
}

/* =========================
   SEO RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .tgcom-seo {
        padding: 64px 0 76px;
    }

    .tgcom-seo__card {
        padding: 36px;
    }

    .tgcom-seo__body {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tgcom-seo__bottom {
        grid-template-columns: 1fr;
    }

    .tgcom-seo__bottom a {
        width: fit-content;
    }
}

@media (max-width: 768px) {
    .tgcom-seo {
        padding: 56px 0 1px;
    }

    .tgcom-seo__card {
        padding: 26px;
    }

    .tgcom-seo__top {
        margin-bottom: 30px;
    }

    .tgcom-seo__top h2 {
        font-size: 30px;
    }

    .tgcom-seo__text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .tgcom-seo__side {
        padding: 22px;
    }

    .tgcom-seo__side h3 {
        font-size: 20px;
    }

    .tgcom-seo__side li {
        font-size: 15px;
    }

    .tgcom-seo__bottom {
        margin-top: 32px;
        padding-top: 26px;
    }

    .tgcom-seo__bottom p {
        font-size: 15px;
    }

    .tgcom-seo__bottom a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .tgcom-seo__card {
        padding: 22px;
    }

    .tgcom-seo__top h2 {
        font-size: 27px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tgcom-seo [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}