        :root {
            --green: #00c574;
            --green-light: #00E88B;
            --green-dark: #00a35f;
            --green-glow: rgba(0, 197, 116, 0.15);
            --black: #000000;
            --dark: #080808;
            --dark-2: #0e0e0e;
            --dark-card: #111111;
            --dark-card-hover: #161616;
            --gray: #999999;
            --light-gray: #d0d0d0;
            --white: #ffffff;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Heebo', sans-serif;
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
            direction: rtl;
        }

        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: var(--black); }
        ::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

        img { max-width: 100%; }

        /* ===== NAV ===== */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 16px 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s ease;
            background: transparent;
        }

        nav.scrolled {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 10px 48px;
        }

        .nav-logo img { height: 34px; transition: height 0.4s ease; }
        nav.scrolled .nav-logo img { height: 28px; }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover { color: var(--white); }

        .nav-cta {
            background: var(--green);
            color: var(--black);
            padding: 10px 22px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .nav-cta:hover {
            background: var(--green-light);
            transform: translateY(-1px);
        }

        .nav-platform-btn {
            background: transparent;
            color: var(--green) !important;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,197,116,0.3);
        }

        .nav-platform-btn:hover {
            background: rgba(0,197,116,0.08);
            border-color: var(--green);
            transform: translateY(-1px);
        }

        .nav-platform-btn .btn-icon {
            width: 16px;
            height: 16px;
        }

        .btn-platform {
            background: transparent;
            color: var(--green);
            padding: 15px 32px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: 1.5px solid var(--green);
        }

        .btn-platform:hover {
            background: rgba(0,197,116,0.08);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px var(--green-glow);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s;
        }

        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: url('assets/hero-bg.jpg') center/cover no-repeat;
            z-index: 0;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(0,0,0,0.7) 0%,
                rgba(0,0,0,0.5) 40%,
                rgba(0,0,0,0.8) 100%
            );
        }

        .hero-accent-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--green), transparent);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1300px;
            margin: 0 auto;
            padding: 140px 48px 100px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text { max-width: 600px; }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 197, 116, 0.1);
            border: 1px solid rgba(0, 197, 116, 0.25);
            border-radius: 100px;
            padding: 6px 18px;
            font-size: 13px;
            color: var(--green-light);
            margin-bottom: 28px;
            animation: fadeUp 0.7s ease forwards;
            opacity: 0;
        }

        .hero-badge .dot {
            width: 7px;
            height: 7px;
            background: var(--green);
            border-radius: 50%;
            animation: blink 2s ease-in-out infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .hero h1 {
            font-family: 'Secular One', 'Heebo', sans-serif;
            font-size: clamp(42px, 6vw, 76px);
            line-height: 1.1;
            margin-bottom: 20px;
            animation: fadeUp 0.7s ease 0.1s forwards;
            opacity: 0;
        }

        .hero h1 .highlight {
            color: var(--green);
        }

        .hero-sub {
            font-size: clamp(18px, 2.5vw, 24px);
            color: rgba(255,255,255,0.9);
            line-height: 1.8;
            font-weight: 500;
            margin-bottom: 40px;
            animation: fadeUp 0.7s ease 0.2s forwards;
            opacity: 0;
        }

        .hero-desc {
            font-size: clamp(14px, 1.8vw, 16px);
            color: rgba(255,255,255,0.5);
            line-height: 1.7;
            margin-bottom: 36px;
            animation: fadeUp 0.7s ease 0.25s forwards;
            opacity: 0;
        }

        .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            animation: fadeUp 0.7s ease 0.35s forwards;
            opacity: 0;
        }

        /* Hero Image Card */
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeUp 0.7s ease 0.35s forwards;
            opacity: 0;
        }

        .hero-card {
            background: rgba(255,255,255,0.04);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            padding: 28px;
            width: 380px;
            position: relative;
        }

        .hero-card-img {
            width: 100%;
            height: 200px;
            border-radius: 16px;
            object-fit: cover;
            margin-bottom: 20px;
        }

        .hero-card-stats {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 12px;
            text-align: center;
        }

        .hero-card-stat {
            background: rgba(0,197,116,0.06);
            border-radius: 12px;
            padding: 14px 8px;
        }

        .hero-card-stat-num {
            font-family: 'Secular One', sans-serif;
            font-size: 22px;
            color: var(--green);
            line-height: 1;
        }

        .hero-card-stat-label {
            font-size: 11px;
            color: var(--gray);
            margin-top: 4px;
        }

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

        /* ===== BUTTONS ===== */
        .btn-primary {
            background: var(--green);
            color: var(--black);
            padding: 15px 32px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: 'Heebo', sans-serif;
        }

        .btn-primary:hover {
            background: var(--green-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px var(--green-glow);
        }

        .btn-secondary {
            background: rgba(255,255,255,0.06);
            color: var(--white);
            padding: 15px 32px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

        .btn-whatsapp { background: #25D366; color: white; }
        .btn-whatsapp:hover { background: #22c55e; box-shadow: 0 8px 30px rgba(37, 211, 102, 0.2); }

        .btn-telegram { background: #0088cc; color: white; }
        .btn-telegram:hover { background: #0077b3; box-shadow: 0 8px 30px rgba(0, 136, 204, 0.2); }

        .btn-icon { width: 20px; height: 20px; }

        /* ===== TRUST BAR ===== */
        .trust-bar {
            background: var(--dark);
            border-top: 1px solid rgba(255,255,255,0.03);
            border-bottom: 1px solid rgba(255,255,255,0.03);
            padding: 40px 48px;
        }

        .trust-bar-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, auto);
            justify-content: center;
            gap: 48px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .trust-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(0,197,116,0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .trust-icon svg {
            width: 24px;
            height: 24px;
        }

        .trust-text strong {
            display: block;
            font-size: 18px;
            font-weight: 700;
        }

        .trust-text span {
            font-size: 13px;
            color: var(--gray);
        }

        /* ===== SECTION COMMON ===== */
        section { position: relative; z-index: 1; padding: 100px 48px; }

        .section-header { text-align: center; margin-bottom: 64px; }

        .section-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            color: var(--green);
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 14px;
        }

        .section-title {
            font-family: 'Secular One', 'Heebo', sans-serif;
            font-size: clamp(30px, 4.5vw, 48px);
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 17px;
            color: var(--gray);
            margin-top: 14px;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        /* ===== FEATURES ===== */
        .features { background: var(--black); }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }


        .feature-card {
            background: var(--dark-card);
            border: 1px solid rgba(255,255,255,0.04);
            border-radius: 20px;
            padding: 0;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }

        .feature-card-icon {
            width: 100%;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,197,116,0.03);
            border-bottom: 1px solid rgba(255,255,255,0.03);
        }

        .feature-card-icon svg {
            width: 40px;
            height: 40px;
        }

        .feature-card-body {
            padding: 28px 24px;
        }

        .feature-card:hover {
            border-color: rgba(0, 197, 116, 0.12);
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
        }

        .feature-tag {
            display: inline-block;
            background: rgba(0,197,116,0.08);
            color: var(--green);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 6px;
            margin-bottom: 12px;
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .feature-card p {
            color: var(--gray);
            line-height: 1.7;
            font-size: 14px;
        }

        /* ===== ABOUT / SPLIT SECTION ===== */
        .about-section {
            background: var(--dark);
            overflow: hidden;
        }

        .about-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            display: block;
            border-radius: 24px;
        }

        .about-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 32px;
            background: linear-gradient(transparent, rgba(0,0,0,0.85));
            border-radius: 0 0 24px 24px;
        }

        .about-image-stat {
            display: flex;
            gap: 32px;
        }

        .about-image-stat div strong {
            display: block;
            font-family: 'Secular One', sans-serif;
            font-size: 28px;
            color: var(--green);
        }

        .about-image-stat div span {
            font-size: 13px;
            color: var(--gray);
        }

        .about-content h2 {
            font-family: 'Secular One', 'Heebo', sans-serif;
            font-size: clamp(28px, 4vw, 42px);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .about-content p {
            color: var(--gray);
            line-height: 1.8;
            font-size: 16px;
            margin-bottom: 16px;
        }

        .about-content p strong {
            color: var(--white);
        }

        .about-content h3 {
            font-family: 'Secular One', 'Heebo', sans-serif;
            font-size: clamp(19px, 2.4vw, 24px);
            color: var(--white);
            margin: 32px 0 12px;
            padding-right: 16px;
            border-right: 3px solid var(--green);
            line-height: 1.3;
        }

        .seo-links {
            margin: 28px 0 4px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .seo-links a {
            color: var(--light-gray);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 100px;
            transition: all 0.25s ease;
        }

        .seo-links a:hover {
            color: var(--green);
            border-color: var(--green);
            background: var(--green-glow);
        }

        .about-list {
            list-style: none;
            margin: 24px 0 32px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .about-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            color: var(--light-gray);
        }

        .about-highlight {
            color: var(--green);
            font-weight: 700;
            font-size: 18px;
            margin-top: 8px;
        }

        .about-list-check {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(0,197,116,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--green);
            font-size: 14px;
        }

        /* ===== VALUES ===== */
        .values-section { background: var(--black); }

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

        .value-card {
            background: var(--dark-card);
            border: 1px solid rgba(255,255,255,0.04);
            border-radius: 18px;
            padding: 32px 28px;
            transition: all 0.4s ease;
        }

        .value-card:hover {
            border-color: rgba(0,197,116,0.12);
            transform: translateY(-3px);
        }

        .value-num {
            font-family: 'Secular One', sans-serif;
            font-size: 14px;
            color: var(--green);
            opacity: 0.5;
            margin-bottom: 14px;
        }

        .value-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .value-card p {
            color: var(--gray);
            font-size: 14px;
            line-height: 1.8;
        }

        /* ===== HOW IT WORKS ===== */
        .how-section { background: var(--black); }

        .steps-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .step-card {
            background: var(--dark-card);
            border: 1px solid rgba(255,255,255,0.04);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .step-card:hover {
            border-color: rgba(0, 197, 116, 0.12);
            transform: translateY(-4px);
        }

        .step-card-img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            display: block;
        }

        .step-card-icon-area {
            width: 100%;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,197,116,0.03);
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }

        .step-banner {
            width: 100%;
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .step-banner-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        }

        .step-banner-icon svg {
            width: 32px;
            height: 32px;
        }

        .step-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.12;
            background-size: 30px 30px;
            background-image: radial-gradient(circle, currentColor 1px, transparent 1px);
        }

        /* ===== PAYMENTS ===== */
        .payments-section { background: var(--dark); }

        .payments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 14px;
            max-width: 700px;
            margin: 0 auto 32px;
        }

        .payment-card {
            background: var(--dark-card);
            border: 1px solid rgba(255,255,255,0.04);
            border-radius: 16px;
            padding: 20px 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .payment-card:hover {
            border-color: rgba(0,197,116,0.15);
            transform: translateY(-3px);
        }

        .pay-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            margin: 0 auto 10px;
        }

        .pay-icon svg { width: 44px; height: 44px; }

        .pay-name {
            font-weight: 700;
            font-size: 14px;
        }

        .withdrawal-info {
            max-width: 500px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .withdrawal-item {
            background: var(--dark-card);
            border: 1px solid rgba(255,255,255,0.04);
            border-radius: 14px;
            padding: 20px;
            text-align: center;
        }

        .wi-value {
            font-family: 'Secular One', sans-serif;
            font-size: 20px;
            color: var(--green);
            margin-bottom: 4px;
        }

        .wi-label {
            font-size: 13px;
            color: var(--gray);
        }

        /* ===== VIDEO REVIEWS ===== */
        .video-reviews-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .video-review-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 9/16;
            background: var(--dark-card);
            border: 1px solid rgba(255,255,255,0.04);
            transition: all 0.4s ease;
        }

        .video-review-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0,197,116,0.15);
            box-shadow: 0 16px 50px rgba(0,0,0,0.4);
        }

        .video-review-card video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            border: 2px solid rgba(255,255,255,0.2);
        }

        .video-play-btn svg {
            width: 24px;
            height: 24px;
            margin-right: -2px;
        }

        .video-review-card:hover .video-play-btn {
            background: var(--green);
            border-color: var(--green);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-review-card.playing .video-play-btn {
            opacity: 0;
            pointer-events: none;
        }

        /* ===== FAQ ===== */
        .faq-section { background: var(--dark); }

        .faq-list {
            max-width: 750px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            background: var(--dark-card);
            border: 1px solid rgba(255,255,255,0.04);
            border-radius: 14px;
            overflow: hidden;
            transition: border-color 0.3s;
        }

        .faq-item.active {
            border-color: rgba(0,197,116,0.15);
        }

        .faq-question {
            width: 100%;
            padding: 22px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            color: var(--white);
            font-family: 'Heebo', sans-serif;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-align: right;
            transition: color 0.3s;
        }

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

        .faq-arrow {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            color: var(--gray);
            transition: transform 0.3s, color 0.3s;
        }

        .faq-item.active .faq-arrow {
            transform: rotate(180deg);
            color: var(--green);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 24px;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 24px 22px;
        }

        .faq-answer p {
            color: var(--gray);
            line-height: 1.8;
            font-size: 15px;
        }

        .step-card-body {
            padding: 28px 24px;
        }

        .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--green);
            color: var(--black);
            font-family: 'Secular One', sans-serif;
            font-size: 16px;
            margin-bottom: 16px;
        }

        .step-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .step-card p {
            color: var(--gray);
            line-height: 1.7;
            font-size: 14px;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials { background: var(--dark); }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: var(--dark-card);
            border: 1px solid rgba(255,255,255,0.04);
            border-radius: 20px;
            padding: 32px 28px;
            position: relative;
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            border-color: rgba(255,255,255,0.08);
            transform: translateY(-3px);
        }

        .testimonial-quote {
            font-size: 32px;
            color: var(--green);
            opacity: 0.3;
            font-family: serif;
            line-height: 1;
            margin-bottom: 12px;
        }

        .testimonial-stars {
            color: #f59e0b;
            font-size: 14px;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.8;
            color: var(--light-gray);
            margin-bottom: 24px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--green-dark), var(--green));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: var(--black);
        }

        .testimonial-name { font-weight: 600; font-size: 14px; }
        .testimonial-role { font-size: 12px; color: var(--gray); }

        /* ===== CTA ===== */
        .cta-section {
            position: relative;
            overflow: hidden;
            padding: 0;
        }

        .cta-bg {
            position: absolute;
            inset: 0;
            background: url('assets/cta-bg.jpg') center/cover no-repeat;
        }

        .cta-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(0,0,0,0.85) 0%,
                rgba(0,0,0,0.7) 50%,
                rgba(0,0,0,0.9) 100%
            );
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 120px 48px;
        }

        .cta-title {
            font-family: 'Secular One', 'Heebo', sans-serif;
            font-size: clamp(32px, 5vw, 52px);
            margin-bottom: 18px;
        }

        .cta-sub {
            font-size: 18px;
            color: rgba(255,255,255,0.6);
            margin-bottom: 40px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--dark);
            border-top: 1px solid rgba(255,255,255,0.04);
            padding: 48px 48px 28px;
            position: relative;
            z-index: 1;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-logo img { height: 26px; }

        .footer-socials { display: flex; gap: 12px; }

        .footer-social {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: rgba(255,255,255,0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-social:hover {
            background: var(--green);
            color: var(--black);
            transform: translateY(-2px);
        }

        .footer-social svg { width: 18px; height: 18px; }

        .footer-bottom {
            max-width: 1200px;
            margin: 28px auto 0;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.04);
            text-align: center;
            font-size: 12px;
            color: rgba(255,255,255,0.3);
        }

        /* ===== SCROLL REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* ===== MOBILE MENU ===== */
        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.97);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 28px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        .mobile-menu.active { opacity: 1; pointer-events: all; }
        .mobile-menu a {
            color: var(--white);
            text-decoration: none;
            font-size: 24px;
            font-weight: 600;
            transition: color 0.3s;
        }
        .mobile-menu a:hover { color: var(--green); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-content { grid-template-columns: 1fr; text-align: center; }
            .hero-text { max-width: 100%; }
            .hero-buttons { justify-content: center; }
            .hero-visual { display: none; }
            .features-grid, .testimonials-grid, .steps-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
            .video-reviews-grid { grid-template-columns: repeat(3, 1fr); }
            .about-grid { grid-template-columns: 1fr; }
            .about-image img { height: 360px; }
        }

        @media (max-width: 768px) {
            .video-reviews-grid { grid-template-columns: repeat(2, 1fr); }
            .video-review-card:nth-child(5) { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
            nav { padding: 14px 20px; }
            nav.scrolled { padding: 10px 20px; }
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .mobile-menu { display: flex; }
            section { padding: 60px 20px; }
            .hero { min-height: auto; }
            .hero-content { padding: 120px 20px 60px; }
            .features-grid, .testimonials-grid, .steps-grid { grid-template-columns: 1fr; }
            .trust-bar { padding: 30px 20px; }
            .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
            .hero-buttons, .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 320px;
                justify-content: center;
            }
            .footer-content { flex-direction: column; text-align: center; }
            .about-image img { height: 280px; }
            .cta-content { padding: 80px 20px; }
        }

        /* ===== PRICING ===== */
        .pricing-section {
            background: var(--black);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 960px;
            margin: 0 auto 48px;
            align-items: stretch;
        }

        .pricing-card {
            background: var(--dark-card);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px;
            padding: 36px 28px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-6px);
            border-color: rgba(0,197,116,0.15);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .pricing-card.popular {
            border: 2px solid var(--green);
            box-shadow: 0 0 50px rgba(0,197,116,0.1), 0 0 100px rgba(0,197,116,0.05);
            transform: scale(1.03);
            z-index: 2;
        }

        .pricing-card.popular:hover {
            transform: scale(1.03) translateY(-6px);
            box-shadow: 0 0 60px rgba(0,197,116,0.15), 0 20px 60px rgba(0,0,0,0.3);
        }

        .pricing-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--green);
            color: var(--black);
            padding: 6px 24px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 20px rgba(0,197,116,0.3);
            animation: badge-glow 3s ease-in-out infinite;
        }

        @keyframes badge-glow {
            0%, 100% { box-shadow: 0 4px 20px rgba(0,197,116,0.3); }
            50% { box-shadow: 0 4px 30px rgba(0,197,116,0.5); }
        }

        .pricing-tier {
            font-size: 13px;
            color: var(--gray);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .pricing-card.popular .pricing-tier {
            color: var(--green);
        }

        .pricing-price {
            font-family: 'Secular One', sans-serif;
            font-size: 48px;
            color: var(--white);
            line-height: 1;
            margin-bottom: 4px;
        }

        .pricing-period {
            font-size: 13px;
            color: var(--gray);
            margin-bottom: 4px;
        }

        .pricing-installments {
            font-size: 13px;
            color: var(--green);
            font-weight: 700;
            margin-bottom: 24px;
            min-height: 20px;
        }

        .pricing-features {
            border-top: 1px solid rgba(255,255,255,0.06);
            padding-top: 24px;
            text-align: right;
            flex: 1;
        }

        .pricing-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
            font-size: 14px;
            color: var(--light-gray);
        }

        .pricing-feature.highlight {
            color: var(--green);
            font-weight: 600;
        }

        .pricing-feature svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .pricing-cta {
            display: block;
            margin-top: 24px;
            padding: 15px;
            border-radius: 12px;
            font-weight: 800;
            font-size: 15px;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
        }

        .pricing-cta-outline {
            background: transparent;
            border: 1.5px solid var(--green);
            color: var(--green);
        }

        .pricing-cta-outline:hover {
            background: rgba(0,197,116,0.08);
            transform: translateY(-2px);
        }

        .pricing-cta-filled {
            background: var(--green);
            border: none;
            color: var(--black);
        }

        .pricing-cta-filled:hover {
            background: var(--green-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0,197,116,0.2);
        }

        .installments-banner {
            max-width: 700px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(0,197,116,0.08), rgba(0,197,116,0.02));
            border: 1px solid rgba(0,197,116,0.2);
            border-radius: 16px;
            padding: 24px 32px;
            display: flex;
            align-items: center;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            transition: all 0.3s ease;
        }

        .installments-banner:hover {
            border-color: rgba(0,197,116,0.4);
            box-shadow: 0 0 40px rgba(0,197,116,0.08);
        }

        .installments-banner-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .installments-banner-text strong {
            display: block;
            font-weight: 700;
            font-size: 16px;
            color: var(--white);
        }

        .installments-banner-text span {
            font-size: 13px;
            color: var(--gray);
        }

        .installments-banner-cta {
            background: var(--green);
            color: var(--black);
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .installments-banner-cta:hover {
            background: var(--green-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0,197,116,0.2);
        }

        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
            .pricing-card.popular {
                transform: none;
                order: -1;
            }
            .pricing-card.popular:hover {
                transform: translateY(-6px);
            }
            .installments-banner {
                flex-direction: column;
                text-align: center;
            }
        }
