/* =========================================================
   Hesabk Website - Global Styles (RTL / Modern / Bright)
   Author: (yours)
   ========================================================= */

/* -----------------------------
   Root / Base
------------------------------ */
:root {

    --container-max: 1760px;

    --bg: #ffffff;
    --text: #0b1220;
    --muted: #5d6b85;
    --border: rgba(12, 18, 32, .10);

    --primary: #1d4ed8;
    /* lively blue */
    --primary-2: #2563eb;
    --warning: #f7b500;
    /* lively yellow */
    --dark: #0b1220;
    /* dark section base */
    --dark-2: #0f1b32;
    --dark-text: rgba(255, 255, 255, .86);
    --dark-muted: rgba(255, 255, 255, .62);

    --radius: 18px;
    --radius-lg: 22px;

    --shadow-sm: 0 10px 30px rgba(12, 18, 32, .08);
    --shadow-md: 0 20px 50px rgba(12, 18, 32, .12);

    --header-h: 88px;
    --header-h-compact: 68px;

    --ease: cubic-bezier(.2, .8, .2, 1);
}

/* =========================
   Peyda (FA + FA Num)
   ========================= */

@font-face {
    font-family: "Peyda";
    src:
        url("../fonts/peyda/400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IranYekan";
    src:
        url("../fonts/Peyda/500.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IranYekan";
    src:
        url("../fonts/Peyda/700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}



* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.85;
    text-rendering: optimizeLegibility;
    font-family: "Peyda", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

::selection {
    background: rgba(37, 99, 235, .18);
}

/* Bootstrap override small touches */
a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.lead {
    line-height: 1.9;
}

/* Container max 1760 */
.hesabk-container {
    max-width: var(--container-max);
    padding-left: 18px;
    padding-right: 18px;
}

/* Small helpers */
.hesabk-brand {
    color: var(--primary);
}

.hesabk-body {
    overflow-x: hidden;
}

/* Buttons */
.hesabk-btn {
    border-radius: 14px;
    transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease);
    will-change: transform;
}

/* ==============================
   Fix: icon + text vertical align (Boxicons)
   ============================== */

/* 1) Make all Hesabk buttons/links with icons align nicely */
.hesabk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    /* replaces me-1 spacing nicely */
    line-height: 1.2;
    /* prevent extra baseline height */
}

/* 2) Boxicons element + its pseudo content */
.hesabk-btn i.bx,
.hesabk-btn .bx {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    /* critical */
    vertical-align: middle;
}

/* Boxicons draws the icon via ::before */
.hesabk-btn i.bx::before,
.hesabk-btn .bx::before {
    line-height: 1;
    /* critical */
    display: block;
    /* avoid baseline wobble */
}

/* 3) Dropdown caret (::after) alignment */
.hesabk-btn.dropdown-toggle::after,
.hesabk-user-dd::after {
    align-self: center;
    line-height: 1;
}

.hesabk-btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-2);
    border-color: var(--primary-2);
    box-shadow: 0 14px 30px rgba(29, 78, 216, .18);
}

.btn-light {
    color: #111827 !important;
}

.btn-warning {
    background: var(--warning);
    border-color: var(--warning);
    color: #111827;
}

.btn-warning:hover {
    box-shadow: 0 14px 30px rgba(247, 181, 0, .18);
}

.btn-outline-dark:hover {
    box-shadow: 0 12px 30px rgba(12, 18, 32, .10);
}

/* Form controls */
.form-control,
.form-select,
textarea {
    border-radius: 14px;
    border-color: rgba(12, 18, 32, .12);
}

.form-control:focus,
.form-select:focus,
textarea:focus {
    border-color: rgb(2 19 54 / 28%);
    box-shadow: 0 0 0 .22rem rgb(10 28 68 / 8%);
}

/* -----------------------------
   Header / Navbar
------------------------------ */
.hesabk-header {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: padding .25s var(--ease), box-shadow .25s var(--ease);
}

.hesabk-topbar-border {
    height: 1px;
    background: var(--border);
}

