/* assets/css/style.css */

:root {
    --primary: #4f46e5;
    --primary-soft: #eef2ff;
    --dark: #0f172a;
    --muted: #6b7280;
    --radius-xl: 1.4rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Vazirmatn", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #e0f2fe 0, #f9fafb 40%, #eef2ff 100%);
    margin: 0;
    color: #111827;
}


.rtlll
{
    direction: rtl;
}



/* Navbar */
.navbar {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.92) !important;
}

.logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6366f1, #22c55e);
    color: #fff;
    font-size: 1.1rem;
}

.logo-text {
    font-weight: 800;
    letter-spacing: 0.04em;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
}

.nav-link.active,
.nav-link:hover {
    color: var(--dark);
}

/* Hero */
.hero {
    padding: 80px 0 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--dark);
}

.hero-brand {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 24px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
}

.hero-stat-item .value {
    display: block;
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
}

/* Hero Card */
.hero-card {
    background: #020617;
    color: #e5e7eb;
    border-radius: 1.6rem;
    padding: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.4);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
            radial-gradient(circle at top, #818cf8 0, transparent 55%),
            radial-gradient(circle at bottom, #22c55e 0, transparent 55%);
    opacity: 0.18;
}

.hero-card-inner {
    position: relative;
    z-index: 1;
}

.hero-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.hero-card-sub {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 14px;
}

.hero-card-metric {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 16px;
}

.hero-card-metric .price {
    font-size: 1.6rem;
    font-weight: 800;
}

.hero-card-metric .per {
    font-size: 0.8rem;
    color: #9ca3af;
}

.hero-card-spec {
    font-size: 0.8rem;
    text-align: left;
}

.hero-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.hero-card-tag {
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #9ca3af;
}

.hero-card-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.9);
}

.hero-card-btn {
    border-radius: 999px;
}

/* Pricing section */
.pricing-section {
    padding: 20px 0 60px;
}

.section-heading {
    text-align: center;
    margin-bottom: 26px;
}

.section-heading h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.section-heading p {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Plan cards */
.plan-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    padding: 18px 18px 16px;
    position: relative;
    transition: all 0.2s ease-out;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
    border-color: rgba(79, 70, 229, 0.6);
}

.plan-card-header {
    margin-bottom: 10px;
}

.plan-name {
    font-size: 1rem;
    font-weight: 700;
}

.plan-subtitle {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 2px;
}

.plan-price-box {
    padding: 10px 0 8px;
    border-top: 1px dashed #e5e7eb;
    border-bottom: 1px dashed #e5e7eb;
    margin-bottom: 10px;
}

.plan-price-main {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.plan-price {
    font-size: 1.3rem;
    font-weight: 800;
}

.plan-period {
    font-size: 0.8rem;
    color: var(--muted);
}

.plan-features {
    list-style: none;
    margin: 10px 0;
    padding: 0;
    font-size: 0.85rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.plan-features i {
    font-size: 0.9rem;
    color: var(--primary);
}

.plan-cta {
    margin-top: 8px;
}

.btn-plan {
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Featured plan */
.plan-featured {
    border-color: rgba(79, 70, 229, 0.9);
    box-shadow: 0 26px 70px rgba(79, 70, 229, 0.3);
}

.plan-featured-ribbon {
    position: absolute;
    top: 10px;
    left: 14px;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4f46e5, #22c55e);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.plan-disabled {
    filter: grayscale(0.7);
    opacity: 0.6;
    pointer-events: none;
}


/* Footer */
.site-footer {
    padding: 24px 0 18px;
    font-size: 0.8rem;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid #e5e7eb;
}

.site-footer .brand {
    font-weight: 700;
}

.footer-secure i {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 767.98px) {
    .hero {
        padding-top: 60px;
    }

    .hero-card {
        margin-top: 10px;
    }
}



.list-group-item {
    cursor: pointer;
}

.list-group-item:hover {
    background: #f8f9fa;
}

.list-group-item-action:active {
    background: #e9ecef;
}

.ps-5 {
    padding-right: 2rem !important;
}



