html, body {
    overflow-x: hidden;
}

/* ========================
   1. HERO BANNER
   ======================== */
.tg-hero {
    display: flex;
    gap: 48px;
    align-items: center;
}

.tg-hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.tg-hero-text h1 {
    font: var(--txt-h1);
    color: var(--color-txt);
}

.tg-hero-text h1 span {
    color: #2AABEE;
}

.tg-hero-subtitle {
    font: var(--p-all-txt);
    color: var(--color-txt);
    max-width: 540px;
    line-height: 1.7;
}

.tg-hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.tg-hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tg-hero-feature img {
    width: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.tg-hero-feature p {
    font: var(--p-all-txt);
    color: var(--color-txt);
}

.tg-hero-img {
    flex-shrink: 0;
}

.tg-hero-img img {
    width: 28vw;
    max-width: 400px;
    min-width: 220px;
    animation: levitation 1.5s ease-in-out infinite alternate;
}

@media (max-width: 920px) {
    .tg-hero {
        flex-direction: column-reverse;
        text-align: center;
        gap: 32px;
    }
    .tg-hero-subtitle {
        max-width: 100%;
    }
    .tg-hero-text {
        align-items: center;
    }
    .tg-hero-feature {
        justify-content: center;
    }
    .tg-hero-img img {
        width: 220px;
    }
    .tg-hero-text .btn {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* ========================
   2. MOCK CHAT INTERFACE
   ======================== */
.tg-chat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.tg-chat-title {
    text-align: center;
    color: var(--color-txt);
}

.tg-chat-title h2 {
    font: var(--h2-txt);
    margin-bottom: 16px;
}

.tg-chat-title p {
    font: var(--p-all-txt);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.tg-chat-window {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    border: 1px solid #FFFFFF1A;
    overflow: hidden;
    background: #0e1621;
    box-shadow:
        0 8px 40px rgba(42, 171, 238, 0.08),
        0 2px 12px rgba(0, 0, 0, 0.4);
}

.tg-chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #17212b;
    border-bottom: 1px solid #FFFFFF0D;
}

.tg-chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2AABEE, #1B92D1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.tg-chat-avatar img {
    width: 26px;
    height: 26px;
}

.tg-chat-header-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tg-chat-name {
    font: 600 15px/1.2 'Inter', sans-serif;
    color: var(--color-txt);
}

.tg-chat-status {
    font: 400 12px/1.2 'Inter', sans-serif;
    color: #2AABEE;
}

.tg-chat-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 16px;
    min-height: 320px;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(42, 171, 238, 0.03) 0%, transparent 60%),
        #0e1621;
}

.tg-msg {
    display: flex;
    max-width: 85%;
}

.tg-msg-user {
    align-self: flex-end;
    justify-content: flex-end;
}

.tg-msg-bot {
    align-self: flex-start;
}

.tg-msg-bubble {
    padding: 10px 14px;
    border-radius: 14px;
    font: 400 clamp(13px, 1.2vw, 14px)/1.55 'Inter', sans-serif;
    color: var(--color-txt);
    position: relative;
}

.tg-msg-user .tg-msg-bubble {
    background: #2b5278;
    border-bottom-right-radius: 4px;
}

.tg-msg-bot .tg-msg-bubble {
    background: #182533;
    border-bottom-left-radius: 4px;
}

.tg-msg-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 2px 0;
}

.tg-msg-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(42, 171, 238, 0.12);
    border: 1px solid rgba(42, 171, 238, 0.3);
    font: 500 clamp(12px, 1.1vw, 13px)/1.3 'Inter', sans-serif;
    color: #2AABEE;
    cursor: default;
    transition: background 0.2s ease;
}

.tg-msg-btn:hover {
    background: rgba(42, 171, 238, 0.2);
}

.tg-chat-cta {
    margin-top: 8px;
}