.hesabk-header .navbar {
    min-height: var(--header-h);
    transition: min-height .25s var(--ease), padding .25s var(--ease);
    /* border-bottom: 2px solid #1d4fd862; */
    background: #eaf0ff;
}

.hesabk-header.is-compact {
    box-shadow: 0 8px 30px rgba(12, 18, 32, .08);
}

.hesabk-header.is-compact .navbar {
    /* min-height: var(--header-h-compact);
    padding-top: .4rem !important;
    padding-bottom: .4rem !important; */
}

.navbar-brand span {
    letter-spacing: -.3px;
}

/* Nav link underline animation */
.hesabk-navlink {
    position: relative;
    padding: .6rem .9rem !important;
    color: rgba(11, 18, 32, .86) !important;
    font-weight: 600;
    transition: color .18s var(--ease);
}

.hesabk-navlink::after {
    content: "";
    position: absolute;
    left: .9rem;
    right: .9rem;
    bottom: .35rem;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .22s var(--ease);
    border-radius: 99px;
    opacity: .95;
}

.hesabk-navlink:hover {
    color: var(--text) !important;
}

.hesabk-navlink:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hesabk-navlink.active {
    color: var(--text) !important;
}

.hesabk-navlink.active::after {
    transform: scaleX(1);
}

/* Navbar collapse look */
.navbar .navbar-collapse {
    border-top: 1px solid rgba(12, 18, 32, .08);
}

@media (min-width: 1200px) {
    .navbar .navbar-collapse {
        border-top: 0;
    }
}

/* -----------------------------
   Alternating Sections
------------------------------ */
.hesabk-section-dark {
    background: radial-gradient(1200px 400px at 85% 20%, rgba(37, 99, 235, .28), transparent 55%),
        radial-gradient(900px 400px at 15% 80%, rgba(247, 181, 0, .18), transparent 55%),
        linear-gradient(180deg, var(--dark), var(--dark-2));
    color: #fff;
}

.hesabk-section-dark a {
    color: #fff;
}

/* -----------------------------
   Hero
------------------------------ */
.hesabk-hero {
    background:
        radial-gradient(900px 380px at 80% 18%, rgba(37, 99, 235, .14), transparent 60%),
        radial-gradient(800px 360px at 20% 70%, rgba(247, 181, 0, .12), transparent 62%),
        linear-gradient(180deg, #ffffff, #fbfcff);
    padding-top: 50px;
    /* padding-bottom: 50px; */
    margin-bottom: 50px;
}

.hesabk-hero-divider {
    height: 1px;
    background: rgba(12, 18, 32, .08);
}

.hesabk-hero-media {
    min-height: 420px;
}

.hesabk-hero-glow {
    position: absolute;
    inset: -80px -60px -60px -60px;
    background: radial-gradient(closest-side, rgba(37, 99, 235, .16), transparent 70%);
    pointer-events: none;
    filter: blur(10px);
}

.hesabk-hero-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(12, 18, 32, .10);
    border-radius: var(--radius-lg);
    padding: 14px;
    box-shadow: var(--shadow-md);
    transform: translateZ(0);
}

.hesabk-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.hesabk-float-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(12, 18, 32, .10);
    font-weight: 600;
    color: rgba(11, 18, 32, .88);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.hesabk-float-chip i {
    font-size: 18px;
    color: var(--primary);
}

.hesabk-float-chip-1 {
    top: 12%;
    right: 8%;
}

.hesabk-float-chip-2 {
    bottom: 10%;
    left: 10%;
}

/* -----------------------------
   Trust pills
------------------------------ */
.hesabk-logo-pill {
    border: 1px solid rgba(12, 18, 32, .10);
    border-radius: 999px;
    padding: 12px 14px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(11, 18, 32, .80);
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(12, 18, 32, .05);
}

.hesabk-logo-pill i {
    color: var(--primary);
    font-size: 20px;
}

/* -----------------------------
   Feature cards (light)
------------------------------ */
.hesabk-feature-card {
    border: 1px solid rgba(12, 18, 32, .10);
    border-radius: var(--radius-lg);
    padding: 18px 18px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(12, 18, 32, .06);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}

