.elementor-391 .elementor-element.elementor-element-46be4b6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-99ecae2 */@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;700;900&display=swap');

:root {
    --c-primary: #8b5cf6;
    --c-primary-rgb: 139,92,246;
    --c-blue: #3b82f6;
    --c-green: #22c55e;
    --c-red: #ef4444;
    --c-bg: #0a0a0a;
    --c-text: #9ca3af;
    --c-text-light: #d1d5db;
    --c-border: rgba(255,255,255,.06);
    --c-surface: rgba(255,255,255,.03);
    --grad: linear-gradient(135deg, var(--c-primary), var(--c-blue));
    --r-sm: 12px;
    --r-md: 16px;
    --r-lg: 24px;
    --font: 'Vazirmatn', sans-serif;
}

/* Base */
.sp * { box-sizing: border-box; margin: 0; padding: 0 }
.sp {
    font-family: var(--font);
    direction: rtl;
    background: var(--c-bg);
    color: #fff;
    line-height: 1.8;
    overflow-x: hidden;
}

/* Utilities */
.sp-container { max-width: 1200px; margin: 0 auto }
.sp-section { padding: 100px 20px; position: relative }
.sp-center { text-align: center }

/* Section Header */
.sh { text-align: center; margin-bottom: 70px }
.sh-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--c-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    font-weight: 400;
}
.sh-tag::before, .sh-tag::after {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-primary));
}
.sh-tag::after { background: linear-gradient(90deg, var(--c-primary), transparent) }
.sh h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    margin-bottom: 16px;
}
.sh h2 em {
    font-style: normal;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sh p { color: var(--c-text); font-size: 16px; max-width: 600px; margin: 0 auto }

/* Hero */
.sp-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(var(--c-primary-rgb),.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(59,130,246,.08) 0%, transparent 50%),
        var(--c-bg);
}
.sp-hero-inner { position: relative; z-index: 2; max-width: 900px }
.sp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--c-primary-rgb),.1);
    border: 1px solid rgba(var(--c-primary-rgb),.3);
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 14px;
    color: #a78bfa;
    margin-bottom: 30px;
}
.sp-badge i {
    width: 8px;
    height: 8px;
    background: var(--c-primary);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(var(--c-primary-rgb),.4) }
    50% { box-shadow: 0 0 0 8px rgba(var(--c-primary-rgb),0) }
}
.sp-hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, var(--c-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sp-hero h1 em {
    font-style: normal;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sp-hero p { font-size: 18px; color: var(--c-text); max-width: 650px; margin: 0 auto 40px; line-height: 2 }
.sp-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 50px }
.sp-stats b {
    font-size: 42px;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}
.sp-stats small { font-size: 14px; color: #6b7280; display: block; margin-top: 4px; font-weight: 400 }

/* Cards */
.sp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px }
.sp-card {
    background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 40px 30px;
    transition: .4s ease;
    position: relative;
    overflow: hidden;
}
.sp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad);
    transform: scaleX(0);
    transition: transform .4s;
}
.sp-card:hover::before { transform: scaleX(1) }
.sp-card:hover {
    border-color: rgba(var(--c-primary-rgb),.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(var(--c-primary-rgb),.1);
}
.sp-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(var(--c-primary-rgb),.2), rgba(59,130,246,.1));
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}
.sp-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px }
.sp-card p { font-size: 14px; color: var(--c-text); line-height: 1.9 }

