﻿:root {
            --bg: #050607;
            --panel: rgba(12, 14, 15, 0.82);
            --panel-strong: rgba(17, 18, 20, 0.95);
            --gold: #d6ab3a;
            --gold-bright: #f3cf6f;
            --gold-dark: #8d6417;
            --line: rgba(214, 171, 58, 0.32);
            --muted: #b9b7b2;
            --text: #f2efe8;
            --steel: #8f969d;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            min-width: 320px;
            color: var(--text);
            background:
                radial-gradient(circle at 16% 8%, rgba(35, 76, 118, 0.24), transparent 30%),
                radial-gradient(circle at 78% 6%, rgba(126, 48, 15, 0.18), transparent 28%),
                #030404;
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            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.018) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: linear-gradient(to bottom, transparent, black 16%, black 70%, transparent);
        }

        ::-webkit-scrollbar {
            width: 11px;
        }

        ::-webkit-scrollbar-track {
            background: #050607;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--gold-bright), var(--gold-dark));
            border: 2px solid #050607;
            border-radius: 999px;
        }

        .container {
            width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
        }

        header {
            position: fixed;
            inset: 0 0 auto 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(214, 171, 58, 0.16);
            background: rgba(3, 5, 7, 0.72);
            backdrop-filter: blur(14px);
            transition: background 0.25s ease, border-color 0.25s ease;
        }

        header.scrolled {
            background: rgba(3, 5, 7, 0.94);
            border-color: rgba(214, 171, 58, 0.3);
        }

        nav {
            width: min(1260px, calc(100% - 40px));
            min-height: 88px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            min-width: 210px;
            color: var(--text);
            text-decoration: none;
        }

        .logo img {
            width: 172px;
            height: auto;
            display: block;
            filter: drop-shadow(0 0 14px rgba(214, 171, 58, 0.18));
        }

        .nav-links {
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(18px, 3vw, 44px);
            flex: 1;
        }

        .nav-links a,
        .client-area {
            color: #f8f6ef;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.86rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
        }

        .nav-links a {
            position: relative;
            padding: 34px 0;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 0;
            height: 2px;
            transform: translateX(-50%);
            background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
            transition: width 0.25s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--gold-bright);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 56px;
        }

        .client-area {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 46px;
            padding: 0 20px;
            border: 1px solid var(--line);
            border-radius: 4px;
            white-space: nowrap;
        }

        .client-area:hover {
            color: #070707;
            background: var(--gold-bright);
            border-color: var(--gold-bright);
        }

        .hero {
            position: relative;
            min-height: min(900px, 92vh);
            padding: 110px 0 42px;
            display: grid;
            align-items: center;
            overflow: hidden;
            border-bottom: 1px solid rgba(214, 171, 58, 0.14);
        }

        .hero-video {
            position: absolute;
            inset: 50% auto auto 50%;
            width: 100%;
            height: 100%;
            min-width: 100%;
            min-height: 100%;
            transform: translate(-50%, -50%);
            object-fit: cover;
            opacity: 0.72;
            filter: saturate(1.22) contrast(1.08) brightness(1.08);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34) 42%, rgba(0, 0, 0, 0.72)),
                radial-gradient(ellipse at 20% 44%, rgba(41, 101, 154, 0.36), transparent 34%),
                radial-gradient(ellipse at 78% 42%, rgba(182, 88, 24, 0.26), transparent 34%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.88));
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 180px;
            background: linear-gradient(0deg, var(--bg), transparent);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            isolation: isolate;
            width: min(1120px, calc(100% - 40px));
            margin: 0 auto;
            text-align: center;
            padding-top: 18px;
        }

        .hero-logo {
            width: min(330px, 72vw);
            margin: 0 auto 12px;
            display: block;
            filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.65));
            animation: fadeInUp 0.8s ease both;
        }

        .eyebrow,
        .section-kicker {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            color: var(--gold-bright);
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 0.12em;
            font-size: clamp(0.76rem, 1.4vw, 1rem);
        }

        .eyebrow::before,
        .eyebrow::after,
        .section-kicker::before,
        .section-kicker::after {
            content: "";
            width: 56px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold));
        }

        .eyebrow::after,
        .section-kicker::after {
            background: linear-gradient(90deg, var(--gold), transparent);
        }

        .hero h1 {
            margin: 14px auto 16px;
            color: #fffaf0;
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(2.25rem, 5.8vw, 4.85rem);
            line-height: 0.95;
            text-transform: uppercase;
            letter-spacing: 0;
            text-shadow: 0 2px 0 rgba(0, 0, 0, 0.9), 0 12px 24px rgba(0, 0, 0, 0.72), 0 0 28px rgba(255, 244, 210, 0.24);
            -webkit-text-fill-color: #fffaf0;
            -webkit-text-stroke: 0;
            animation: fadeInUp 1s ease both;
        }

        .hero h1 span {
            position: relative;
            display: block;
            -webkit-text-stroke: 0;
            text-shadow: none;
            filter: none;
        }

        .hero h1 span::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -14px;
            width: min(520px, 78vw);
            height: 1px;
            transform: translateX(-50%);
            background: linear-gradient(90deg, transparent, rgba(214, 171, 58, 0.48), rgba(255, 244, 181, 0.9), rgba(214, 171, 58, 0.48), transparent);
            box-shadow: 0 0 18px rgba(243, 207, 111, 0.35);
        }

        .hero-copy {
            max-width: 730px;
            margin: 24px auto 0;
            color: #fff4de;
            font-size: clamp(1rem, 2vw, 1.18rem);
            line-height: 1.65;
            text-shadow: 0 2px 14px rgba(0, 0, 0, 0.78);
            animation: fadeInUp 1.12s ease both;
        }

        .hero-badges {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            width: min(720px, 100%);
            margin: 26px auto 28px;
            animation: fadeInUp 1.22s ease both;
        }

        .hero-badge {
            min-height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 10px 16px;
            border-right: 1px solid rgba(214, 171, 58, 0.18);
            color: #fff3dc;
            text-transform: uppercase;
            font-size: 0.72rem;
            line-height: 1.45;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.72);
        }

        .hero-badge:last-child {
            border-right: 0;
        }

        .hero-badge i {
            color: var(--gold-bright);
            font-size: 1.35rem;
        }

        .coder-icon {
            position: relative;
            width: 46px;
            min-width: 46px;
            height: 40px;
            display: inline-block;
            color: var(--gold-bright);
            filter: drop-shadow(0 0 10px rgba(214, 171, 58, 0.28));
            transform: translateY(1px);
        }

        .coder-head,
        .coder-body,
        .coder-chair,
        .coder-desk,
        .coder-monitor {
            position: absolute;
            display: block;
        }

        .coder-head {
            left: 8px;
            top: 3px;
            width: 9px;
            height: 9px;
            border: 2px solid currentColor;
            border-radius: 50%;
            background: rgba(243, 207, 111, 0.18);
        }

        .coder-body {
            left: 7px;
            top: 14px;
            width: 16px;
            height: 16px;
            border-left: 3px solid currentColor;
            border-bottom: 3px solid currentColor;
            border-radius: 2px 0 5px 5px;
            transform: skewX(-8deg);
        }

        .coder-chair {
            left: 1px;
            top: 20px;
            width: 18px;
            height: 14px;
            border-left: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            border-radius: 0 0 0 5px;
            opacity: 0.82;
        }

        .coder-desk {
            left: 22px;
            top: 29px;
            width: 23px;
            height: 2px;
            background: currentColor;
            box-shadow: 12px 0 0 currentColor;
        }

        .coder-monitor {
            right: 0;
            top: 9px;
            width: 20px;
            height: 15px;
            border: 2px solid currentColor;
            border-radius: 2px;
            background: rgba(7, 8, 9, 0.72);
        }

        .coder-monitor::after {
            content: "";
            position: absolute;
            left: 5px;
            bottom: -7px;
            width: 6px;
            height: 6px;
            border-left: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 1.32s ease both;
        }

        .btn,
        .plan-btn,
        .changelog-btn,
        .whatsapp-btn {
            min-height: 52px;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.9rem;
            font-weight: 900;
            letter-spacing: 0.06em;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
        }

        .btn {
            min-width: 190px;
            padding: 0 24px;
            border: 1px solid var(--line);
        }

        .btn-primary,
        .plan-btn {
            color: #090805;
            border-color: transparent;
            background: linear-gradient(135deg, #b87912, #f5d66d 48%, #bd811d);
            box-shadow: 0 16px 34px rgba(214, 171, 58, 0.22);
        }

        .btn-secondary,
        .changelog-btn {
            color: var(--text);
            background: rgba(3, 5, 7, 0.52);
            border: 1px solid var(--gold);
        }

        .btn-script {
            color: #f7fbff;
            border-color: rgba(92, 190, 255, 0.74);
            background:
                linear-gradient(135deg, rgba(18, 72, 110, 0.76), rgba(10, 13, 18, 0.62)),
                rgba(3, 5, 7, 0.55);
            box-shadow: 0 14px 28px rgba(48, 152, 220, 0.14);
        }

        .btn-contact {
            color: #06170c;
            border-color: transparent;
            background: linear-gradient(135deg, #1fb554, #61e487 58%, #24b75a);
            box-shadow: 0 16px 34px rgba(37, 211, 102, 0.24);
        }

        .btn-script:hover {
            border-color: #79d5ff;
            box-shadow: 0 18px 34px rgba(48, 152, 220, 0.25);
        }

        .btn-contact:hover {
            box-shadow: 0 18px 36px rgba(37, 211, 102, 0.34);
        }

        .btn:hover,
        .plan-btn:hover,
        .changelog-btn:hover,
        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 30px rgba(214, 171, 58, 0.18);
        }

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

        .section-light,
        .plans-section {
            background:
                linear-gradient(180deg, rgba(7, 8, 9, 0.96), rgba(4, 5, 6, 0.98)),
                radial-gradient(circle at center top, rgba(214, 171, 58, 0.1), transparent 36%);
        }

        .section-title {
            margin: 8px auto 36px;
            max-width: 920px;
            text-align: center;
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(1.9rem, 4vw, 3rem);
            line-height: 1.08;
            text-transform: uppercase;
            color: #ede9df;
            text-shadow: 0 10px 22px rgba(0, 0, 0, 0.75);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(260px, 1fr));
            gap: 22px;
            width: min(980px, 100%);
            margin: 0 auto;
            align-items: stretch;
        }

        .feature-card,
        .plan-card {
            position: relative;
            min-height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 4px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
                rgba(10, 12, 13, 0.86);
            box-shadow: inset 0 0 0 1px rgba(214, 171, 58, 0.04), 0 18px 40px rgba(0, 0, 0, 0.28);
            transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
            overflow: hidden;
        }

        .feature-card::before,
        .plan-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(214, 171, 58, 0.16), transparent 34%);
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .feature-card:hover,
        .plan-card:hover {
            transform: translateY(-7px);
            border-color: rgba(214, 171, 58, 0.55);
        }

        .feature-card:hover::before,
        .plan-card:hover::before {
            opacity: 1;
        }

        .feature-card {
            min-height: 372px;
            padding: 30px 28px 26px;
            display: flex;
            flex-direction: column;
            text-align: center;
        }

        .feature-card h3 {
            position: relative;
            min-height: 112px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            gap: 14px;
            margin-bottom: 18px;
            color: #fff7dd;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 1.05rem;
            line-height: 1.2;
            text-transform: uppercase;
        }

        .feature-card h3 i {
            color: var(--gold-bright);
            font-size: 2.35rem;
            text-shadow: 0 0 18px rgba(214, 171, 58, 0.34);
        }

        .feature-list,
        .plan-list,
        .changelog-list {
            position: relative;
            list-style: none;
        }

        .feature-list,
        .feature-text {
            min-height: 112px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .feature-list li {
            color: #d7d3cc;
            line-height: 1.55;
            padding: 6px 0;
            font-size: 0.94rem;
        }

        .feature-text {
            color: #d7d3cc;
            line-height: 1.6;
            font-size: 0.94rem;
        }

        .card-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            align-self: center;
            gap: 8px;
            margin-top: auto;
            padding-top: 20px;
            color: var(--gold-bright);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.78rem;
            font-weight: 900;
            letter-spacing: 0.08em;
        }

        .card-link:hover {
            color: #fff0b8;
        }

        .note {
            position: relative;
            margin-top: 16px;
            padding: 12px;
            color: #d8c286;
            border-top: 1px solid rgba(214, 171, 58, 0.22);
            font-size: 0.86rem;
            line-height: 1.5;
        }

        .trust-row {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
            margin-top: 38px;
            padding-top: 28px;
            border-top: 1px solid rgba(214, 171, 58, 0.13);
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 16px;
            min-height: 72px;
            padding: 0 8px;
            border-right: 1px solid rgba(214, 171, 58, 0.14);
        }

        .trust-item:last-child {
            border-right: 0;
        }

        .trust-item i {
            min-width: 44px;
            color: var(--gold-bright);
            font-size: 2rem;
        }

        .trust-item strong {
            display: block;
            margin-bottom: 4px;
            color: var(--gold-bright);
            text-transform: uppercase;
            font-size: 0.86rem;
            letter-spacing: 0.06em;
        }

        .trust-item span {
            color: #c8c4bc;
            font-size: 0.9rem;
            line-height: 1.45;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
            margin-top: 34px;
        }

        .plan-card {
            padding: 30px;
            display: flex;
            flex-direction: column;
        }

        .plan-card h3 {
            position: relative;
            margin-bottom: 24px;
            color: var(--gold-bright);
            font-family: Georgia, "Times New Roman", serif;
            font-size: 1.45rem;
            line-height: 1.22;
            text-transform: uppercase;
        }

        .plan-content {
            position: relative;
            flex: 1;
            text-align: left;
        }

        .plan-section {
            margin-bottom: 22px;
        }

        .plan-section-title {
            display: flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 10px;
            color: #fff0b8;
            text-transform: uppercase;
            font-size: 0.78rem;
            font-weight: 900;
            letter-spacing: 0.08em;
        }

        .plan-list li,
        .changelog-list li {
            position: relative;
            padding: 8px 0 8px 24px;
            color: #d7d3cc;
            line-height: 1.45;
        }

        .plan-list li::before,
        .changelog-list li::before {
            content: "\f00c";
            position: absolute;
            left: 0;
            top: 9px;
            color: var(--gold-bright);
            font: 900 0.78rem/1 "Font Awesome 6 Free";
        }

        .plan-buttons {
            position: relative;
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            margin-top: 14px;
        }

        .plan-btn,
        .changelog-btn {
            width: 100%;
            border: 1px solid var(--gold);
            cursor: pointer;
        }

        .changelog-btn {
            font-family: inherit;
        }

        .contact-section {
            background:
                linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.7)),
                radial-gradient(circle at 50% 0, rgba(214, 171, 58, 0.14), transparent 38%);
        }

        .contact-content {
            width: min(720px, 100%);
            margin: 0 auto;
            text-align: center;
        }

        .contact-content p {
            margin-bottom: 28px;
            color: #d7d3cc;
            font-size: 1.08rem;
            line-height: 1.6;
        }

        .whatsapp-btn {
            min-width: min(360px, 100%);
            padding: 0 24px;
            color: #06170c;
            background: linear-gradient(135deg, #1fb554, #61e487);
            border: 0;
            box-shadow: 0 16px 34px rgba(37, 211, 102, 0.22);
        }

        .modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 2000;
            padding: 20px;
            background: rgba(0, 0, 0, 0.86);
            backdrop-filter: blur(8px);
        }

        .modal.active {
            display: grid;
            place-items: center;
        }

        .modal-content {
            width: min(820px, 100%);
            max-height: 88vh;
            overflow-y: auto;
            border: 1px solid rgba(214, 171, 58, 0.55);
            border-radius: 4px;
            background: var(--panel-strong);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
            animation: slideUp 0.28s ease both;
        }

        .modal-header {
            position: sticky;
            top: 0;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 24px 28px;
            border-bottom: 1px solid rgba(214, 171, 58, 0.24);
            background: rgba(12, 14, 15, 0.98);
        }

        .modal-header h2 {
            color: var(--gold-bright);
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(1.35rem, 4vw, 2rem);
            text-transform: uppercase;
        }

        .close-modal {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            color: var(--gold-bright);
            background: transparent;
            border: 1px solid rgba(214, 171, 58, 0.42);
            border-radius: 4px;
            font-size: 1.6rem;
            cursor: pointer;
        }

        #modalBody {
            padding: 26px 28px 32px;
        }

        .changelog-section {
            margin-bottom: 24px;
        }

        .changelog-section-title {
            margin-bottom: 8px;
            color: #fff0b8;
            text-transform: uppercase;
            font-weight: 900;
            letter-spacing: 0.08em;
        }

        footer {
            padding: 28px 20px;
            text-align: center;
            color: #a9a49b;
            border-top: 1px solid rgba(214, 171, 58, 0.14);
            background: #030404;
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .scroll-top-btn,
        .scroll-down-btn {
            position: fixed;
            right: 24px;
            z-index: 999;
            width: 48px;
            height: 48px;
            display: none;
            place-items: center;
            color: #090805;
            background: linear-gradient(135deg, #b87912, #f5d66d 55%, #bd811d);
            border: 0;
            border-radius: 4px;
            cursor: pointer;
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.42);
        }

        .scroll-top-btn {
            bottom: 24px;
        }

        .scroll-down-btn {
            bottom: 82px;
        }

        .scroll-top-btn.visible,
        .scroll-down-btn.visible {
            display: grid;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.55s ease, transform 0.55s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(22px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(22px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1020px) {
            nav {
                min-height: 78px;
            }

            .logo {
                min-width: 0;
            }

            .logo img {
                width: 146px;
            }

            .client-area {
                display: none;
            }

            .features-grid,
            .trust-row {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

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

        @media (max-width: 760px) {
            .container,
            nav,
            .hero-content {
                width: min(100% - 28px, 1180px);
            }

            nav {
                min-height: auto;
                padding: 12px 0;
                align-items: center;
                flex-wrap: wrap;
                justify-content: center;
            }

            .logo img {
                width: 150px;
            }

            .nav-links {
                flex: 0 0 100%;
                gap: 14px;
                justify-content: center;
                overflow-x: auto;
                padding-bottom: 4px;
            }

            .nav-links a {
                padding: 8px 0;
                font-size: 0.72rem;
            }

            .hero {
                min-height: auto;
                padding: 132px 0 46px;
            }

            .hero-logo {
                width: min(290px, 84vw);
            }

            .eyebrow::before,
            .eyebrow::after,
            .section-kicker::before,
            .section-kicker::after {
                width: 28px;
            }

            .hero-badges {
                grid-template-columns: 1fr;
                margin: 22px auto;
            }

            .hero-badge {
                border-right: 0;
                border-bottom: 1px solid rgba(214, 171, 58, 0.14);
            }

            .btn {
                width: 100%;
            }

            section {
                padding: 64px 0;
            }

            .features-grid,
            .trust-row {
                grid-template-columns: 1fr;
            }

            .trust-item {
                border-right: 0;
                border-bottom: 1px solid rgba(214, 171, 58, 0.14);
                padding: 0 0 16px;
            }

            .scroll-top-btn,
            .scroll-down-btn {
                right: 14px;
                width: 44px;
                height: 44px;
            }
        }
.config-page .plans-section {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 84px;
}

.scripts-page {
    background:
        radial-gradient(circle at 20% 8%, rgba(30, 62, 94, 0.22), transparent 30%),
        radial-gradient(circle at 80% 12%, rgba(120, 54, 16, 0.2), transparent 28%),
        #030404;
}

.scripts-page .container {
    width: min(1360px, calc(100% - 40px));
}

.scripts-catalog {
    padding: 0 0 84px;
    background:
        linear-gradient(180deg, rgba(3, 4, 5, 0.92), rgba(3, 4, 5, 0.98)),
        radial-gradient(circle at 50% 0, rgba(214, 171, 58, 0.14), transparent 34%);
}

.scripts-hero {
    position: relative;
    padding: 138px 0 26px;
    border-bottom: 1px solid rgba(214, 171, 58, 0.14);
    overflow: hidden;
}

.scripts-hero::before {
    content: "";
    position: absolute;
    inset: 88px 0 auto;
    height: 245px;
    opacity: 0.42;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.82)),
        url("../images/logo.png") center 22% / 440px auto no-repeat;
    filter: saturate(0.74) brightness(0.62);
}

.scripts-hero .container {
    position: relative;
    z-index: 1;
}

.scripts-title {
    width: min(920px, 100%);
    margin: 10px auto 10px;
    color: #f0eee8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.1rem, 5.1vw, 4rem);
    line-height: 0.98;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.8);
}

.hero h1 span,
.scripts-title span {
    display: block;
    color: var(--gold-bright);
    background: linear-gradient(180deg, #fff7c7 0%, #f0cf6d 54%, #c79026 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.scripts-subtitle {
    max-width: 820px;
    margin: 0 auto;
    color: #d7d3cc;
    text-align: center;
    line-height: 1.6;
}

.scripts-value-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    background: rgba(7, 9, 11, 0.74);
    backdrop-filter: blur(8px);
}

.scripts-value {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-right: 1px solid rgba(214, 171, 58, 0.16);
}

.scripts-value:last-child {
    border-right: 0;
}

.scripts-value i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--gold-bright);
    border: 1px solid rgba(214, 171, 58, 0.42);
    border-radius: 50%;
    font-size: 1.25rem;
}