.hesabk-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(12, 18, 32, .10);
    border-color: rgba(37, 99, 235, .22);
}

.hesabk-icon-bubble {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, .10);
    border: 1px solid rgba(37, 99, 235, .16);
}

.hesabk-icon-bubble i {
    font-size: 22px;
    color: var(--primary);
}

/* -----------------------------
   Dark mini items
------------------------------ */
.hesabk-dark-mini {
    border-radius: var(--radius-lg);
    padding: 14px 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.hesabk-dark-mini i {
    font-size: 22px;
    color: rgba(247, 181, 0, .95);
    margin-top: 2px;
}

/* Media frame in dark section */
.hesabk-media-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .10);
}

.hesabk-media-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(11, 18, 32, .55);
    border: 1px solid rgba(255, 255, 255, .14);
    color: var(--dark-text);
    backdrop-filter: blur(10px);
}

.hesabk-media-badge i {
    color: rgba(247, 181, 0, .95);
    font-size: 18px;
}

/* -----------------------------
   Steps
------------------------------ */
.hesabk-step-list {
    display: grid;
    gap: 14px;
}

.hesabk-step {
    border: 1px solid rgba(12, 18, 32, .10);
    border-radius: var(--radius-lg);
    padding: 14px 14px;
    background: #fff;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.hesabk-step-num {
    min-width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 181, 0, .18);
    border: 1px solid rgba(247, 181, 0, .28);
    font-weight: 800;
    color: rgba(11, 18, 32, .88);
}

/* -----------------------------
   Tour grid images
------------------------------ */
.hesabk-tour-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.hesabk-tour-tile {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgb(12 18 32 / 22%);
    box-shadow: 0 12px 34px rgb(12 18 32 / 9%);
}

@media (max-width: 575.98px) {
    .hesabk-tour-grid {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------
   Carousel caption
------------------------------ */
.hesabk-carousel-caption {
    background: rgba(11, 18, 32, .50);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 14px 14px;
    max-width: 540px;
}

.carousel-caption {
    right: auto;
    left: 0;
    bottom: 18px;
    text-align: right;
}

/* -----------------------------
   Stats
------------------------------ */
.hesabk-stat {
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid rgba(12, 18, 32, .10);
    box-shadow: 0 10px 26px rgba(12, 18, 32, .06);
    padding: 14px 14px;
    text-align: center;
    height: 100%;
}

.hesabk-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: rgba(37, 99, 235, .10);
    border: 1px solid rgba(37, 99, 235, .16);
    margin: 0 auto 8px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hesabk-stat-icon i {
    color: var(--primary);
    font-size: 20px;
}

.hesabk-stat-num {
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -.3px;
    margin-bottom: 2px;
}

.hesabk-stat-label {
    color: var(--muted);
    font-size: 12.5px;
}

/* -----------------------------
   Testimonials
------------------------------ */
.hesabk-testimonial {
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 18px 18px;
    transition: transform .22s var(--ease), border-color .22s var(--ease);
}

.hesabk-testimonial:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, .18);
}

/* -----------------------------
   Posts
------------------------------ */
.hesabk-post {
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid rgba(12, 18, 32, .10);
    padding: 14px;
    box-shadow: 0 12px 34px rgba(12, 18, 32, .07);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.hesabk-post:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 52px rgba(12, 18, 32, .12);
}

.hesabk-post img {
    border-radius: var(--radius-lg);
}

/* -----------------------------
   Contact section bits
------------------------------ */
.hesabk-contact-list {
    display: grid;
    gap: 12px;
}

.hesabk-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 12px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
}

.hesabk-contact-item i {
    font-size: 22px;
    margin-top: 2px;
}

.hesabk-contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 18px;
    border: 1px solid rgba(12, 18, 32, .10);
    box-shadow: 0 16px 52px rgba(0, 0, 0, .18);
}

.hesabk-contact-card .form-label {
    color: rgba(11, 18, 32, .78);
    font-weight: 600;
}

/* CTA card */
.hesabk-cta-card {
    border-radius: var(--radius-lg);
    padding: 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
}

