:root {
    --bg: #07070d;
    --bg-deep: #050509;
    --bg-soft: #10101a;
    --bg-card: rgba(255, 255, 255, 0.06);
    --bg-card-strong: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --muted: #b8b8c8;
    --muted-2: #8c8ca3;
    --purple: #7c3cff;
    --purple-2: #b44dff;
    --pink: #ff3df2;
    --cyan: #22d3ee;
    --green: #22c55e;
    --gold: #ffcf70;
    --border: rgba(255, 255, 255, 0.14);
    --border-strong: rgba(180, 77, 255, 0.45);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    --shadow-purple: 0 0 60px rgba(124, 60, 255, 0.32);
    --radius: 26px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(124, 60, 255, 0.35), transparent 35%),
        radial-gradient(circle at top right, rgba(255, 61, 242, 0.22), transparent 30%),
        linear-gradient(180deg, #07070d 0%, #0b0b14 45%, #07070d 100%);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 80%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.scroll-progress {
    position: fixed;
    left: 0;
    top: 0;
    height: 3px;
    width: 0;
    z-index: 2000;
    background: linear-gradient(90deg, var(--purple), var(--pink), var(--cyan));
    box-shadow: 0 0 18px rgba(180, 77, 255, 0.8);
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 7, 13, 0.76);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 0 30px rgba(124, 60, 255, 0.35);
}

.brand-text {
    font-weight: 900;
    letter-spacing: 1.5px;
    font-size: 20px;
}

.brand-text span,
.footer-brand span {
    color: var(--purple-2);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.desktop-nav a {
    font-size: 14px;
    color: var(--muted);
    transition: 0.25s ease;
    position: relative;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--purple), var(--cyan));
    transition: 0.25s ease;
}

.desktop-nav a:hover {
    color: var(--text);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-cta {
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--purple), var(--purple-2));
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 0 35px rgba(124, 60, 255, 0.45);
    transition: 0.25s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 45px rgba(180, 77, 255, 0.58);
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--bg-card);
    cursor: pointer;
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
    border-radius: 10px;
    transition: 0.25s ease;
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    padding: 18px 16px 24px;
    border-top: 1px solid var(--border);
    background:
        radial-gradient(circle at top right, rgba(124, 60, 255, 0.2), transparent 42%),
        rgba(7, 7, 13, 0.97);
}

.mobile-menu a {
    display: block;
    padding: 15px 12px;
    color: var(--muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-weight: 800;
}

.mobile-menu a:hover {
    color: var(--text);
}

/* HERO */

.hero {
    padding: 96px 0 70px;
    position: relative;
}

.hero-panel {
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.55;
    pointer-events: none;
    animation: floatOrb 8s ease-in-out infinite;
}

.hero-orb-one {
    width: 280px;
    height: 280px;
    background: rgba(124, 60, 255, 0.34);
    top: 80px;
    right: 10%;
}

.hero-orb-two {
    width: 220px;
    height: 220px;
    background: rgba(34, 211, 238, 0.18);
    bottom: 30px;
    left: 8%;
    animation-delay: 1.2s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(18px, -22px, 0) scale(1.08);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow {
    color: var(--cyan);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1.8px;
    margin-bottom: 14px;
}

h1 {
    font-size: clamp(44px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -3px;
    max-width: 780px;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    margin-bottom: 20px;
}

h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.hero-text {
    font-size: 19px;
    color: var(--muted);
    max-width: 680px;
    margin-bottom: 28px;
}

.hero-actions,
.telegram-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.center-actions {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-110%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.24), transparent);
    transition: 0.45s ease;
}

.btn:hover::before {
    transform: translateX(110%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--purple-2));
    box-shadow: 0 0 45px rgba(124, 60, 255, 0.45);
}

.btn-secondary {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.06);
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hero-tags span {
    padding: 9px 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    background: rgba(255, 255, 255, 0.04);
}

.hero-card {
    position: relative;
}