/* Pricing Table */
.sp-pricing { background: radial-gradient(ellipse at 50% 50%, rgba(var(--c-primary-rgb),.05), transparent 70%) }
.sp-tw {
    overflow-x: auto;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
    background: rgba(255,255,255,.02);
}
.sp-t {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}
.sp-t th {
    padding: 28px 24px;
    font-size: 15px;
    font-weight: 700;
    color: #a78bfa;
    text-align: center;
    border-bottom: 1px solid var(--c-border);
    background: rgba(var(--c-primary-rgb),.05);
}
.sp-t th:first-child { text-align: right; border-radius: var(--r-lg) 0 0 0 }
.sp-t th:last-child { border-radius: 0 var(--r-lg) 0 0 }
.sp-t th b { display: block; font-size: 18px; color: #fff; margin-bottom: 4px }
.sp-t th small { display: block; font-size: 13px; font-weight: 400; color: var(--c-primary) }
.sp-t tbody tr { transition: .3s }
.sp-t tbody tr:hover { background: rgba(var(--c-primary-rgb),.04) }
.sp-t td {
    padding: 18px 24px;
    text-align: center;
    font-size: 14px;
    color: var(--c-text-light);
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.sp-t td:first-child { text-align: right; font-weight: 700; color: #e5e7eb }

/* Icons & Values */
.ic, .ix {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 14px;
}
.ic { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2); color: var(--c-green) }
.ix { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.15); color: var(--c-red) }
.vt { color: #a78bfa; font-weight: 700 }

/* Highlight Column */
.hl { background: rgba(var(--c-primary-rgb),.06) }
thead .hl { background: rgba(var(--c-primary-rgb),.12) }
.pop-badge {
    display: inline-block;
    background: var(--grad);
    color: #fff;
    font-size: 11px;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Table Footer */
.sp-t tfoot td {
    padding: 28px 24px;
    text-align: center;
    border-top: 1px solid var(--c-border);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font);
    text-decoration: none;
    transition: .3s;
    cursor: pointer;
    border: none;
}
.btn-o {
    background: 0;
    border: 1px solid rgba(var(--c-primary-rgb),.3);
    color: #a78bfa;
}
.btn-o:hover { background: rgba(var(--c-primary-rgb),.1); border-color: var(--c-primary); color: #fff }
.btn-f {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 8px 30px rgba(var(--c-primary-rgb),.3);
}
.btn-f:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(var(--c-primary-rgb),.4) }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 14px }

/* Timeline */
.tl { position: relative; max-width: 800px; margin: 0 auto }
.tl::before {
    content: '';
    position: absolute;
    right: 30px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--c-primary), rgba(var(--c-primary-rgb),.1));
}
.tl-step { display: flex; gap: 30px; margin-bottom: 40px; align-items: flex-start }
.tl-num {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    z-index: 2;
    box-shadow: 0 0 30px rgba(var(--c-primary-rgb),.3);
}
.tl-body {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 28px;
    flex: 1;
    transition: .3s;
}
.tl-body:hover { border-color: rgba(var(--c-primary-rgb),.2); background: rgba(var(--c-primary-rgb),.03) }
.tl-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px }
.tl-body p { font-size: 14px; color: var(--c-text); line-height: 1.9 }

/* FAQ */
.fq { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px }
.fq-item {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: .3s;
}
.fq-item:hover { border-color: rgba(var(--c-primary-rgb),.15) }
.fq-q {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #e5e7eb;
    transition: color .3s;
    gap: 16px;
}
.fq-q:hover { color: #a78bfa }
.fq-tog {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(var(--c-primary-rgb),.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--c-primary);
    transition: .3s;
}
.fq-item.on .fq-tog { background: var(--grad); color: #fff; transform: rotate(45deg) }
.fq-a { max-height: 0; overflow: hidden; transition: max-height .4s }
.fq-item.on .fq-a { max-height: 300px }
.fq-a div { padding: 0 28px 24px; font-size: 14px; color: var(--c-text); line-height: 2 }

/* CTA */
.sp-cta {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(var(--c-primary-rgb),.1), rgba(59,130,246,.05));
    border: 1px solid rgba(var(--c-primary-rgb),.15);
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.sp-cta::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: rgba(var(--c-primary-rgb),.08);
    border-radius: 50%;
    filter: blur(80px);
}
.sp-cta h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 900; margin-bottom: 16px; position: relative }
.sp-cta>p { color: var(--c-text); font-size: 16px; margin-bottom: 36px; position: relative }
.sp-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative }

/* Guarantee */
.sp-guarantee {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,.04);
}
.sp-guarantee div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #6b7280;
}
.sp-guarantee span {
    width: 40px;
    height: 40px;
    background: rgba(34,197,94,.08);
    border: 1px solid rgba(34,197,94,.15);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Responsive */
@media(max-width:768px) {
    .sp-hero { min-height: 70vh; padding: 100px 16px 60px }
    .sp-stats { gap: 24px }
    .sp-stats b { font-size: 32px }
    .sp-section { padding: 60px 16px }
    .sp-grid { grid-template-columns: 1fr }
    .tl::before { display: none }
    .tl-step { flex-direction: column; align-items: center; text-align: center }
    .tl-num { width: 50px; height: 50px; min-width: 50px; font-size: 18px }
    .sp-cta { padding: 40px 24px }
    .sp-guarantee { gap: 20px }
    .sp-tw { border-radius: var(--r-md) }
}/* End custom CSS */