/* Footer */
.hesabk-footer-link {
    color: rgba(11, 18, 32, .70);
    transition: color .18s var(--ease);
}

.hesabk-footer-link:hover {
    color: var(--text);
}

.hesabk-social {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(12, 18, 32, .10);
    background: #fff;
    box-shadow: 0 10px 22px rgba(12, 18, 32, .05);
    transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}

.hesabk-social i {
    font-size: 20px;
    color: var(--primary);
}

.hesabk-social:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(12, 18, 32, .10);
}

/* -----------------------------
   Motion preference
------------------------------ */
@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}


/* Slider */
/* ===== Hesabk Swiper ===== */
.hesabk-swiper-wrap {
    max-width: 1330px;
    margin-inline: auto;
}

.hesabk-swiper {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .35);
    background: rgba(0, 0, 0, .20);
}

.hesabk-swiper-figure {
    position: relative;
    margin: 0;
    width: 100%;
    height: clamp(280px, 42vw, 520px);
    /* equal size for all images */
}

.hesabk-swiper-figure img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hesabk-swiper-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px 18px 16px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 1, 36, 0.884), rgba(0, 1, 56, 0.466));
}

.hesabk-swiper-caption p {
    color: rgba(255, 255, 255, .75);
}

/* --- Buttons on image with clear background --- */
.hesabk-swiper .swiper-button-next,
.hesabk-swiper .swiper-button-prev {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.hesabk-swiper .swiper-button-next:hover,
.hesabk-swiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, .72);
    border-color: rgba(255, 255, 255, .30);
    transform: scale(1.03);
}

.hesabk-swiper .swiper-button-next:after,
.hesabk-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

/* Pagination dots */
.hesabk-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, .35);
    opacity: 1;
}

.hesabk-swiper .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, .95);
}

/* Better mobile spacing */
@media (max-width: 576px) {

    .hesabk-swiper .swiper-button-next,
    .hesabk-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .hesabk-swiper-caption {
        padding: 14px 14px 12px;
    }
}




.bg-section-1 {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #1d4bd01a;
}

.bg-section-2 {
    padding-top: 150px;
    padding-bottom: 150px;
}

.bg-section-3 {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 700px) {
    .bg-section-1 {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .bg-section-2 {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .bg-section-3 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

footer {
    background: #1d4bd01a;
}

/* Features */
/* ---- Features page helpers (doesn't break global styles) ---- */
.hesabk-container {
    max-width: 1600px;
}

/* unified section spacing without using py-* utilities */
.hesabk-section-pad {
    padding-top: 56px;
    padding-bottom: 56px;
}

@media (min-width: 992px) {
    .hesabk-section-pad {
        padding-top: 88px;
        padding-bottom: 88px;
    }
}

/* image presentation: consistent height + responsive */
.hesabk-media-frame,
.hesabk-media-frame-sm {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(12, 18, 32, .10);
    background: rgba(255, 255, 255, .6);
}

.hesabk-media-frame img,
.hesabk-media-frame-sm img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* cap width to look neat on ultra-wide screens */
.hesabk-hero-max {
    max-width: 1040px;
    margin-inline: auto;
}

/* Feature cards (light) */
.hesabk-feature-tile {
    border: 1px solid rgba(12, 18, 32, .10);
    border-radius: 1.25rem;
    background: #1d4bd01a;
    padding: 18px 18px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(12, 18, 32, .06);
    transition: transform .18s ease, box-shadow .18s ease;
}

.hesabk-feature-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(12, 18, 32, .10);
}

.hesabk-feature-tile .icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(13, 110, 253, .10);
    color: var(--primary, #0d6efd);
    flex: 0 0 auto;
    font-size: 22px;
}

/* Dark tiles */
.hesabk-dark-tile {
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, .06);
    padding: 18px 18px;
    height: 100%;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
}

.hesabk-dark-tile .icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(247, 181, 0, .14);
    color: rgba(247, 181, 0, .95);
    flex: 0 0 auto;
    font-size: 22px;
}

/* A compact badge chip */
.hesabk-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(12, 18, 32, .10);
    color: rgba(11, 18, 32, .86);
    box-shadow: 0 8px 20px rgba(12, 18, 32, .12);
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}