.bonus-card {
    min-height: 440px;
    padding: 34px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(124, 60, 255, 0.22), rgba(255, 61, 242, 0.12)),
        rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.feature-card {
    transform-style: preserve-3d;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.bonus-card::before {
    content: "";
    position: absolute;
    inset: -80px;
    background:
        radial-gradient(circle, rgba(180, 77, 255, 0.35), transparent 35%),
        radial-gradient(circle at bottom right, rgba(34, 211, 238, 0.22), transparent 32%);
    filter: blur(12px);
    z-index: 0;
}

.bonus-card > * {
    position: relative;
    z-index: 1;
}

.hot {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 61, 242, 0.18);
    border: 1px solid rgba(255, 61, 242, 0.35);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 22px;
}

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

.bonus-card p,
.bonus-card li {
    color: var(--muted);
}

.bonus-card ul {
    margin-top: 22px;
    padding-left: 18px;
}

.card-glow-line {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--purple-2), transparent);
    opacity: 0.8;
}

/* SECTIONS */

.section {
    padding: 86px 0;
    position: relative;
}

.section.dark {
    background: rgba(255, 255, 255, 0.025);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.two-col {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 54px;
}

.two-col p {
    color: var(--muted);
    margin-bottom: 18px;
    font-size: 17px;
}

.center {
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 42px;
}

.info-card {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(124, 60, 255, 0.17), transparent 34%);
    opacity: 0;
    transition: 0.25s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-strong);
    border-color: rgba(180, 77, 255, 0.45);
}

.info-card h3,
.info-card p {
    position: relative;
    z-index: 1;
}

.info-card p {
    color: var(--muted);
}

/* TELEGRAM */

.telegram-box {
    padding: 42px;
    border-radius: 34px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(124, 60, 255, 0.28), transparent 38%),
        rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.telegram-box p {
    color: var(--muted);
}

/* FAQ */

.faq {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq details {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px 22px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.05);
    transition: 0.25s ease;
}

.faq details[open] {
    border-color: var(--border-strong);
    background: rgba(124, 60, 255, 0.08);
}

.faq summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 900;
}

.faq p {
    color: var(--muted);
    padding-top: 14px;
}

/* FINAL CTA */

.final-cta {
    padding-top: 90px;
    padding-bottom: 90px;
}

.final-cta-box {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top, rgba(180, 77, 255, 0.26), transparent 46%),
        rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-purple);
}

.final-cta-box p {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto;
}

/* FOOTER */

.site-footer {
    position: relative;
    padding: 78px 0 0;
    background:
        radial-gradient(circle at top, rgba(124, 60, 255, 0.18), transparent 42%),
        #050509;
    border-top: 1px solid rgba(180, 77, 255, 0.25);
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 999px;
    background: rgba(124, 60, 255, 0.16);
    filter: blur(40px);
    top: -280px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.7fr 0.8fr 0.8fr;
    gap: 34px;
    position: relative;
    z-index: 1;
}

.footer-main {
    padding-right: 20px;
}

.footer-brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 12px;
}

.footer-brand strong {
    font-size: 18px;
    letter-spacing: 1px;
}

.site-footer p {
    color: var(--muted);
    margin-top: 18px;
}

.warning {
    color: var(--gold) !important;
    font-size: 14px;
}

.site-footer h3 {
    font-size: 16px;
    margin-bottom: 16px;
}

.site-footer a {
    display: block;
    color: var(--muted);
    margin-bottom: 10px;
    transition: 0.25s ease;
}

.site-footer a:hover {
    color: var(--text);
    transform: translateX(3px);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    margin-top: 52px;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: var(--muted-2);
    font-size: 14px;
}

.footer-top-link {
    font-weight: 800;
    color: var(--cyan) !important;
}

/* CONTACT / LEGAL */

.page-hero {
    padding-bottom: 46px;
}