/* ===== Content / Article Pages ===== */
.article-wrap { max-width: 820px; margin: 0 auto; padding: 140px 24px 40px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13px; color: var(--gray); margin-bottom: 28px; }
.breadcrumb a { color: var(--gray); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.article-tag { display: inline-block; color: var(--green); font-size: 13px; font-weight: 700; letter-spacing: .5px; margin-bottom: 14px; }
.article-h1 { font-family: 'Secular One','Heebo',sans-serif; font-size: clamp(30px, 5vw, 52px); line-height: 1.15; margin-bottom: 18px; }
.article-h1 .hl { color: var(--green); }
.article-lead { color: var(--light-gray); font-size: clamp(17px,2.2vw,20px); line-height: 1.7; margin-bottom: 36px; }
.article-cover { width: 100%; aspect-ratio: 16/8; object-fit: cover; border-radius: 18px; margin-bottom: 40px; border: 1px solid rgba(255,255,255,0.06); }
.article-body h2 { font-family: 'Secular One','Heebo',sans-serif; font-size: clamp(23px,3vw,32px); margin: 44px 0 16px; line-height: 1.25; }
.article-body h3 { font-size: clamp(18px,2.3vw,22px); color: #fff; margin: 30px 0 12px; padding-right: 14px; border-right: 3px solid var(--green); line-height: 1.3; }
.article-body p { color: var(--light-gray); line-height: 1.9; font-size: 17px; margin-bottom: 18px; }
.article-body p strong, .article-body li strong { color: #fff; }
.article-body a { color: var(--green-light); text-decoration: none; border-bottom: 1px solid rgba(0,232,139,0.3); }
.article-body a:hover { border-bottom-color: var(--green-light); }
.article-body ul { list-style: none; margin: 18px 0 26px; display: flex; flex-direction: column; gap: 12px; }
.article-body ul li { position: relative; padding-right: 28px; color: var(--light-gray); line-height: 1.7; font-size: 16px; }
.article-body ul li::before { content: ""; position: absolute; right: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green-glow); }
.article-callout { background: linear-gradient(135deg, rgba(0,197,116,0.08), rgba(0,197,116,0.02)); border: 1px solid rgba(0,197,116,0.2); border-radius: 16px; padding: 24px 26px; margin: 32px 0; }
.article-callout p { margin: 0; color: #fff; }
.article-cta-box { background: var(--dark-card); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 40px 32px; margin: 48px 0 8px; text-align: center; }
.article-cta-box h3 { font-family: 'Secular One','Heebo',sans-serif; font-size: 26px; margin-bottom: 12px; border: none; padding: 0; }
.article-cta-box p { color: var(--gray); margin-bottom: 24px; }
.article-cta-box .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.related-links { margin: 48px 0 0; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 32px; }
.related-links h2 { font-size: 22px; margin: 0 0 18px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 16px; }
.related-card { display: block; background: var(--dark-card); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 20px; text-decoration: none; transition: all .25s ease; }
.related-card:hover { border-color: var(--green); transform: translateY(-3px); }
.related-card .rc-tag { color: var(--green); font-size: 12px; font-weight: 700; }
.related-card .rc-title { color: #fff; font-weight: 700; font-size: 16px; margin-top: 6px; line-height: 1.4; }
/* Guides hub */
.guides-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; margin-top: 8px; }
.guide-card { display: flex; flex-direction: column; background: var(--dark-card); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; overflow: hidden; text-decoration: none; transition: all .3s ease; }
.guide-card:hover { border-color: var(--green); transform: translateY(-4px); }
.guide-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.guide-card-body { padding: 22px; }
.guide-card .gc-tag { color: var(--green); font-size: 12px; font-weight: 700; letter-spacing: .4px; }
.guide-card .gc-title { font-family: 'Secular One','Heebo',sans-serif; font-size: 20px; color: #fff; margin: 8px 0 10px; line-height: 1.3; }
.guide-card .gc-desc { color: var(--gray); font-size: 14px; line-height: 1.7; }
.article-disclaimer { max-width: 820px; margin: 0 auto; padding: 0 24px 30px; color: var(--gray); font-size: 12.5px; line-height: 1.7; text-align: center; opacity: .7; }