/* Checklist */
.hesabk-checklist {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.hesabk-checklist li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.hesabk-checklist i {
    color: var(--primary, #0d6efd);
    margin-top: 2px;
    font-size: 18px;
}

/* A simple “roadmap” line */
.hesabk-road {
    position: relative;
    padding-inline-start: 18px;
}

.hesabk-road:before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    right: 6px;
    width: 2px;
    background: rgba(12, 18, 32, .10);
}

.hesabk-road-item {
    position: relative;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(12, 18, 32, .10);
    background: #fff;
    box-shadow: 0 8px 24px rgba(12, 18, 32, .06);
}

.hesabk-road-dot {
    position: absolute;
    right: -4px;
    top: 18px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--primary, #0d6efd);
    border: 3px solid #fff;
    box-shadow: 0 10px 18px rgba(12, 18, 32, .14);
}

/* make anchors not hide behind sticky header */
.scroll-offset {
    scroll-margin-top: 100px;
}

/* =========================================
   Neon Background (JS injected blobs) - STRONGER COLORS
   Usage: <section class="bg-section-2 neon-flow">...</section>
   ========================================= */

.neon-flow {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #fff;
}

.neon-flow>* {
    position: relative;
    z-index: 2;
}

.neon-flow .neon-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* پس‌زمینه لطیف‌تر اما واضح‌تر */
.neon-flow .neon-bg-haze {
    position: absolute;
    inset: -20%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(900px 520px at 18% 12%, rgba(40, 140, 255, .10), transparent 60%),
        radial-gradient(900px 520px at 82% 88%, rgba(255, 205, 60, .09), transparent 60%),
        radial-gradient(900px 520px at 80% 18%, rgba(160, 80, 255, .08), transparent 62%),
        radial-gradient(900px 520px at 20% 85%, rgba(70, 255, 160, .06), transparent 62%),
        linear-gradient(180deg, rgba(246, 251, 255, .92), rgba(255, 255, 255, 1));
    filter: blur(7px) saturate(1.1);
    opacity: 1;
}

.neon-flow .neon-blob {
    position: absolute;
    border-radius: 999px;

    /* پررنگ‌تر + نئونی‌تر */
    filter: blur(16px) saturate(3) contrast(1.25);
    opacity: 1 !important;

    transform: translate3d(0, 0, 0);
    mix-blend-mode: screen;

    /* glow واقعی‌تر */
    box-shadow:
        0 0 55px rgba(255, 255, 255, .55),
        0 0 150px rgba(255, 255, 255, .28);
    will-change: transform, opacity, filter;
}

/* موبایل: کمی سبک‌تر ولی همچنان پررنگ */
@media (max-width: 576px) {
    .neon-flow .neon-blob {
        filter: blur(18px) saturate(2.05) contrast(1.12);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .neon-flow .neon-blob {
        transition: none !important;
        animation: none !important;
    }
}

.list-unstyled {
    padding: 0 !important;
}

/* =========================================
   Plan Comparison Glass Table (No vertical scroll)
   - Glassmorphism
   - White text
   - Rounded corners
   - Sticky bottom header (tfoot)
   - Horizontal scroll only
   - Sticky feature column (RTL)
========================================= */

.plan-table {
    --glass-bg: rgba(255, 255, 255, .08);
    --glass-bg2: rgba(255, 255, 255, .12);
    --glass-border: rgba(255, 255, 255, .18);
    --glass-border2: rgba(255, 255, 255, .26);
    --text: rgba(255, 255, 255, .92);
    --muted: rgba(255, 255, 255, .70);
    --shadow: 0 18px 55px rgba(0, 0, 0, .35);
    --radius: 18px;
}

/* قاب شیشه‌ای */
.plan-table {
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .05));
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    /* برای گرد شدن گوشه‌ها */
}

/* فقط اسکرول افقی */
.plan-table__scroll {
    overflow-x: auto;
    overflow-y: visible;
    /* ✅ جلوگیری از اسکرول عمودی */
    -webkit-overflow-scrolling: touch;
}