.scripts-value strong {
    display: block;
    margin-bottom: 4px;
    color: #f5f0e6;
    font-size: 0.88rem;
}

.scripts-value span {
    color: #beb9b0;
    font-size: 0.82rem;
}

.scripts-toolbar {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(130px, 0.7fr)) minmax(270px, 1.15fr);
    gap: 12px;
    align-items: stretch;
    margin: 28px 0 16px;
}

.scripts-toolbar-single {
    grid-template-columns: minmax(280px, 640px);
    justify-content: center;
    margin: 22px 0 12px;
}

.scripts-toolbar-single .custom-script-box {
    grid-column: auto;
    text-align: center;
    align-items: center;
}

.scripts-toolbar label,
.custom-script-box {
    min-height: 62px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 4px;
    background: rgba(7, 9, 11, 0.82);
}

.scripts-toolbar label {
    position: relative;
    padding: 8px 14px;
}

.scripts-toolbar label span {
    color: #948f85;
    text-transform: uppercase;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.scripts-toolbar input,
.scripts-toolbar select {
    width: 100%;
    margin-top: 5px;
    color: #f3efe6;
    background: transparent;
    border: 0;
    outline: 0;
    font: inherit;
}

.scripts-toolbar select {
    cursor: pointer;
}

.scripts-toolbar option {
    color: #111;
}

.script-search {
    padding-right: 46px;
}

.script-search i {
    position: absolute;
    right: 16px;
    bottom: 18px;
    color: var(--gold-bright);
}

.custom-script-box {
    gap: 4px;
    padding: 10px 14px;
    border-color: rgba(214, 171, 58, 0.35);
}

.custom-script-box strong {
    color: var(--gold-bright);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}

.custom-script-box span {
    color: #c7c1b8;
    font-size: 0.8rem;
}

.custom-script-box a {
    width: fit-content;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    color: var(--gold-bright);
    border: 1px solid var(--gold);
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 900;
}

.scripts-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.scripts-grid-single {
    width: min(360px, 100%);
    grid-template-columns: 1fr;
    margin: 12px auto 0;
}

.script-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)), rgba(8, 10, 12, 0.9);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.script-card:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 171, 58, 0.58);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.38);
}

