    /* ===== RESET & BASE ===== */
    *, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --green:       #10b981;
        --green-light: #34d399;
        --green-dark:  #059669;
        --cyan:        #06b6d4;
        --purple:      #8b5cf6;
        --gold:        #f59e0b;
        --gold-light:  #fbbf24;
        --bg-deep:     #04070f;
        --bg-base:     #070d1a;
        --bg-card:     rgba(14,22,38,0.6);
        --bg-card-hov: rgba(14,22,38,0.92);
        --border:      rgba(16,185,129,0.13);
        --border-hov:  rgba(16,185,129,0.55);
        --text-main:   #e2e8f4;
        --text-muted:  #8899b5;
        --text-dim:    #4f637f;
        --radius-sm:   14px;
        --radius-md:   22px;
        --radius-lg:   32px;
        --shadow-green: 0 8px 32px rgba(16,185,129,0.18);
        --shadow-card:  0 20px 60px rgba(0,0,0,0.45);
    }

    html { scroll-behavior: smooth; }

    body {
        font-family: 'Vazirmatn', Tahoma, sans-serif;
        background: var(--bg-deep);
        color: var(--text-main);
        line-height: 1.7;
        min-height: 100vh;
        overflow-x: hidden;
    }

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

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--bg-deep); }
    ::-webkit-scrollbar-thumb { background: var(--green); border-radius: 10px; }

    /* ===== CANVAS BG ===== */
    #bgCanvas {
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
    }

    /* گرید خطوط سبک -->*/
    .grid-overlay {
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background-image:
            linear-gradient(rgba(16,185,129,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(16,185,129,0.03) 1px, transparent 1px);
        background-size: 60px 60px;
    }

    .content-wrap {
        position: relative;
        z-index: 1;
    }

    /* ===== DISCOUNT BANNER ===== */
    .discount-banner {
        background: linear-gradient(90deg, #04101e, #071525, #04101e);
        border-bottom: 1px solid rgba(16,185,129,0.3);
        padding: 10px 24px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 16px 24px;
        position: relative;
        overflow: hidden;
    }

    .discount-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgba(16,185,129,0.05), transparent);
        animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }

    .discount-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
        z-index: 1;
    }

    .discount-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(16,185,129,0.12);
        border: 1px solid rgba(16,185,129,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--green);
        animation: pulse-icon 2.5s ease-in-out infinite;
    }

    @keyframes pulse-icon {
        0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
        50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
    }

    .discount-label {
        font-size: 0.65rem;
        color: var(--green);
        letter-spacing: 2px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .discount-title {
        color: #fff;
        font-size: 0.95rem;
        font-weight: 700;
        position: relative;
        z-index: 1;
    }

    .discount-percent {
        display: flex;
        align-items: baseline;
        gap: 5px;
        position: relative;
        z-index: 1;
    }

    .discount-percent .num-from {
        font-size: 1.6rem;
        font-weight: 900;
        color: var(--green);
        line-height: 1;
    }

    .discount-percent .sep { color: var(--text-dim); font-size: 0.9rem; }

    .discount-percent .num-to {
        font-size: 2rem;
        font-weight: 900;
        background: linear-gradient(120deg, var(--gold), var(--gold-light));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        line-height: 1;
    }

    .discount-percent .unit { font-size: 0.7rem; color: var(--gold); }

    .btn-discount {
        background: linear-gradient(90deg, var(--green), var(--green-dark));
        color: #03090f;
        padding: 8px 22px;
        border-radius: 40px;
        font-size: 0.82rem;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s;
        box-shadow: 0 4px 16px rgba(16,185,129,0.35);
        position: relative;
        z-index: 1;
    }

    .btn-discount:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(16,185,129,0.55);
    }

    /* ===== NAVBAR ===== */
    .navbar {
        background: rgba(4,7,15,0.75);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 0.75rem 2.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 900;
        border-bottom: 1px solid var(--border);
        transition: background 0.3s;
    }

    .navbar.scrolled {
        background: rgba(4,7,15,0.95);
        box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    }

    .logo img {
        height: 46px;
        transition: filter 0.3s;
    }

    .logo img:hover {
        filter: drop-shadow(0 0 10px rgba(16,185,129,0.6));
    }

    .nav-links {
        display: flex;
        gap: 1.8rem;
        align-items: center;
    }

    .nav-links a {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text-muted);
        position: relative;
        transition: color 0.3s;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        right: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--green), var(--green-light));
        border-radius: 2px;
        transition: width 0.3s;
    }

    .nav-links a:hover { color: var(--text-main); }
    .nav-links a:hover::after { width: 100%; }

    .nav-btn-login {
        border: 1.5px solid var(--border-hov);
        padding: 0.45rem 1.2rem;
        border-radius: 40px;
        color: var(--green) !important;
        font-weight: 600 !important;
        transition: all 0.3s !important;
    }

    .nav-btn-login:hover {
        background: rgba(16,185,129,0.1) !important;
        color: var(--green) !important;
    }

    .nav-btn-login::after { display: none !important; }

    .nav-btn-register {
        background: linear-gradient(135deg, var(--green), var(--green-dark));
        padding: 0.48rem 1.4rem;
        border-radius: 40px;
        color: #fff !important;
        font-weight: 700 !important;
        box-shadow: var(--shadow-green);
        transition: all 0.3s !important;
    }

    .nav-btn-register:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 10px 28px rgba(16,185,129,0.45) !important;
    }

    .nav-btn-register::after { display: none !important; }

    /* ===== MOBILE MENU ===== */
    .menu-icon {
        display: none;
        background: none;
        border: none;
        color: var(--green);
        font-size: 1.6rem;
        cursor: pointer;
        padding: 4px;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 72%;
        max-width: 300px;
        height: 100%;
        background: rgba(5, 9, 19, 0.98);
        backdrop-filter: blur(30px);
        z-index: 2000;
        padding: 2rem 1.5rem;
        transition: right 0.4s cubic-bezier(0.77,0,0.175,1);
        border-left: 1px solid rgba(16,185,129,0.2);
    }

    .mobile-menu.active { right: 0; }

    .mobile-menu-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
    }

    .close-menu {
        font-size: 1.4rem;
        cursor: pointer;
        color: var(--green);
        background: rgba(16,185,129,0.08);
        border: 1px solid var(--border);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .close-menu:hover { background: rgba(16,185,129,0.18); }

    .mobile-menu a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0.9rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        font-size: 0.95rem;
        color: var(--text-muted);
        transition: 0.3s;
    }

    .mobile-menu a:hover { color: var(--green); padding-right: 8px; }

    .mobile-menu-btns {
        margin-top: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-menu-btns a {
        justify-content: center;
        border-radius: 12px;
        padding: 0.8rem !important;
        border: none !important;
    }

    .mobile-btn-login {
        border: 1.5px solid var(--border-hov) !important;
        color: var(--green) !important;
        border-radius: 12px !important;
        text-align: center;
    }

    .mobile-btn-register {
        background: linear-gradient(135deg, var(--green), var(--green-dark)) !important;
        color: #fff !important;
        font-weight: 700 !important;
    }

    .overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.7);
        backdrop-filter: blur(4px);
        z-index: 1500;
        display: none;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .overlay.active { display: block; opacity: 1; }

    /* ===== HERO ===== */
    .hero {
        padding: 7rem 2rem 6rem;
        text-align: center;
        position: relative;
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(16,185,129,0.08);
        border: 1px solid rgba(16,185,129,0.2);
        padding: 6px 18px;
        border-radius: 40px;
        font-size: 0.78rem;
        color: var(--green);
        letter-spacing: 1px;
        font-weight: 600;
        margin-bottom: 1.5rem;
        animation: fadeInDown 0.8s ease both;
    }

    .hero-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 1.5s infinite; }

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

    @keyframes fadeInDown {
        from { opacity: 0; transform: translateY(-20px); }
        to   { opacity: 1; transform: translateY(0); }
    }

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

    .hero h1 {
        font-size: clamp(2.4rem, 6vw, 4.5rem);
        font-weight: 900;
        line-height: 1.15;
        letter-spacing: -0.02em;
        margin-bottom: 1.2rem;
        animation: fadeInUp 0.9s 0.1s ease both;
    }

    .hero h1 .grad-text {
        background: linear-gradient(135deg, #fff 0%, var(--green) 50%, var(--green-light) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .hero h1 .brand-name {
        font-family: 'Syne', sans-serif;
        background: linear-gradient(135deg, var(--green-light), var(--cyan));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: 800;
        font-size: 1.05em;
    }

    .hero-desc {
        max-width: 680px;
        margin: 0 auto 0.8rem;
        color: var(--text-muted);
        font-size: 1.05rem;
        animation: fadeInUp 0.9s 0.2s ease both;
    }

    .hero-desc:last-of-type { margin-bottom: 2rem; }

    .hero-cta-group {
        display: flex;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
        animation: fadeInUp 0.9s 0.35s ease both;
        margin-bottom: 3.5rem;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--green), var(--green-dark));
        color: #fff;
        padding: 0.9rem 2.5rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 6px 28px rgba(16,185,129,0.38);
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 38px rgba(16,185,129,0.5);
    }

    .btn-secondary {
        background: transparent;
        color: var(--text-main);
        padding: 0.9rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        border: 1.5px solid var(--border-hov);
        cursor: pointer;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-secondary:hover {
        background: rgba(16,185,129,0.07);
        border-color: var(--green);
        color: var(--green);
    }

    /* Hero stats mini */
    .hero-stats-row {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        animation: fadeInUp 0.9s 0.5s ease both;
    }

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

    .hero-stat .val {
        font-size: 1.8rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--green), var(--green-light));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .hero-stat .lbl {
        font-size: 0.75rem;
        color: var(--text-dim);
        margin-top: 2px;
    }

    .hero-divider {
        width: 1px;
        height: 40px;
        background: linear-gradient(to bottom, transparent, var(--border-hov), transparent);
        align-self: center;
    }

    /* ===== SECTION ===== */
    .section {
        padding: 5.5rem 2rem;
        max-width: 1300px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3.5rem;
    }

    .section-tag {
        display: inline-block;
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--green);
        letter-spacing: 2.5px;
        text-transform: uppercase;
        margin-bottom: 0.7rem;
        padding: 4px 14px;
        background: rgba(16,185,129,0.07);
        border-radius: 40px;
        border: 1px solid rgba(16,185,129,0.15);
    }

    .section-title {
        font-size: clamp(1.7rem, 3.5vw, 2.5rem);
        font-weight: 800;
        line-height: 1.2;
    }

    .section-title .hl {
        background: linear-gradient(135deg, var(--green), var(--green-light));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .section-sub {
        margin-top: 0.8rem;
        color: var(--text-muted);
        font-size: 0.95rem;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    /* ===== WHY CARDS ===== */
    .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .why-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 1.8rem 1.5rem;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1);
        position: relative;
        overflow: hidden;
        cursor: default;
    }

    .why-card::before {
        content: '';
        position: absolute;
        top: -60%;
        left: 50%;
        transform: translateX(-50%);
        width: 140px;
        height: 140px;
        background: radial-gradient(circle, rgba(16,185,129,0.12), transparent);
        border-radius: 50%;
        transition: 0.5s;
        opacity: 0;
    }

    .why-card:hover {
        transform: translateY(-8px);
        border-color: var(--border-hov);
        background: var(--bg-card-hov);
        box-shadow: var(--shadow-card), 0 0 0 1px rgba(16,185,129,0.1);
    }

    .why-card:hover::before { opacity: 1; top: -30%; }

    .why-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.04));
        border: 1px solid rgba(16,185,129,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.1rem;
        font-size: 1.5rem;
        color: var(--green);
        transition: 0.3s;
    }

    .why-card:hover .why-icon {
        background: linear-gradient(135deg, rgba(16,185,129,0.22), rgba(16,185,129,0.08));
        box-shadow: 0 0 16px rgba(16,185,129,0.25);
        transform: scale(1.1);
    }

    .why-card h3 {
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .why-card p {
        font-size: 0.83rem;
        color: var(--text-muted);
        line-height: 1.65;
    }

    /* ===== STATS ===== */
    .stats-band {
        background: linear-gradient(135deg, rgba(14,22,38,0.7), rgba(8,14,26,0.9));
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 2.5rem 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
        overflow: hidden;
    }

    .stat-cell {
        flex: 1;
        min-width: 150px;
        text-align: center;
        padding: 1.5rem 1rem;
        position: relative;
    }

    .stat-cell:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 20%;
        left: 0;
        height: 60%;
        width: 1px;
        background: var(--border);
    }

    .stat-num {
        font-size: 2.6rem;
        font-weight: 900;
        background: linear-gradient(135deg, var(--green), var(--green-light));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.78rem;
        color: var(--text-dim);
        margin-top: 0.5rem;
        font-weight: 500;
    }

    /* ===== CERTIFICATES ===== */
    .cert-frame {
        max-width: 520px;
        margin: 0 auto;
        position: relative;
    }

    .cert-frame::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: calc(var(--radius-md) + 2px);
        background: linear-gradient(135deg, var(--green), var(--cyan), var(--purple));
        z-index: 0;
        opacity: 0.6;
        animation: rotateBorder 4s linear infinite;
        background-size: 200% 200%;
    }

    @keyframes rotateBorder {
        0%   { background-position: 0% 50%; }
        50%  { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .cert-inner {
        position: relative;
        z-index: 1;
        border-radius: var(--radius-md);
        overflow: hidden;
        background: var(--bg-deep);
    }

    .cert-inner img {
        width: 100%;
        display: block;
        transition: transform 0.5s;
    }

    .cert-inner:hover img { transform: scale(1.04); }

    /* ===== STEPS ===== */
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        position: relative;
    }

    .step-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 2rem 1.5rem;
        text-align: center;
        transition: all 0.4s;
        position: relative;
    }

    .step-card:hover {
        transform: translateY(-8px);
        border-color: var(--border-hov);
        box-shadow: var(--shadow-card);
    }

    .step-num {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--green), var(--green-dark));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        font-weight: 800;
        color: #fff;
        margin: 0 auto 1.1rem;
        box-shadow: 0 8px 24px rgba(16,185,129,0.3);
    }

    .step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
    .step-card p  { font-size: 0.83rem; color: var(--text-muted); }

    /* ===== PLANS ===== */
    .plans-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.6rem;
    }

    .plan-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 2rem 1.8rem;
        transition: all 0.4s;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .plan-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--green), var(--green-light));
        opacity: 0;
        transition: 0.4s;
    }

    .plan-card.featured {
        border-color: rgba(16,185,129,0.4);
        background: rgba(16,185,129,0.04);
    }

    .plan-card.featured::after { opacity: 1; }

    .plan-card:hover {
        transform: translateY(-10px);
        border-color: var(--border-hov);
        box-shadow: var(--shadow-card), 0 0 40px rgba(16,185,129,0.08);
    }

    .plan-card:hover::after { opacity: 1; }

    .plan-badge {
        display: inline-block;
        font-size: 0.65rem;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 20px;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .plan-badge.hot {
        background: rgba(245,158,11,0.12);
        border: 1px solid rgba(245,158,11,0.3);
        color: var(--gold);
    }

    .plan-badge.new {
        background: rgba(139,92,246,0.1);
        border: 1px solid rgba(139,92,246,0.3);
        color: var(--purple);
    }

    .plan-badge.classic {
        background: rgba(16,185,129,0.08);
        border: 1px solid rgba(16,185,129,0.2);
        color: var(--green);
    }

    .plan-name {
        font-size: 1.4rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--green), var(--green-light));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 0.3rem;
    }

    .plan-divider {
        height: 1px;
        background: var(--border);
        margin: 1.2rem 0;
    }

    .plan-rules {
        list-style: none;
        margin-bottom: 1.5rem;
        flex: 1;
    }

    .plan-rules li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.55rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.03);
        font-size: 0.83rem;
    }

    .plan-rules li .rule-key { color: var(--text-muted); }
    .plan-rules li .rule-val { color: var(--text-main); font-weight: 600; }

    .plan-rules li .rule-val.green { color: var(--green); }

    .btn-plan {
        background: linear-gradient(135deg, var(--green), var(--green-dark));
        color: #fff;
        border: none;
        padding: 0.85rem 1.5rem;
        border-radius: var(--radius-sm);
        font-size: 0.9rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        box-shadow: 0 4px 16px rgba(16,185,129,0.25);
        font-family: 'Vazirmatn', sans-serif;
    }

    .btn-plan:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(16,185,129,0.4);
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-wrap {
        max-width: 660px;
        margin: 0 auto;
    }

    .testimonial-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 2.5rem 2rem;
        text-align: center;
        transition: 0.4s;
    }

    .t-stars { font-size: 1rem; color: var(--gold); letter-spacing: 4px; margin-bottom: 1.2rem; }

    .t-text {
        font-size: 1rem;
        font-style: italic;
        color: var(--text-muted);
        line-height: 1.75;
        margin-bottom: 1.5rem;
    }

    .t-name { color: var(--green); font-weight: 700; font-size: 0.95rem; }
    .t-role { color: var(--text-dim); font-size: 0.8rem; margin-top: 4px; }

    .t-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        margin-top: 1.5rem;
    }

    .t-btn {
        background: transparent;
        border: 1.5px solid var(--border-hov);
        color: var(--green);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        cursor: pointer;
        transition: 0.3s;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .t-btn:hover { background: var(--green); color: #04070f; }

    .t-dots { display: flex; gap: 8px; }

    .t-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--bg-card);
        border: 1px solid var(--border-hov);
        cursor: pointer;
        transition: 0.3s;
    }

    .t-dot.active {
        background: var(--green);
        width: 22px;
        border-radius: 8px;
        border-color: var(--green);
    }

    /* ===== CONTACT ===== */
    .contact-card {
        max-width: 580px;
        margin: 0 auto;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 2.5rem 2rem;
    }

    .form-row { margin-bottom: 1rem; }

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

    .contact-card input,
    .contact-card textarea,
    .contact-card select {
        width: 100%;
        padding: 12px 15px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: var(--radius-sm);
        color: var(--text-main);
        font-family: 'Vazirmatn', sans-serif;
        font-size: 0.9rem;
        transition: all 0.3s;
        outline: none;
    }

    .contact-card select option { background: #0a1120; }

    .contact-card input:focus,
    .contact-card textarea:focus,
    .contact-card select:focus {
        border-color: var(--green);
        box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
        background: rgba(16,185,129,0.03);
    }

    .btn-submit {
        background: linear-gradient(135deg, var(--green), var(--green-dark));
        color: #fff;
        border: none;
        padding: 13px;
        border-radius: var(--radius-sm);
        font-size: 0.95rem;
        font-weight: 700;
        cursor: pointer;
        width: 100%;
        transition: all 0.3s;
        box-shadow: 0 4px 18px rgba(16,185,129,0.25);
        font-family: 'Vazirmatn', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(16,185,129,0.4); }

    /* ===== FAQ ===== */
    .faq-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.2rem;
    }

    .faq-item {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        overflow: hidden;
        transition: border-color 0.3s;
        cursor: pointer;
    }

    .faq-item:hover { border-color: var(--border-hov); }

    .faq-q {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.2rem 1.4rem;
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--green);
        gap: 10px;
    }

    .faq-q .faq-icon {
        min-width: 22px;
        height: 22px;
        border-radius: 50%;
        background: rgba(16,185,129,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        transition: all 0.35s;
        color: var(--green);
    }

    .faq-item.open .faq-icon { background: var(--green); color: #04070f; transform: rotate(180deg); }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s;
        padding: 0 1.4rem;
        font-size: 0.86rem;
        color: var(--text-muted);
        line-height: 1.7;
    }

    .faq-item.open .faq-a {
        max-height: 200px;
        padding: 0 1.4rem 1.2rem;
    }

    /* ===== FOOTER ===== */
    footer {
        background: linear-gradient(180deg, rgba(5,9,18,0.92), #030508);
        border-top: 1px solid var(--border);
        padding: 4rem 2.5rem 2rem;
        margin-top: 3rem;
    }

    .footer-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .footer-col h4 {
        color: var(--green);
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 1.2rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer-col a {
        display: block;
        font-size: 0.84rem;
        color: var(--text-muted);
        margin-bottom: 0.7rem;
        transition: all 0.3s;
    }

    .footer-col a:hover { color: var(--green); transform: translateX(-4px); }

    .social-row { display: flex; gap: 14px; margin-top: 0.5rem; }

    .social-btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        color: var(--text-muted);
        transition: all 0.3s;
    }

    .social-btn:hover {
        border-color: var(--green);
        color: var(--green);
        background: rgba(16,185,129,0.08);
        transform: translateY(-3px);
    }

    .footer-risk {
        max-width: 1200px;
        margin: 0 auto 1.5rem;
        font-size: 0.68rem;
        color: var(--text-dim);
        line-height: 1.65;
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.04);
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.72rem;
        color: var(--text-dim);
        max-width: 1200px;
        margin: 0 auto;
    }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.65s ease, transform 0.65s ease;
    }

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

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
        .nav-links { display: none; }
        .menu-icon { display: block; }
        .hero { padding: 4.5rem 1.2rem 4rem; }
        .section { padding: 3.5rem 1.2rem; }
        .stats-band { flex-direction: column; gap: 0; }
        .stat-cell:not(:last-child)::after { display: none; }
        .stat-cell { padding: 1rem; border-bottom: 1px solid var(--border); }
        .stat-cell:last-child { border: none; }
        .hero-divider { display: none; }
        .footer-grid { gap: 1.8rem; }
        .plans-grid { grid-template-columns: 1fr; }
        .faq-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
        .discount-banner { flex-direction: column; gap: 10px; padding: 12px 16px; text-align: center; }
        .navbar { padding: 0.7rem 1.2rem; }
    }