@media (max-width: 575px) {
    .tg-chat-window {
        max-width: 100%;
    }
    .tg-msg {
        max-width: 92%;
    }
}

/* ========================
   3. WHY VPN THROUGH TELEGRAM
   ======================== */
.tg-why {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.tg-why-title {
    text-align: center;
    color: var(--color-txt);
}

.tg-why-title h2 {
    font: var(--h2-txt);
    margin-bottom: 16px;
}

.tg-why-title p {
    font: var(--p-all-txt);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.tg-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.tg-why-card {
    border-radius: 24px;
    border: 1px solid #FFFFFF26;
    padding: 32px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    background: rgba(3, 10, 32, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.tg-why-card:hover {
    transform: translateY(-4px);
    border-color: #2AABEE40;
}

.tg-why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 150% 150% at 50% 120%,
        #01559a 0%,
        #030A20 70%
    );
    z-index: -1;
}

.tg-why-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background-color: #040e2b;
    border: 1px solid #FFFFFF4D;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        4px 4px 12px 4px #0C50CF3C,
        inset 1px 6px 4px -4px #FFFFFF80;
    flex-shrink: 0;
}

.tg-why-icon img {
    width: 28px;
    height: 28px;
}

.tg-why-card-text h3 {
    font: 700 clamp(16px, 1.5vw, 20px)/clamp(20px, 2vw, 26px) 'Inter', sans-serif;
    color: var(--color-txt);
    margin-bottom: 10px;
}

.tg-why-card-text p {
    font: var(--p-all-txt);
    color: var(--color-txt);
    opacity: 0.85;
    line-height: 1.6;
}

@media (max-width: 920px) {
    .tg-why-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================
   4. STATS / NUMBERS
   ======================== */
.tg-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tg-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.tg-stat-card {
    border-radius: 24px;
    border: 1px solid #FFFFFF26;
    padding: 36px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    background: rgba(3, 10, 32, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.tg-stat-card:hover {
    transform: translateY(-4px);
    border-color: #2AABEE50;
}

.tg-stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 120% 120% at 50% 110%,
        rgba(42, 171, 238, 0.15) 0%,
        #030A20 70%
    );
    z-index: -1;
}

.tg-stat-number {
    font: 800 clamp(36px, 4vw, 56px)/1.1 'Inter', sans-serif;
    color: #2AABEE;
    letter-spacing: -1px;
}

.tg-stat-unit {
    font: 600 clamp(14px, 1.3vw, 18px)/1.3 'Inter', sans-serif;
    color: var(--color-txt);
    opacity: 0.9;
}

.tg-stat-label {
    font: 400 clamp(12px, 1.1vw, 14px)/1.5 'Inter', sans-serif;
    color: var(--color-txt);
    opacity: 0.6;
    margin-top: 4px;
}

@media (max-width: 920px) {
    .tg-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .tg-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================
   5. BOT FEATURES
   ======================== */
.tg-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.tg-features-title {
    text-align: center;
    color: var(--color-txt);
}

.tg-features-title h2 {
    font: var(--h2-txt);
    margin-bottom: 16px;
}

.tg-features-title p {
    font: var(--p-all-txt);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.tg-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.tg-feature-card {
    border-radius: 24px;
    border: 1px solid #FFFFFF26;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    background: rgba(3, 10, 32, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.tg-feature-card:hover {
    transform: translateY(-4px);
    border-color: #2AABEE80;
}

.tg-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 150% 150% at 50% 120%,
        #01559a 0%,
        #030A20 70%
    );
    z-index: -1;
}

.tg-feature-icon {
    width: 56px;
    height: 56px;
    background-color: #040e2b;
    border: 1px solid #FFFFFF4D;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        4px 4px 12px 4px #0C50CF3C,
        inset 1px 6px 4px -4px #FFFFFF80;
    flex-shrink: 0;
}

.tg-feature-icon img {
    width: 28px;
    height: 28px;
}

.tg-feature-card h3 {
    font: 700 clamp(16px, 1.5vw, 20px)/clamp(20px, 2vw, 26px) 'Inter', sans-serif;
    color: var(--color-txt);
}

.tg-feature-card p {
    font: var(--p-all-txt);
    color: var(--color-txt);
    opacity: 0.85;
    line-height: 1.6;
}

@media (max-width: 920px) {
    .tg-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .tg-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================
   6. COMPARISON
   ======================== */
.tg-compare {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.tg-compare-title {
    text-align: center;
    color: var(--color-txt);
}

.tg-compare-title h2 {
    font: var(--h2-txt);
    margin-bottom: 16px;
}

.tg-compare-title p {
    font: var(--p-all-txt);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.tg-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.tg-compare-col {
    border-radius: 24px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}

.tg-compare-old {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(3, 10, 32, 0.6);
}

.tg-compare-old::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 150% 150% at 50% 120%,
        rgba(255, 60, 60, 0.06) 0%,
        #030A20 70%
    );
    z-index: -1;
}

.tg-compare-new {
    border: 1px solid rgba(42, 171, 238, 0.3);
    background: rgba(3, 10, 32, 0.6);
}

.tg-compare-new::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 150% 150% at 50% 120%,
        rgba(42, 171, 238, 0.1) 0%,
        #030A20 70%
    );
    z-index: -1;
}

.tg-compare-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.tg-compare-header img {
    width: 36px;
    height: 36px;
}

.tg-compare-header h3 {
    font: 700 clamp(18px, 1.8vw, 24px)/1.3 'Inter', sans-serif;
    color: var(--color-txt);
}

.tg-compare-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tg-compare-col li {
    font: var(--p-all-txt);
    color: var(--color-txt);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.tg-x-mark {
    color: #ff4d4d;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
}

.tg-check-mark {
    color: #2AABEE;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
}

@media (max-width: 920px) {
    .tg-compare-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================
   7. PLATFORM CARDS
   ======================== */
.tg-platforms {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.tg-platforms-title {
    text-align: center;
    color: var(--color-txt);
}

.tg-platforms-title h2 {
    font: var(--h2-txt);
    margin-bottom: 16px;
}

.tg-platforms-title p {
    font: var(--p-all-txt);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

.tg-platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.tg-platform-card {
    border-radius: 20px;
    border: 1px solid #FFFFFF26;
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    background: rgba(3, 10, 32, 0.6);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    text-decoration: none;
}

.tg-platform-card:hover {
    transform: translateY(-4px);
    border-color: #2AABEE80;
    background: rgba(42, 171, 238, 0.08);
}

.tg-platform-card img {
    width: 48px;
    height: 48px;
}

.tg-platform-card span {
    font: 700 clamp(14px, 1.5vw, 18px)/clamp(18px, 2vw, 24px) 'Inter', sans-serif;
    color: var(--color-txt);
}

.tg-platform-card .tg-platform-note {
    font: 300 clamp(11px, 1vw, 13px)/1.4 'Inter', sans-serif;
    color: var(--color-txt);
    opacity: 0.6;
}

.tg-platform-card .btn {
    font-size: clamp(12px, 1.2vw, 14px);
    padding: 8px 20px;
}

@media (max-width: 920px) {
    .tg-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .tg-platforms-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================
   8. STEPS
   ======================== */
.tg-steps {
    display: flex;
    gap: 80px;
    align-items: center;
}

.tg-steps-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--color-txt);
    width: 45%;
}

.tg-steps-text h2 {
    font: var(--h2-txt);
}

.tg-steps-text p {
    font: var(--p-all-txt);
    line-height: 1.6;
}

.tg-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    flex: 1;
}

.tg-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.tg-step-num {
    width: 52px;
    height: 52px;
    background-color: #040e2b;
    border: 1px solid #FFFFFF4D;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        4px 4px 12px 4px #0C50CF3C,
        inset 1px 6px 4px -4px #FFFFFF80;
    flex-shrink: 0;
}

.tg-step-num img {
    width: 28px;
}

.tg-step p {
    font: var(--p-all-txt);
    color: var(--color-txt);
}

@media (max-width: 920px) {
    .tg-steps {
        flex-direction: column;
        gap: 36px;
        text-align: center;
    }
    .tg-steps-text {
        width: 100%;
    }
}

/* ========================
   9. FREE TRIAL CTA
   ======================== */
.tg-trial {
    position: relative;
    width: 100%;
}

.tg-trial::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--footer-gradient);
    z-index: -1;
    width: 120vw;
    left: -11vw;
    height: 100%;
}

.tg-trial-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 60px 0;
}

