        :root {
            --bg-dark: #0a0f1e;
            --bg-lighter: #12192e;
            --bg-card: #18223d;
            --gold-light: #FFD700;
            --gold-dark: #FFA500;
            --gold-gradient: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
            --text-light: #ffffff;
            --text-muted: #a0aec0;
            --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
            padding-bottom: 100px;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        section {
            padding: 80px 20px;
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 16px;
            }
        }

        /* Utility */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .gold-text {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        /* Niche Rotation Grid Wrapper */
        .niche-wrapper {
            display: inline-grid;
            align-items: center;
            justify-items: left;
            vertical-align: bottom;
            position: relative;
        }

        .gold-niche {
            grid-area: 1 / 1;
            color: #F5B301;
            font-weight: 700;
            white-space: nowrap;
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
        }

        .gold-niche.active {
            transform: translateY(0);
            opacity: 1;
        }

        .gold-niche.sliding-out {
            transform: translateY(25px);
            opacity: 0;
        }

        .gold-niche.sliding-in {
            transform: translateY(-25px);
            opacity: 0;
        }

        .btn-gold {
            background: var(--gold-gradient);
            color: #000;
            border: none;
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s var(--spring);
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .btn-gold:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
        }

        .btn-dark {
            background: transparent;
            color: var(--text-light);
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 14px 28px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s var(--spring);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-dark:hover {
            border-color: var(--gold-light);
            background: rgba(255, 215, 0, 0.05);
            transform: translateY(-3px) scale(1.02);
        }

        /* TOP BAR */
        .top-bar {
            padding: 20px 0;
            position: relative;
            z-index: 100;
        }

        .top-bar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

        .brand-logo img {
            height: 45px;
            width: auto;
        }

        .brand-logo-text {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            letter-spacing: -0.5px;
        }

        .brand-logo-text span {
            color: var(--gold-light);
        }

        .badge-pulsing {
            display: inline-block;
            background: rgba(255, 215, 0, 0.15);
            color: var(--gold-light);
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            border: 1px solid rgba(255, 215, 0, 0.3);
            animation: pulse 2s infinite;
            margin-bottom: 25px;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
            }
        }

        .lang-switcher {
            display: flex;
            z-index: 200;
        }

        .lang-dropdown {
            position: relative;
            display: inline-block;
        }

        .lang-btn {
            background: #2b3247;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.04);
            padding: 14px 24px;
            border-radius: 24px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.15rem;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .lang-btn:hover {
            background: #363e59;
        }

        .lang-btn .arrow {
            font-size: 0.9rem;
            color: #9cb1c9;
            transition: transform 0.3s ease;
            margin-left: 8px;
        }

        .lang-dropdown.open .lang-btn .arrow {
            transform: rotate(180deg);
        }

        .lang-menu {
            position: absolute;
            top: calc(100% + 12px);
            right: 0;
            background: #0a0f1e;
            border-radius: 12px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
            min-width: 250px;
            overflow: hidden;
            display: none;
            flex-direction: column;
            animation: fadeIn 0.3s ease-out;
            padding: 0;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .lang-dropdown.open .lang-menu {
            display: flex;
        }

        .lang-option {
            padding: 18px 26px;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            color: #ffffff;
            font-weight: 500;
            font-size: 1.35rem;
            transition: all 0.2s ease;
            background: transparent;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .lang-option:last-child {
            border-bottom: none;
        }

        .lang-option:hover {
            background: rgba(255, 215, 0, 0.1);
        }

        .lang-option.active {
            font-weight: 800;
            color: var(--gold-light);
            background: transparent;
        }

        @media (max-width: 768px) {
            .top-bar-inner {
                flex-direction: column;
                gap: 20px;
            }

            .lang-switcher {
                justify-content: center;
                margin-top: 5px;
            }

            .lang-menu {
                right: auto;
                left: 50%;
                transform: translateX(-50%);
            }

            @keyframes fadeIn {
                from {
                    opacity: 0;
                    transform: translate(-50%, -10px);
                }

                to {
                    opacity: 1;
                    transform: translate(-50%, 0);
                }
            }
        }

        /* HERO */
        .hero {
            padding: 60px 0;
        }

        .hero .container {
            max-width: 1100px;
            margin: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-left {
            text-align: left;
        }

        .hero-left .badge-pulsing {
            margin-left: 0;
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .hero p {
            font-size: 1.4rem;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        .hero-bullets {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 40px;
        }

        .bullet {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .bullet-icon {
            color: var(--gold-light);
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
        }

        .hero-right .form-card {
            margin: 0;
        }

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

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .bullet {
                font-size: 1rem;
            }

            .lang-switcher {
                margin-bottom: 10px;
            }
        }

        /* SOCIAL PROOF */
        .social-proof {
            background: var(--bg-lighter);
            padding: 50px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .social-proof-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            text-align: center;
        }

        .stat-card {
            background: var(--bg-card);
            padding: 40px 20px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
            border-color: rgba(255, 215, 0, 0.3);
        }

        .stat-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: inline-block;
            filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.2));
        }

        .stat-card h3 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .stat-card p {
            font-size: 1.1rem;
            color: var(--text-muted);
            font-weight: 600;
            line-height: 1.5;
        }

        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .social-proof-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
        }

        /* HOW IT WORKS PROCESS */
        .demo-section {
            padding: 80px 0;
            text-align: center;
        }

        .demo-section h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            align-items: stretch;
            margin: 0 auto 30px;
        }

        .step-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px 20px 30px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, border-color 0.3s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .step-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 215, 0, 0.3);
        }

        .step-badge {
            position: absolute;
            top: -15px;
            left: -15px;
            width: 40px;
            height: 40px;
            background: var(--gold-gradient);
            color: var(--bg-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 800;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        }

        .step-icon {
            font-size: 3.5rem;
            margin-bottom: 8px;
            filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.15));
        }

        .step-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.3;
        }

        .step-card p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        @media (max-width: 900px) {
            .steps-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .steps-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .step-card {
                padding-left: 30px;
            }

            .step-badge {
                top: -15px;
                left: 20px;
            }
        }

        /* ROI PERSUASION SECTION */
        .roi-section {
            padding: 60px 0;
            text-align: center;
        }

        .roi-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 20px;
            padding: 40px;
            max-width: 650px;
            margin: 0 auto;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 215, 0, 0.03);
            backdrop-filter: blur(10px);
        }

        .roi-title {
            font-size: 2.2rem;
            margin-bottom: 30px;
            font-weight: 700;
            color: #fff;
        }

        .roi-calculator {
            display: flex;
            flex-direction: column;
            gap: 15px;
            text-align: left;
            margin-bottom: 30px;
        }

        .roi-calc-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.03);
            padding: 18px 25px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .roi-calc-row.highlight {
            background: rgba(255, 215, 0, 0.08);
            border-color: rgba(255, 215, 0, 0.3);
        }

        .roi-calc-label {
            color: var(--text-light);
            font-size: 1.1rem;
            font-weight: 500;
        }

        .roi-calc-value {
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
        }

        .roi-calc-value.gold-text {
            color: var(--gold-light);
            font-size: 1.6rem;
        }

        .roi-divider {
            height: 1px;
            background: dashed rgba(255, 255, 255, 0.1);
            margin: 5px 0;
        }

        .roi-conclusion {
            font-size: 1.35rem;
            font-weight: 700;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 215, 0, 0.2);
            line-height: 1.5;
            color: var(--gold-light);
        }

        @media (max-width: 768px) {
            .roi-card {
                padding: 30px 20px;
            }

            .roi-title {
                font-size: 1.8rem;
                margin-bottom: 20px;
            }

            .roi-calc-row {
                flex-direction: column;
                text-align: center;
                gap: 8px;
                padding: 15px;
            }

            .roi-calc-value {
                font-size: 1.3rem;
            }

            .roi-calc-value.gold-text {
                font-size: 1.5rem;
            }

            .roi-conclusion {
                font-size: 1.15rem;
            }
        }

        /* PRICING */
        .pricing {
            padding: 60px 0;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            border: 2px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            transition: all 0.4s var(--spring);
        }

        .pricing-card.business-card {
            border: 2px solid var(--gold-light);
            background: linear-gradient(180deg, #1a2544 0%, #12192e 100%);
            box-shadow: 0 0 50px rgba(255, 215, 0, 0.15);
            transform: scale(1.05);
            z-index: 10;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .pricing-card.business-card:hover {
            transform: scale(1.05) translateY(-10px);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.25);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold-gradient);
            color: #000;
            padding: 6px 20px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.9rem;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .price-strikethrough {
            color: var(--text-muted);
            text-decoration: line-through;
            font-size: 1.2rem;
            margin-bottom: 5px;
            display: inline-block;
        }

        .price-big {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .price-sub {
            color: var(--text-muted);
            font-weight: 600;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .pricing-features {
            text-align: left;
            margin-bottom: 40px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .pricing-features .bullet {
            font-size: 1.05rem;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .pricing-grid {
                display: flex;
                flex-direction: column;
                gap: 40px;
            }

            .pricing-card.business-card {
                order: -1;
            }

            .pricing-card {
                padding: 30px 20px;
                max-width: 450px;
                margin: 0 auto;
            }

            .price-big {
                font-size: 2.5rem;
            }
        }

        /* BOTS WE BUILD */
        .bots-we-build {
            padding: 80px 0;
            background: var(--bg-dark);
        }

        .niches-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 40px;
        }

        .niche-card {
            background: var(--bg-card);
            padding: 30px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s var(--spring);
        }

        .niche-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 215, 0, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .niche-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .niche-card h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        .niche-features {
            margin-bottom: 25px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .niche-features .bullet {
            font-size: 0.95rem;
            color: var(--text-muted);
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .niche-features .bullet-icon {
            color: var(--gold-light);
            font-size: 0.9rem;
        }

        @media (max-width: 900px) {
            .niches-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .niches-grid {
                grid-template-columns: 1fr;
            }
        }

        /* TRUST SECTION */
        .trust {
            padding: 60px 0;
            background: var(--bg-lighter);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .trust-card {
            background: var(--bg-card);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s var(--spring);
        }

        .trust-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 215, 0, 0.3);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
        }

        .trust-icon {
            font-size: 2.5rem;
            margin: 0 auto 20px auto;
            color: var(--bg-dark);
            background: #FFD700;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
        }

        .trust-card h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .trust-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .trust-grid {
                grid-template-columns: 1fr;
            }
        }

        /* FORM SECTION */
        .form-section {
            padding: 100px 0;
        }

        .form-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .form-left h2 {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 40px;
        }

        .form-left-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 350px;
        }

        .form-left-buttons .btn-gold {
            width: 100%;
        }

        .form-left-buttons .btn-dark {
            width: 100%;
        }

        .form-card {
            background: var(--bg-card);
            padding: 40px;
            border-radius: 24px;
            border: 2px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 0 40px rgba(255, 215, 0, 0.1);
        }

        .form-card h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .form-control {
            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            padding: 15px 20px;
            border-radius: 12px;
            font-size: 1.1rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--gold-light);
            background: rgba(255, 215, 0, 0.05);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }

        .phone-input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .phone-flag {
            position: absolute;
            left: 15px;
            font-size: 1.2rem;
        }

        .phone-input {
            padding-left: 50px;
            letter-spacing: 1px;
            font-weight: 600;
        }

        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FFD700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            cursor: pointer;
        }

        select.form-control option {
            background: #0a0f1e;
            color: #ffffff;
            padding: 12px;
        }

        select.form-control option:checked,
        select.form-control option:hover {
            box-shadow: 0 0 10px 100px #FFD700 inset !important;
            background-color: #FFD700 !important;
            color: #0a0f1e !important;
        }

        .form-card .btn-gold {
            width: 100%;
            margin-top: 10px;
        }

        .success-msg {
            display: none;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid var(--gold-light);
            color: var(--gold-light);
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            margin-top: 20px;
            font-weight: 600;
            animation: slideIn 0.5s var(--spring);
        }

        .desktop-only {
            display: block;
        }

        .mobile-only {
            display: none;
        }

        @media (max-width: 900px) {
            .form-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .form-left h2 {
                font-size: 2.2rem;
                text-align: center;
            }

            .form-left-buttons {
                margin: 0 auto;
            }

            .form-card {
                padding: 30px 20px;
            }

            .form-section {
                padding: 60px 0;
            }
        }

        /* FAQ SECTION */
        .faq-section {
            padding: 80px 0;
            background: var(--bg-dark);
        }

        .faq-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active {
            border-color: var(--gold-light);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
        }

        .faq-question {
            padding: 20px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .faq-question:hover {
            color: var(--gold-light);
        }

        .faq-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            color: var(--gold-light);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            padding: 0 25px 20px;
            max-height: 300px;
        }

        /* SEO CONTENT */
        .seo-content {
            background: var(--bg-lighter);
            padding: 80px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

        .seo-content .container {
            max-width: 800px;
            margin: 0 auto;
        }

        .seo-content h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .seo-content p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 25px;
        }

        .seo-content h3 {
            font-size: 1.8rem;
            margin-top: 50px;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .seo-list {
            list-style: none;
            padding: 0;
            text-align: left;
            display: inline-block;
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--text-light);
        }

        .seo-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .seo-list li .bullet-icon {
            margin-right: 15px;
            color: var(--gold-light);
            flex-shrink: 0;
            font-size: 1.2rem;
        }

        @media (max-width: 768px) {
            .seo-content {
                padding: 60px 0;
            }

            .seo-content h2 {
                font-size: 2rem;
            }

            .seo-content h3 {
                font-size: 1.5rem;
            }

            .seo-content p,
            .seo-list {
                font-size: 1rem;
                line-height: 1.6;
            }

            .seo-list {
                width: 100%;
            }
        }

        /* BOTTOM CTA */
        .bottom-cta {
            background: linear-gradient(to bottom, var(--bg-dark), #0d1a38);
            padding: 80px 0;
            text-align: center;
            position: relative;
        }

        .bottom-cta::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: var(--gold-light);
            filter: blur(150px);
            opacity: 0.15;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }

        .bottom-cta h2 {
            font-size: 2.5rem;
            max-width: 800px;
            margin: 0 auto 30px;
            position: relative;
            z-index: 1;
            line-height: 1.2;
        }

        .bottom-cta .btn-gold {
            font-size: 1.2rem;
            padding: 18px 40px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .bottom-cta h2 {
                font-size: 1.8rem;
            }
        }

        /* FOOTER */
        footer {
            background: var(--bg-card);
            padding: 30px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
        }

        .footer-logo span {
            color: var(--gold-light);
        }

        .footer-copy {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .footer-contact {
            text-align: right;
            color: var(--text-muted);
        }

        .footer-contact a {
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .footer-contact a:hover {
            color: var(--gold-light);
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .footer-contact {
                text-align: center;
            }
        }

        /* FLOATING TELEGRAM BUTTON */
        .telegram-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
            z-index: 999;
            background: #2AABEE;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .telegram-float svg {
            width: 35px;
            height: 35px;
            display: block;
        }

        .telegram-float:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
        }



        /* SECTION DIVIDER */
        .section-divider {
            height: 1px;
            width: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
            border: none;
            margin: 0;
            display: block;
        }

        .mobile-sticky-cta {
            display: none;
        }

        /* CONSOLIDATED MOBILE OPTIMIZATIONS */
        @media (max-width: 768px) {

            .mobile-sticky-cta {
                display: block;
                position: fixed;
                bottom: 12px;
                left: 12px;
                right: 12px;
                height: 60px;
                background: transparent;
                z-index: 999;
                pointer-events: none;
                transition: opacity 0.3s ease, visibility 0.3s ease;
            }

            .mobile-sticky-cta.hidden {
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
            }

            .mobile-sticky-cta .btn-gold {
                width: 100%;
                font-size: 16px;
                font-weight: 600;
                background: var(--gold-gradient);
                color: var(--bg-dark);
                padding: 14px;
                border-radius: 16px;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
                text-align: center;
                display: block;
                box-sizing: border-box;
                pointer-events: auto;
            }

            /* Global Adjustments */
            section {
                padding: 40px 0 !important;
            }

            .container {
                padding: 0 15px;
            }

            /* Language Switcher */
            .lang-switcher {
                position: relative;
                z-index: 1000;
            }

            .lang-menu {
                right: -10px;
                min-width: 200px;
                top: calc(100% + 5px);
            }

            /* Hero */
            .hero .container {
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: center;
            }

            .hero-left {
                text-align: center;
            }

            .hero-left .badge-pulsing {
                margin: 0 auto 20px auto;
            }

            .hero h1 {
                font-size: 32px !important;
            }

            .hero p {
                font-size: 16px !important;
            }

            .hero-bullets {
                align-items: center;
                gap: 12px;
            }

            .hero-buttons {
                justify-content: center;
                margin-top: 20px;
            }

            .hero .btn-gold {
                width: 100%;
                display: block;
            }

            /* Stats Bar */
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .stat-item::after {
                display: none;
            }

            .stat-item {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                padding-bottom: 40px;
            }

            .stat-item:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }

            /* Bot Demo */
            .demo-grid {
                display: flex;
                flex-direction: column;
                padding: 0 16px;
            }

            .phone-mockup {
                width: 100%;
                margin: 0 auto;
            }

            /* Pricing Cards */
            .pricing-grid {
                display: flex;
                flex-direction: column;
                gap: 16px;
            }

            .pricing-card {
                width: 100%;
                padding: 20px;
            }

            .business-card {
                order: -1;
            }

            /* Trust Cards */
            .trust-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .trust-card {
                width: 100%;
                padding: 20px;
            }

            /* Form Section */
            .form-section .container {
                display: flex;
                flex-direction: column;
                gap: 30px;
            }

            .contact-info {
                max-width: 100%;
                text-align: center;
                padding-bottom: 20px;
            }

            .contact-info h2 {
                font-size: 32px;
            }

            .contact-methods {
                align-items: center;
            }

            .form-card {
                width: 100%;
                max-width: 100%;
                padding: 20px;
            }

            .form-control {
                width: 100%;
            }

            /* Bottom CTA */
            .bottom-cta h2 {
                font-size: 28px !important;
            }

            .bottom-cta .btn-dark {
                width: 100%;
                display: block;
                box-sizing: border-box;
            }

            /* Footer */
            .footer-content {
                display: flex;
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .footer-contact {
                text-align: center;
            }

            /* Telegram Floating Button */
            .floating-tg-btn {
                bottom: 80px;
                /* Avoid overlapping form submit button */
                right: 20px;
                width: 50px;
                height: 50px;
            }

            .floating-tg-btn svg {
                width: 25px;
                height: 25px;
            }
        }