.contact-card {
    padding: 32px;
    border-radius: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.contact-form {
    display: grid;
    gap: 12px;
}

.contact-form label {
    font-weight: 800;
    color: var(--text);
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border-radius: 16px;
    padding: 14px 16px;
    outline: none;
    font-size: 15px;
}

.contact-form select option {
    background: #10101a;
    color: #ffffff;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(180, 77, 255, 0.75);
    box-shadow: 0 0 0 4px rgba(124, 60, 255, 0.18);
}

.char-counter {
    text-align: right;
    color: var(--muted-2);
    font-size: 13px;
}

.hidden-field {
    display: none !important;
}

.form-btn {
    border: 0;
    cursor: pointer;
    margin-top: 8px;
}

.form-success,
.form-error {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 18px;
    font-weight: 800;
}

.form-success {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #b8ffd0;
}

.form-error {
    background: rgba(239, 68, 68, 0.14);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #ffd0d0;
}

.legal-content {
    max-width: 920px;
}

.legal-content h2 {
    font-size: 30px;
    margin-top: 34px;
    margin-bottom: 12px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 18px;
}

/* FLOATING */

.floating-telegram {
    position: fixed;
    right: 20px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    z-index: 950;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    color: #fff;
    font-weight: 900;
    box-shadow: 0 0 35px rgba(34, 211, 238, 0.35);
    transition: 0.25s ease;
}

.floating-telegram:hover {
    transform: translateY(-4px) scale(1.04);
}

.back-to-top {
    position: fixed;
    left: 20px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    z-index: 950;
    background: rgba(7, 7, 13, 0.78);
    backdrop-filter: blur(14px);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: 0.25s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* REVEAL */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.22s;
}

/* RESPONSIVE */

@media (max-width: 980px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .burger {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero {
        padding: 62px 0 50px;
    }

    .hero-grid,
    .two-col,
    .telegram-box,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        order: -1;
    }

    .bonus-card {
        min-height: auto;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    h1 {
        letter-spacing: -2px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 22px, var(--container));
    }

    .header-inner {
        min-height: 72px;
    }

    .brand-logo {
        width: 44px;
        height: 44px;
    }

    .brand-text {
        font-size: 17px;
    }

    .hero {
        padding-top: 42px;
    }

    h1 {
        font-size: 43px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions,
    .telegram-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .section {
        padding: 62px 0;
    }

    .telegram-box,
    .bonus-card,
    .info-card,
    .contact-card,
    .final-cta-box {
        padding: 24px;
        border-radius: 24px;
    }

    .legal-content h2 {
        font-size: 25px;
    }

    .floating-telegram {
        right: 14px;
        bottom: 16px;
        width: 50px;
        height: 50px;
    }

    .back-to-top {
        left: 14px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Final responsive and layout pass */
html {
    min-height: 100%;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

main {
    flex: 1 0 auto;
}

.site-header {
    flex-shrink: 0;
}

.site-header.is-scrolled {
    background: rgba(7, 7, 13, 0.9);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
}

.site-footer {
    margin-top: auto;
    flex-shrink: 0;
}

.brand,
.footer-brand,
.header-cta,
.btn,
.burger,
.floating-telegram,
.back-to-top {
    -webkit-tap-highlight-color: transparent;
}

.hero-grid,
.cards-grid,
.footer-grid,
.two-col,
.telegram-box {
    min-width: 0;
}

.hero-content,
.hero-card,
.info-card,
.telegram-box,
.final-cta-box,
.footer-main,
.footer-col {
    min-width: 0;
}

.hero-content p,
.info-card p,
.telegram-box p,
.final-cta-box p,
.site-footer p,
.legal-content p {
    overflow-wrap: break-word;
}

.btn {
    text-align: center;
    white-space: normal;
}

.mobile-menu {
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.36);
}

.mobile-menu a:last-child {
    border-bottom: 0;
}

.bonus-card,
.info-card,
.telegram-box,
.final-cta-box,
.contact-card,
.faq details {
    backdrop-filter: blur(12px);
}

@media (max-width: 1180px) {
    .desktop-nav {
        gap: 16px;
    }

    .desktop-nav a {
        font-size: 13px;
    }

    .header-cta {
        padding-inline: 16px;
    }
}

@media (max-width: 980px) {
    body.mobile-menu-open {
        overflow: hidden;
    }

    .site-header {
        background: rgba(7, 7, 13, 0.92);
    }

    .header-inner {
        gap: 14px;
    }

    .brand {
        min-width: 0;
    }

    .brand-text {
        white-space: nowrap;
    }

    .burger {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex: 0 0 auto;
    }

    .burger span {
        margin: 3px auto;
    }

    .burger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .mobile-menu.active {
        display: block;
        max-height: calc(100svh - 72px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .hero {
        padding: 58px 0 54px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        align-items: stretch;
    }

    .hero-card {
        order: initial;
        width: 100%;
    }

    .hero-content {
        max-width: 780px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .telegram-actions,
    .hero-tags {
        justify-content: center;
    }

    .bonus-card {
        max-width: 720px;
        margin: 0 auto;
        min-height: auto;
    }

    .two-col {
        gap: 26px;
    }

    .two-col > div:first-child {
        max-width: 760px;
    }

    .telegram-box {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .telegram-box p {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 28px;
    }

    .footer-main {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 760px) {
    .cards-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid,
    .footer-main,
    .footer-col,
    .footer-bottom {
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .site-footer a:hover {
        transform: none;
    }
}

@media (max-width: 640px) {
    :root {
        --radius: 22px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .scroll-progress {
        height: 2px;
    }

    .header-inner {
        min-height: 68px;
    }

    .brand {
        gap: 10px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .brand-text {
        font-size: 16px;
        letter-spacing: 0.9px;
    }

    .burger {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .mobile-menu {
        padding: 10px 14px 16px;
    }

    .mobile-menu a {
        padding: 14px 10px;
        font-size: 15px;
        text-align: center;
    }

    .hero {
        padding: 38px 0 46px;
    }

    .hero-grid {
        gap: 28px;
    }

    .hero-orb-one {
        width: 170px;
        height: 170px;
        top: 58px;
        right: -42px;
        opacity: 0.42;
    }

    .hero-orb-two {
        width: 150px;
        height: 150px;
        left: -46px;
        bottom: 12px;
        opacity: 0.34;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: 1.15px;
        line-height: 1.45;
        margin-bottom: 12px;
    }

    h1 {
        font-size: clamp(36px, 11vw, 46px);
        line-height: 1.03;
        letter-spacing: -1.7px;
        margin-bottom: 18px;
    }

    h2 {
        font-size: clamp(28px, 8vw, 34px);
        line-height: 1.08;
        letter-spacing: -1.1px;
        margin-bottom: 16px;
    }

    h3 {
        font-size: 20px;
    }

    .hero-text,
    .two-col p,
    .legal-content p {
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-actions,
    .telegram-actions {
        gap: 12px;
        margin-top: 20px;
    }

    .btn {
        min-height: 50px;
        padding: 13px 18px;
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-tags {
        gap: 8px;
        margin-top: 22px;
    }

    .hero-tags span {
        font-size: 12px;
        padding: 8px 10px;
    }

    .bonus-card {
        padding: 22px;
        border-radius: 24px;
    }

    .bonus-card h2 {
        font-size: clamp(27px, 8vw, 34px);
        letter-spacing: -1px;
    }

    .bonus-card ul {
        padding-left: 0;
        list-style-position: inside;
    }

    .card-glow-line {
        left: 22px;
        right: 22px;
        bottom: 20px;
    }

    .section {
        padding: 56px 0;
    }

    .section.dark {
        background: rgba(255, 255, 255, 0.022);
    }

    .cards-grid {
        gap: 16px;
        margin-top: 30px;
    }

    .info-card,
    .telegram-box,
    .contact-card,
    .final-cta-box {
        padding: 22px;
        border-radius: 22px;
    }

    .telegram-box {
        gap: 20px;
    }

    .faq {
        margin-top: 28px;
    }

    .faq details {
        padding: 17px 18px;
        border-radius: 18px;
    }

    .faq summary {
        font-size: 16px;
        line-height: 1.45;
    }

    .final-cta {
        padding-top: 62px;
        padding-bottom: 78px;
    }

    .site-footer {
        padding-top: 58px;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-main p,
    .site-footer p {
        font-size: 15px;
    }

    .footer-bottom {
        margin-top: 36px;
        padding: 20px 0 calc(20px + env(safe-area-inset-bottom));
    }

    .footer-bottom p {
        line-height: 1.5;
    }

    .floating-telegram {
        right: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom));
        width: 48px;
        height: 48px;
        font-size: 14px;
    }

    .back-to-top {
        left: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom));
        width: 44px;
        height: 44px;
    }

    .reveal {
        transform: translateY(16px);
        transition-duration: 0.48s;
    }
}

@media (max-width: 380px) {
    .container {
        width: min(100% - 22px, var(--container));
    }

    .brand-text {
        font-size: 14px;
        letter-spacing: 0.7px;
    }

    h1 {
        font-size: 34px;
    }

    .hero-tags span {
        width: 100%;
        text-align: center;
    }
}