.script-card[hidden] {
    display: none;
}

.script-thumb {
    position: relative;
    min-height: 118px;
    padding: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(135deg, rgba(214, 171, 58, 0.12), transparent 55%),
        radial-gradient(circle at 68% 28%, rgba(214, 171, 58, 0.22), transparent 28%),
        #090b0d;
}

.script-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.86;
    background:
        linear-gradient(120deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.64)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 12px);
}

.script-thumb i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff6cf;
    border: 2px solid currentColor;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.52);
    font-size: 1.25rem;
    box-shadow: 0 0 18px rgba(214, 171, 58, 0.22);
}

.script-thumb span {
    align-self: flex-end;
    padding: 4px 8px;
    color: #ecffd6;
    background: rgba(38, 111, 22, 0.68);
    border: 1px solid rgba(119, 222, 70, 0.5);
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 0.66rem;
    font-weight: 900;
}

.script-thumb .status-dev {
    color: #ffe6a3;
    background: rgba(139, 91, 12, 0.68);
    border-color: rgba(243, 207, 111, 0.58);
}

.thumb-mining { background-color: #14220c; }
.thumb-battle { background-color: #1b1410; }
.thumb-chest { background-color: #17112a; }
.thumb-arena { background-color: #260b12; }
.thumb-craft { background-color: #26180c; }
.thumb-guild { background-color: #111b27; }
.thumb-boss { background-color: #1b0d20; }
.thumb-ranking { background-color: #111923; }
.thumb-pet { background-color: #10231c; }
.thumb-event { background-color: #16200f; }
.thumb-market { background-color: #21170f; }
.thumb-api { background-color: #111315; }

.script-card-body {
    flex: 1;
    padding: 14px 12px 10px;
}

.script-card-body h2 {
    margin-bottom: 8px;
    color: #f4efe6;
    font-size: 0.98rem;
    line-height: 1.25;
}

.script-card-body p {
    min-height: 68px;
    color: #c5bfb6;
    font-size: 0.8rem;
    line-height: 1.45;
}

.script-card-body strong {
    display: block;
    margin-top: 10px;
    color: var(--gold-bright);
    font-size: 1rem;
}

.script-actions {
    padding: 0 12px 12px;
}

.script-actions a,
.script-disabled {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    border: 1px solid rgba(214, 171, 58, 0.72);
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    transition: color 0.22s ease, background 0.22s ease;
}

.script-actions a:hover {
    color: #080705;
    background: var(--gold-bright);
}

.script-disabled {
    cursor: not-allowed;
    color: rgba(215, 211, 204, 0.64);
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.035);
}

.scripts-empty {
    display: none;
    margin: 32px auto 0;
    color: #d7d3cc;
    text-align: center;
}

.scripts-empty.visible {
    display: block;
}

@media (max-width: 1160px) {
    .scripts-toolbar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .custom-script-box {
        grid-column: 1 / -1;
    }

    .scripts-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .scripts-hero {
        padding-top: 138px;
    }

    .scripts-value-row,
    .scripts-toolbar,
    .scripts-grid {
        grid-template-columns: 1fr;
    }

    .scripts-value {
        border-right: 0;
        border-bottom: 1px solid rgba(214, 171, 58, 0.16);
    }

    .scripts-value:last-child {
        border-bottom: 0;
    }
}

.script-detail-main {
    background:
        radial-gradient(circle at 18% 8%, rgba(33, 70, 102, 0.22), transparent 32%),
        radial-gradient(circle at 78% 16%, rgba(130, 58, 14, 0.18), transparent 30%),
        #030404;
}

.script-detail {
    padding: 120px 0 48px;
}

.detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #969087;
    font-size: 0.82rem;
}

.detail-breadcrumb a {
    color: #d8c37a;
    text-decoration: none;
}

.detail-breadcrumb i {
    color: rgba(214, 171, 58, 0.58);
    font-size: 0.68rem;
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 28px;
    align-items: start;
}

.detail-gallery,
.detail-summary,
.detail-demo,
.detail-features {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(7, 9, 11, 0.86);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.detail-gallery {
    padding: 12px;
}

.detail-main-media {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 4px;
    background:
        radial-gradient(circle at 64% 38%, rgba(242, 180, 54, 0.36), transparent 18%),
        radial-gradient(circle at 38% 42%, rgba(59, 118, 184, 0.28), transparent 24%),
        linear-gradient(135deg, #0c1117, #17100a 52%, #070809);
}

.detail-main-media::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.38;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 44%, rgba(0, 0, 0, 0.64)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
}

.battle-pass-panel {
    position: absolute;
    left: 28px;
    top: 28px;
    z-index: 1;
    width: 170px;
    padding: 14px;
    border: 1px solid rgba(214, 171, 58, 0.5);
    border-radius: 5px;
    background: rgba(8, 8, 8, 0.82);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
}

.battle-pass-top {
    margin-bottom: 14px;
    color: var(--gold-bright);
    text-align: center;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 900;
}

.battle-pass-level {
    color: #f4efe6;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 900;
}

.battle-pass-progress {
    height: 9px;
    margin: 14px 0;
    overflow: hidden;
    border: 1px solid rgba(214, 171, 58, 0.45);
    border-radius: 999px;
    background: #111;
}

.battle-pass-progress span {
    display: block;
    width: 72%;
    height: 100%;
    background: linear-gradient(90deg, #a86a13, #f3cf6f);
}

.battle-pass-rewards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.battle-pass-rewards i {
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--gold-bright);
    border: 1px solid rgba(214, 171, 58, 0.36);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
}

.battle-pass-character {
    position: absolute;
    right: 12%;
    bottom: 8%;
    width: 250px;
    height: 280px;
    border-radius: 50% 50% 18% 18%;
    background:
        radial-gradient(circle at 50% 16%, #f0c45f 0 5%, transparent 6%),
        linear-gradient(130deg, transparent 0 28%, rgba(193, 47, 38, 0.72) 29% 44%, transparent 45%),
        linear-gradient(230deg, transparent 0 30%, rgba(43, 88, 168, 0.66) 31% 46%, transparent 47%),
        radial-gradient(circle at 50% 48%, rgba(244, 185, 65, 0.95), rgba(86, 35, 18, 0.74) 44%, transparent 45%);
    filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.72));
}

.detail-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.detail-thumbs button {
    min-height: 58px;
    color: var(--gold-bright);
    background: rgba(4, 6, 8, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 4px;
    cursor: pointer;
}

.detail-thumbs button.active {
    border-color: var(--gold);
}

.detail-summary {
    padding: 30px;
}

.detail-tag {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 5px 9px;
    color: #ecffd6;
    background: rgba(38, 111, 22, 0.42);
    border: 1px solid rgba(119, 222, 70, 0.38);
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 900;
}

.detail-summary h1 {
    margin-bottom: 14px;
    color: #f0eee8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
    text-transform: uppercase;
}

.detail-summary p {
    max-width: 560px;
    color: #d2ccc3;
    line-height: 1.62;
}

.detail-price {
    display: block;
    margin: 24px 0;
    color: var(--gold-bright);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.2rem;
}

.detail-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.detail-buy,
.detail-back {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.detail-buy {
    color: #080705;
    background: linear-gradient(135deg, #b87912, #f5d66d 56%, #bd811d);
}

.detail-back {
    color: var(--gold-bright);
    border: 1px solid var(--gold);
    background: rgba(3, 5, 7, 0.52);
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid rgba(214, 171, 58, 0.16);
}

.detail-meta div {
    display: grid;
    gap: 4px;
}

.detail-meta i {
    color: var(--gold-bright);
}

.detail-meta span {
    color: #958f85;
    font-size: 0.72rem;
}

.detail-meta strong {
    color: #e8e2d8;
    font-size: 0.78rem;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    gap: 22px;
    margin-top: 24px;
}

.detail-demo,
.detail-features {
    padding: 24px;
}

.detail-demo h2,
.detail-features h2 {
    margin-bottom: 18px;
    color: #f0eee8;
    font-family: Georgia, "Times New Roman", serif;
    text-transform: uppercase;
    font-size: 1.25rem;
}

.demo-window {
    min-height: 290px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 18px;
    padding: 18px;
    background:
        radial-gradient(circle at 70% 40%, rgba(214, 171, 58, 0.22), transparent 24%),
        linear-gradient(135deg, #10151a, #08090a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.demo-sidebar {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 14px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(214, 171, 58, 0.24);
    border-radius: 4px;
}

.demo-sidebar strong {
    color: var(--gold-bright);
    text-transform: uppercase;
}

.demo-sidebar span {
    color: #d3cec5;
    font-size: 0.86rem;
}

.demo-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    align-items: center;
}

.reward-card {
    min-height: 128px;
    display: grid;
    place-items: center;
    gap: 8px;
    color: #d9d3c9;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
}

.reward-card.active {
    color: var(--gold-bright);
    border-color: var(--gold);
}

.reward-card i {
    font-size: 1.8rem;
}

.video-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background:
        radial-gradient(circle at 50% 50%, rgba(214, 171, 58, 0.18), transparent 32%),
        #070809;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.detail-features ul {
    display: grid;
    gap: 12px;
    list-style: none;
}

.detail-features li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.025);
}

.detail-features li i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--gold-bright);
    border: 1px solid rgba(214, 171, 58, 0.38);
    border-radius: 4px;
}

.detail-features strong {
    display: block;
    margin-bottom: 4px;
    color: var(--gold-bright);
}

.detail-features span {
    color: #c8c2b8;
    font-size: 0.86rem;
}

@media (max-width: 980px) {
    .detail-hero-grid,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 680px) {
    .script-detail {
        padding-top: 140px;
    }

    .detail-main-media {
        min-height: 340px;
    }

    .battle-pass-panel {
        left: 14px;
        top: 14px;
        width: 150px;
    }

    .demo-window,
    .demo-track {
        grid-template-columns: 1fr;
    }

    .detail-meta {
        grid-template-columns: 1fr;
    }
}