.tg-trial-img img {
    width: 24vw;
    max-width: 340px;
    min-width: 180px;
}

.tg-trial-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--color-txt);
}

.tg-trial-content h2 {
    font: var(--h2-txt);
}

.tg-trial-content p {
    font: var(--p-all-txt);
    line-height: 1.6;
}

.tg-trial-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tg-trial-list li {
    list-style: none;
    font: var(--p-all-txt);
    color: var(--color-txt);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tg-trial-list li img {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

@media (max-width: 920px) {
    .tg-trial-inner {
        flex-direction: column;
        gap: 36px;
        text-align: center;
    }
    .tg-trial-list li {
        justify-content: center;
    }
    .tg-trial-img img {
        width: 180px;
    }
    .tg-trial-content .btn {
        align-self: center;
    }
}

/* ========================
   11. SEO TEXT BLOCK
   ======================== */
.tg-seo-text {
    color: var(--color-txt);
    max-width: 900px;
    margin: 0 auto;
}

.tg-seo-text h2 {
    font: var(--h2-txt);
    text-align: center;
    margin-bottom: 24px;
}

.tg-seo-text h3 {
    font: 700 clamp(17px, 1.6vw, 22px)/clamp(22px, 2.2vw, 28px) 'Inter', sans-serif;
    color: var(--color-txt);
    margin-top: 24px;
    margin-bottom: 12px;
}

.tg-seo-text p {
    font: var(--p-all-txt);
    line-height: 1.8;
    margin-bottom: 16px;
}

.tg-seo-text ul {
    list-style: none;
    margin-bottom: 16px;
}

.tg-seo-text ul li {
    font: var(--p-all-txt);
    color: var(--color-txt);
    padding: 4px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.7;
}

.tg-seo-text ul li::before {
    content: "\2014";
    position: absolute;
    left: 0;
    color: #2AABEE;
}

/* ========================
   12. FAQ ACCORDION
   ======================== */
.tg-faq {
    color: var(--color-txt);
}

.tg-faq .questions-title {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.tg-faq .subtitle-question {
    font: var(--subtitle-question);
    color: var(--color-txt);
}

.tg-faq .questions {
    border-bottom: 1px solid #fff4;
    display: flex;
    flex-direction: column;
}

.tg-faq .questions input {
    display: none;
}

.tg-faq .questions label {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
}

.tg-faq .arrow-icon {
    width: 33px;
    transition: transform 0.2s ease;
}

.tg-faq .questions input:checked + .custom-label .arrow-icon {
    transform: rotate(180deg);
}

.tg-faq .question-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease;
}

.tg-faq .questions input:checked ~ .question-content {
    max-height: 700px;
}

.tg-faq .question-content p {
    font: var(--txt-ques);
    color: var(--color-txt);
    line-height: 1.6;
}

.tg-faq .question-content > *:last-child {
    padding-bottom: 10px;
}

.tg-faq .question-title-txt {
    font: var(--txt-questions);
    color: var(--color-txt);
}

@media (max-width: 720px) {
    .tg-faq .questions input:checked ~ .question-content {
        max-height: 2000px;
    }
}