/* اسکرول‌بار افقی شیک */
.plan-table__scroll::-webkit-scrollbar {
    height: 10px;
}

.plan-table__scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
}

.plan-table__scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, .26);
}

.plan-table__scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .06);
    border-radius: 999px;
}

.plan-table__table {
    width: 100%;
    min-width: 860px;
    /* باعث میشه در موبایل اسکرول افقی بگیره */
    border-collapse: separate;
    /* برای شیشه‌ای/گوشه‌های گرد */
    border-spacing: 0;
    color: var(--text);
}

/* سلول‌ها */
.plan-table__table th,
.plan-table__table td {
    padding: 14px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    border-left: 1px solid rgba(255, 255, 255, .08);
    /* RTL: جداکننده ستون‌ها */
    vertical-align: middle;
    white-space: nowrap;
}

.plan-table__table tr>*:first-child {
    border-left: 0;
}

/* ردیف‌ها */
.plan-table__table tbody tr {
    background: rgba(255, 255, 255, .03);
    transition: background .18s ease;
}

.plan-table__table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, .05);
}

.plan-table__table tbody tr:hover {
    background: rgba(255, 255, 255, .10);
}

/* ستون ویژگی: sticky سمت راست (RTL) */
.plan-table__feature {
    position: sticky;
    right: 0;
    z-index: 3;
    text-align: right;
    font-weight: 700;
    color: rgba(255, 255, 255, .95);
    background: rgba(10, 10, 20, .35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 255, 255, .12);
}

/* خط آخر جدول رو تمیز کن */
.plan-table__table tbody tr:last-child th,
.plan-table__table tbody tr:last-child td {
    border-bottom: 0;
}

/* ---------- Sticky bottom header (tfoot) ---------- */
.plan-table__table tfoot {
    position: sticky;
    bottom: 0;
    /* ✅ پایین ثابت */
    z-index: 5;
}

.plan-table__table tfoot tr {
    background: linear-gradient(180deg, rgba(20, 20, 30, .55), rgba(20, 20, 30, .82));
}

.plan-table__foot-head {
    font-weight: 800;
    letter-spacing: .2px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    border-bottom: 0;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, .25);
}

/* چون ستون ویژگی sticky است، در فوتر هم باید روی همه بیاد */
.plan-table__table tfoot .plan-table__feature {
    z-index: 8;
    background: rgba(20, 20, 35, .72);
}

/* رند شدن گوشه‌های پایین فوتر */
.plan-table__table tfoot tr>*:first-child {
    border-bottom-right-radius: calc(var(--radius) - 2px);
}

.plan-table__table tfoot tr>*:last-child {
    border-bottom-left-radius: calc(var(--radius) - 2px);
}

/* thead مخفی (اختیاری) */
.plan-table__thead-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* موبایل */
@media (max-width: 992px) {

    .plan-table__table th,
    .plan-table__table td {
        padding: 12px 12px;
    }
}

.text-align-justify {
    text-align: justify;
}

/* User dropdown in header */
.hesabk-user-menu {
    border-radius: 14px;
    padding: 8px;
    min-width: 220px;
    border-color: rgba(12, 18, 32, .10);
}

.hesabk-user-menu .dropdown-item {
    border-radius: 10px;
    padding: 10px 12px;
}

.hesabk-user-menu .dropdown-item:active {
    background: rgba(0, 0, 0, .06);
    color: inherit;
}

.hesabk-user-dd::after {
    margin-right: .35rem;
    /* RTL */
    margin-left: 0;
}

.card-bg-1 {
    background: rgb(8 23 58 / 6%);
}

.card-bg-1 {
    background: rgb(8 23 58 / 6%);
}

.card-bg-2 {
    background:
        radial-gradient(520px 220px at 80% 22%, rgba(37, 100, 235, 0.103), transparent 62%),
        radial-gradient(520px 240px at 18% 78%, rgba(247, 181, 0, .12), transparent 64%),
        radial-gradient(420px 200px at 55% 45%, rgba(16, 185, 129, .08), transparent 62%),
        linear-gradient(180deg, #ffffff, #fbfcff);
}
