    /* --- BRANDING & VARIABLES --- */
    :root {
        --pt-primary: #2563EB;
        --pt-primary-dark: #1d4ed8;
        --pt-secondary: #0F172A;
        --pt-bg-light: #F8FAFC;
        --pt-text-main: #1E293B;
        --pt-text-muted: #64748b;
        --pt-border: #E2E8F0;
        --pt-green: #10B981;
    }
    .captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 10px;
    background: #f9fafb;
}

.captcha-text {
    font-weight: 600;
    color: #16a34a; /* green like your image */
    font-size: 14px;
    min-width: 60px;
}

.captcha-input {
    width: 70px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
}

.captcha-refresh {
    border: none;
    background: transparent;
    cursor: pointer;
    color: #555;
    font-size: 14px;
}
.captcha-refresh:hover {
    transform: rotate(90deg);
    transition: 0.3s;
}
    .pt-wrapper {
        font-family: 'Lexend', sans-serif;
        color: var(--pt-text-main);
        background: #fff;
        line-height: 1.6;
    }

    .pt-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    
    /* --- UTILITIES --- */
    .pt-text-center { text-align: center; }
    .pt-badge { display: inline-block; background: #eff6ff; color: var(--pt-primary); padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
    .pt-section-title { font-size: 2.5rem; font-weight: 800; color: var(--pt-secondary); margin-bottom: 20px; letter-spacing: -0.02em; }
    .pt-section-desc { font-size: 1.15rem; color: var(--pt-text-muted); max-width: 800px; margin: 0 auto 50px; }

    /* --- BUTTONS --- */
    .pt-btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 12px; font-weight: 600; cursor: pointer; gap: 10px; transition: all 0.3s ease; text-decoration: none !important; font-size: 1rem; border: none; }
    .pt-btn-primary { background: var(--pt-primary); color: white !important; box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4); }
    .pt-btn-primary:hover { background: var(--pt-primary-dark); transform: translateY(-2px); box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.5); }
    .pt-btn-outline { background: transparent; border: 2px solid var(--pt-border); color: var(--pt-secondary) !important; }
    .pt-btn-outline:hover { border-color: var(--pt-primary); color: var(--pt-primary) !important; transform: translateY(-2px); }
    .pt-btn-white { background: white; color: var(--pt-secondary) !important; }
    .pt-btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

    /* --- HERO SECTION --- */
    .pt-hero { padding: 150px 0 80px; background: radial-gradient(circle at top right, #eff6ff, #ffffff); position: relative; overflow: hidden; border-bottom: 1px solid var(--pt-border); }
    .pt-hero-layout { display: flex; align-items: center; gap: 60px; }
    .pt-hero-text { flex: 1; min-width: 300px; }
    .pt-hero-img { flex: 1; min-width: 300px; position: relative; }
    .pt-hero-img img { width: 100%; border-radius: 20px; box-shadow: 0 30px 60px -15px rgba(0,0,0,0.15); border: 1px solid var(--pt-border); }
    .pt-hero h1 { font-size: 3.5rem; font-weight: 800; color: var(--pt-secondary); line-height: 1.15; margin-bottom: 25px; }

    /* --- SECTION 1: INTRO --- */
    .pt-intro { padding: 100px 0; background: white; }
    .pt-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
    .pt-intro-list { list-style: none; padding: 0; margin: 30px 0; }
    .pt-intro-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; font-size: 1.1rem; font-weight: 500; }
    .pt-intro-list i { color: var(--pt-green); font-size: 1.25rem; margin-top: 3px; }

    /* --- SECTION 2: BENEFITS GRID --- */
    .pt-benefits { padding: 100px 0; background: var(--pt-bg-light); }
    .pt-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
    .pt-card { background: white; padding: 40px 30px; border-radius: 16px; border: 1px solid var(--pt-border); transition: all 0.3s ease; height: 100%; }
    .pt-card:hover { transform: translateY(-5px); border-color: var(--pt-primary); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08); }
    .pt-icon-box { width: 60px; height: 60px; background: #eff6ff; color: var(--pt-primary); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 25px; }
    .pt-card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 15px; color: var(--pt-secondary); }
    .pt-card p { font-size: 1rem; color: var(--pt-text-muted); margin: 0; }

    /* --- SECTION 3: OEM WHITE LABEL --- */
    .pt-oem { padding: 100px 0; background: var(--pt-secondary); color: white; position: relative; overflow: hidden; }
    .pt-oem .pt-section-title { color: white; }
    .pt-oem .pt-section-desc { color: #94a3b8; }
    .pt-oem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
    .pt-oem-features { list-style: none; padding: 0; margin: 30px 0 40px; }
    .pt-oem-features li { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; font-size: 1.1rem; color: #cbd5e1; }
    .pt-oem-features i { color: var(--pt-primary); background: rgba(37, 99, 235, 0.2); padding: 8px; border-radius: 50%; font-size: 1rem; }
    .pt-oem-img img { width: 100%; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.4); }

    /* --- SECTION 4: IDEAL FOR --- */
    .pt-ideal { padding: 100px 0; background: white; }
    .pt-tags { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; max-width: 900px; margin: 0 auto; }
    .pt-tag { background: white; border: 1px solid var(--pt-border); padding: 12px 24px; border-radius: 50px; font-weight: 600; color: var(--pt-secondary); font-size: 1rem; transition: 0.3s; display: flex; align-items: center; gap: 10px; }
    .pt-tag:hover { background: var(--pt-primary); color: white; border-color: var(--pt-primary); transform: translateY(-2px); }
    .pt-tag i { color: var(--pt-primary); }
    .pt-tag:hover i { color: white; }

    /* --- SECTION 5: HOW IT WORKS --- */
    .pt-steps { padding: 100px 0; background: var(--pt-bg-light); border-top: 1px solid var(--pt-border); }
    .pt-step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; position: relative; }
    .pt-step-card { text-align: center; position: relative; padding: 20px; }
    .pt-step-num { width: 60px; height: 60px; background: var(--pt-primary); color: white; font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 20px; box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3); position: relative; z-index: 2; }
    .pt-step-card h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; color: var(--pt-secondary); }
    
    /* Connective Line for Desktop */
    @media (min-width: 1025px) {
        .pt-step-card:not(:last-child)::after { content: ''; position: absolute; top: 50px; right: -50%; width: 100%; height: 2px; background: dashed 2px var(--pt-border); z-index: 1; }
    }
    
    /* Connective Line RTL adjustments */
    html[dir="rtl"] .pt-step-card:not(:last-child)::after { right: auto; left: -50%; }

    /* --- SECTION 6: FAQ --- */
    .pt-faq { padding: 100px 0; background: white; }
    .pt-faq-container { max-width: 800px; margin: 0 auto; }
    .pt-faq-item { border: 1px solid var(--pt-border); border-radius: 12px; margin-bottom: 15px; overflow: hidden; }
    .pt-faq-question { padding: 20px 25px; font-weight: 700; font-size: 1.1rem; color: var(--pt-secondary); display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: #fff; transition: 0.3s; }
    .pt-faq-question:hover { background: var(--pt-bg-light); }
    .pt-faq-question i { transition: transform 0.3s; color: var(--pt-primary); }
    .pt-faq-item.active .pt-faq-question i { transform: rotate(180deg); }
    .pt-faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--pt-text-muted); }
    .pt-faq-item.active .pt-faq-answer { padding: 0 25px 20px; max-height: 200px; }

    /* --- SECTION 7: CTA --- */
    .pt-cta { padding: 100px 0; text-align: center; background: radial-gradient(circle at center, #eff6ff, #ffffff); border-top: 1px solid var(--pt-border); }

    /* --- OEM MODAL (COMPACT TO FIT SCREEN WITHOUT SCROLLING) --- */
    .oem-modal { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 20px; }
    .oem-modal.active { display: flex; }
    .oem-box { background: #fff; width: 100%; max-width: 600px; border-radius: 20px; position: relative; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); padding: 30px; max-height: 95vh; overflow-y: auto; }
    .oem-close { position: absolute; top: 15px; right: 15px; background: var(--pt-bg-light); border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem; transition: 0.2s; display: flex; align-items: center; justify-content: center;}
    
    html[dir="rtl"] .oem-close { right: auto; left: 15px; }

    .oem-close:hover { background: #e2e8f0; transform: rotate(90deg); }
    .oem-box h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; color: var(--pt-secondary); }
    .oem-box p { color: var(--pt-text-muted); margin-bottom: 20px; font-size: 0.9rem; }
    
    .oem-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
    .oem-form-group { margin-bottom: 0; }
    .oem-form-group.full { grid-column: span 2; }
    .oem-label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--pt-text-muted); margin-bottom: 5px; }
    .oem-input, .oem-textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--pt-border); border-radius: 8px; font-family: inherit; font-size: 0.9rem; background: var(--pt-bg-light); transition: 0.2s; }
    .oem-input:focus, .oem-textarea:focus { outline: none; border-color: var(--pt-primary); background: #fff; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
    .oem-submit { width: 100%; background: var(--pt-primary); color: white; font-weight: 700; padding: 12px; border: none; border-radius: 8px; cursor: pointer; font-size: 1rem; margin-top: 15px; transition: 0.3s; }
    .oem-submit:hover { background: var(--pt-primary-dark); transform: translateY(-2px); }

    /* RESPONSIVE */
    @media (max-width: 991px) {
        .pt-hero h1 { font-size: 2.5rem; }
        .pt-hero-layout, .pt-intro-grid, .pt-oem-grid { flex-direction: column; text-align: center; }
        .pt-intro-list li { text-align: left; }
        html[dir="rtl"] .pt-intro-list li { text-align: right; }
        .pt-oem-features li { justify-content: center; }
        .pt-hero-text { margin-bottom: 40px; }
        .oem-form-grid { grid-template-columns: 1fr; }
        .oem-form-group.full { grid-column: span 1; }
        .oem-box { padding: 25px 20px; }
    }