.pricing-hero,
.offer-strip,
.plans-section {
    font-family: 'IRANSansXFaNum', 'Vazirmatn', Tahoma, sans-serif;
    direction: rtl;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HERO / BANNER
   ============================================ */
.pricing-hero {
    background: #fff;
    padding: 64px 0 48px;
    border-bottom: 1px solid #f0f2f5;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-text { flex: 1; }

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.4;
    color: #1a1f2e;
    margin: 0 0 16px;
}

.hero-title span { color: #016fd1; }

.hero-desc {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.9;
    color: #5a6278;
    margin: 0 0 24px;
    max-width: 480px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #016fd1;
    background: #e8f3fd;
    padding: 6px 14px;
    border-radius: 20px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #016fd1;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.hero-cta:hover {
    background: #0159a8;
    transform: translateY(-1px);
}

/* ============================================
   OFFER STRIP
   ============================================ */
.offer-strip {
    background: #f7fafe;
    padding: 20px 0;
    margin-bottom: 2rem;
}

.offer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.offer-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.offer-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1f2e;
    white-space: nowrap;
}

.offer-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.offer-pill {
    font-size: 13px;
    font-weight: 500;
    color: #3d5a80;
    background: #fff;
    border: 1px solid #d0e3f5;
    padding: 4px 14px;
    border-radius: 20px;
}

.offer-pill strong { color: #016fd1; }

.offer-pill.highlight {
    background: #016fd1;
    border-color: #016fd1;
    color: #fff;
}

.offer-pill.highlight strong { color: #fff; }

/* ============================================
   PLANS SECTION
   ============================================ */
.plans-section {
    background: #f4f7fb;
    padding: 56px 0 72px;
}

.mode-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 36px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 5px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.mode-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #8a93a8;
    background: transparent;
    border: none;
    border-radius: 9px;
    padding: 9px 22px;
    cursor: pointer;
    transition: all 0.22s;
}

.mode-btn svg { flex-shrink: 0; }

.mode-btn.active {
    background: #016fd1;
    color: #fff;
    box-shadow: 0 2px 10px rgba(1, 111, 209, 0.25);
}

.cloud-controls { margin-bottom: 28px; }

.controls-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 14px;
    padding: 20px 32px;
    border: 1px solid #e2e8f0;
    max-width: 760px;
    margin: 0 auto;
}

.control-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.control-block label {
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
}

.dur-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.dur-pill {
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    background: #f4f7fb;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 7px 16px;
    cursor: pointer;
    transition: all 0.18s;
}

.dur-pill:hover { border-color: #016fd1; color: #016fd1; }

.dur-pill.active {
    background: #016fd1;
    border-color: #016fd1;
    color: #fff;
}

.range-wrap { padding: 4px 0; }

.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 260px;
    height: 5px;
    border-radius: 3px;
    background: linear-gradient(to left, #016fd1 15%, #e2e8f0 15%);
    outline: none;
    cursor: pointer;
    display: block;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #016fd1;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #016fd1;
    transition: transform 0.18s;
}

.range-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }

.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #016fd1;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #016fd1;
    cursor: pointer;
}

.free-trial-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #016fd1;
    width: fit-content;
    margin: 0 auto 32px;
    padding: 8px 20px;
    border-radius: 20px;
}

/* ============================================
   PLAN CARDS GRID
   ============================================ */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
}

.plan-card {
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #e8edf5;
    padding: 28px 22px;
    position: relative;
    transition: box-shadow 0.22s, transform 0.22s;
}

.plan-card:hover {
    box-shadow: 0 8px 32px rgba(1, 111, 209, 0.09);
    transform: translateY(-3px);
}

.plan-card--featured {
    border-color: #016fd1;
    border-width: 2px;
    box-shadow: 0 4px 20px rgba(1, 111, 209, 0.12);
}

.plan-card--featured:hover {
    box-shadow: 0 12px 40px rgba(1, 111, 209, 0.18);
}

.plan-badge {
    position: absolute;
    top: -13px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(135deg, #ff8c00, #ffa733);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.35);
}

.plan-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.plan-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plan-icon--base { background: #e8f3fd; color: #016fd1; }
.plan-icon--std  { background: #eef0fe; color: #4f57e8; }
.plan-icon--adv  { background: #fff4e0; color: #e07b00; }
.plan-icon--org  { background: #e6faf4; color: #0b9e6e; }

.plan-name {
    font-size: 17px;
    font-weight: 800;
    color: #1a1f2e;
    line-height: 1.3;
    text-align: center;
}

.plan-type {
    font-size: 12px;
    font-weight: 500;
    color: #8a93a8;
    margin-top: 2px;
}

.plan-price-block {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f3f8;
    text-align: center;
}

.plan-price {
    font-size: 32px;
    font-weight: 900;
    color: #016fd1;
    line-height: 1.1;
    margin-bottom: 4px;
}

.plan-price--contact {
    font-size: 18px;
    font-weight: 700;
    color: #0b9e6e;
    margin: 8px 0;
}

.plan-price-unit {
    font-size: 12px;
    font-weight: 500;
    color: #8a93a8;
}

.plan-btn {
    display: block;
    width: 100%;
    padding: 11px 0;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.18s;
    margin-bottom: 22px;
}

.plan-btn--outline { background: transparent; border-color: #016fd1; color: #016fd1; }
.plan-btn--outline:hover { background: #016fd1; color: #fff; }
.plan-btn--fill { background: #016fd1; border-color: #016fd1; color: #fff; }
.plan-btn--fill:hover { background: #0159a8; border-color: #0159a8; }
.plan-btn--outline-org { background: transparent; border-color: #0b9e6e; color: #0b9e6e; }
.plan-btn--outline-org:hover { background: #0b9e6e; color: #fff; }

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.plan-features li {
    font-size: 13px;
    font-weight: 500;
    color: #4a5568;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.plan-features li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23016fd1' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 1px;
}

.plan-features li.inherit-line {
    font-weight: 700;
    color: #1a1f2e;
    font-size: 13px;
    padding-bottom: 6px;
    border-bottom: 1px dashed #e8edf5;
    margin-bottom: 2px;
}

.plan-features li.inherit-line::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b9e6e' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.plans-footnote {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #8a93a8;
    margin-top: 28px;
}

/* =============================================
   MODULES SECTION
============================================= */
.modules-section {
    background: #fff;
    padding: 72px 0 80px;
    border-bottom: 1px solid #f0f2f5;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #016fd1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #e8f3fd;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1f2e;
    margin-bottom: 8px;
    line-height: 1.4;
}

.section-desc {
    font-size: 14px;
    font-weight: 400;
    color: #8a93a8;
    margin-bottom: 48px;
    max-width: 480px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.module-card {
    background: #f9fafb;
    border: 1.5px solid #edf0f5;
    border-radius: 16px;
    padding: 24px 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: all 0.22s cubic-bezier(.25,.8,.25,1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.module-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1,111,209,0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.22s;
}

.module-card:hover {
    border-color: #c5ddf7;
    background: #fff;
    box-shadow: 0 6px 28px rgba(1, 111, 209, 0.08);
    transform: translateY(-2px);
}

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

.module-img-wrap {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #edf0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.module-img-wrap img {
    max-width: 38px;
    max-height: 38px;
    object-fit: contain;
}

.module-sup {
    font-size: 10px;
    font-weight: 600;
    color: #016fd1;
    padding: 2px 10px;
    border-radius: 10px;
}

.module-name {
    font-size: 13px;
    font-weight: 700;
    color: #1a1f2e;
    line-height: 1.4;
}

.module-price {
    font-size: 13px;
    font-weight: 500;
    color: #5a6278;
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.module-price strong {
    font-size: 16px;
    font-weight: 800;
    color: #016fd1;
}

/* =============================================
   COMPARE SECTION  (desktop)
============================================= */
.compare-section {
    background: #f4f7fb;
    padding: 72px 0 80px;
    font-family: 'IRANSansXFaNum', 'Vazirmatn', Tahoma, sans-serif;
    direction: rtl;
}

.compare-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.compare-header-left { display: flex; flex-direction: column; }

.compare-header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.expand-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #016fd1;
    background: transparent;
    border: 1.5px solid #c5ddf7;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
    font-family: inherit;
}

.expand-all-btn:hover { background: #e8f3fd; border-color: #016fd1; }

.btn-common {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #10b981;
    background: #e6faf4;
    border: 1.5px solid #a7f3d0;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
    font-family: inherit;
}

.btn-common:hover { background: #d1fae5; border-color: #10b981; }

.btn-common.hidden { color: #ef4444; background: #fff5f5; border-color: #fecaca; }
.btn-common.hidden:hover { background: #fee2e2; border-color: #ef4444; }

/* sticky header */
.compare-sticky {
    position: sticky;
    top: 117px;
    z-index: 10;
    background: #f4f7fb;
    padding: 16px 0 0;
    margin-bottom: 12px;
}

.compare-cols {
    display: grid;
    grid-template-columns: 4fr repeat(4, 1fr);
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e8edf5;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.compare-col-header {
    padding: 18px 12px;
    text-align: center;
    border-right: 1px solid #f0f3f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.compare-col-header:first-child {
    text-align: right;
    align-items: flex-start;
    border-right: none;
    padding-right: 20px;
}

.compare-col-header:last-child { border-right: none; }

.empty-label { font-size: 12px; font-weight: 600; color: #8a93a8; }

.col-plan-name { font-size: 15px; font-weight: 800; color: #1a1f2e; }
.col-plan-name.featured { color: #016fd1; }

/* groups */
.compare-groups { display: flex; flex-direction: column; gap: 8px; }

.cmp-group {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e8edf5;
    overflow: hidden;
    transition: box-shadow 0.22s;
}

.cmp-group.open {
    box-shadow: 0 4px 20px rgba(1, 111, 209, 0.07);
    border-color: #d0e8f9;
}

.cmp-group-trigger {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: block;
    text-align: right;
    font-family: inherit;
}

.cmp-group-header {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: border-color 0.22s;
}

.cmp-group.open .cmp-group-header { border-bottom-color: #f0f3f8; }

.cmp-group-title-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
}

.cmp-group-name { font-size: 18px; font-weight: 800; color: #1a1f2e; text-align: right; }

.cmp-group-chevron {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    border: 1.5px solid #e8edf5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a93a8;
    flex-shrink: 0;
    transition: all 0.22s;
    margin-right: auto;
}

.cmp-group.open .cmp-group-chevron {
    background: #e8f3fd;
    border-color: #c5ddf7;
    color: #016fd1;
    transform: rotate(180deg);
}

.cmp-plan-cell-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    border-right: 1px solid #f5f7fa;
}

.cmp-plan-cell-header:last-child { border-right: none; }

/* accordion body */
.cmp-group-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.38s cubic-bezier(.4,0,.2,1);
}

.cmp-group.open .cmp-group-body { grid-template-rows: 1fr; }

.cmp-group-inner { overflow: hidden; }

/* rows — desktop grid */
.cmp-row {
    display: grid;
    grid-template-columns: 4fr repeat(4, 1fr);
    border-top: 1px solid #f5f7fa;
    transition: background 0.14s;
}

.cmp-row:hover { background: #fafbfc; }

.cmp-row.similar-row { background: #f0fdf4; border-right: 3px solid #86efac; }
.cmp-row.similar-row:hover { background: #dcfce7; }

.cmp-row-label {
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.cmp-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 8px;
    border-right: 1px solid #f5f7fa;
    font-size: 12px;
    font-weight: 600;
}

.cmp-cell:last-child { border-right: none; }
.cmp-cell svg { flex-shrink: 0; }
.cmp-cell svg.yes { color: #016fd1; }

/* X → dash */
.cmp-cell:has(svg.no)::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: #d1d5db;
}
.cmp-cell:has(svg.no) svg.no { display: none; }

@supports not selector(:has(svg)) {
    .cmp-cell svg.no { color: #d1d5db; opacity: 0.5; }
}

.cmp-cell .info-text {
    font-size: 12px;
    font-weight: 700;
    color: #4a5568;
    text-align: center;
    line-height: 1.4;
    white-space: nowrap;
}

/* =============================================
   FAQ SECTION
============================================= */
.faq-section {
    background: #fff;
    padding: 72px 0 88px;
    border-top: 1px solid #f0f2f5;
}

.faq-header { text-align: center; margin-bottom: 48px; }

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }

.faq-item {
    background: #f9fafb;
    border: 1.5px solid #edf0f5;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.22s, box-shadow 0.22s;
}

.faq-item.open {
    background: #fff;
    border-color: #d0e8f9;
    box-shadow: 0 4px 20px rgba(1, 111, 209, 0.07);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: right;
}

.faq-q-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #e8f3fd;
    color: #016fd1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
    font-family: 'Vazirmatn', sans-serif;
    transition: background 0.18s, color 0.18s;
}

.faq-item.open .faq-q-icon { background: #016fd1; color: #fff; }

.faq-question {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: #1a1f2e;
    line-height: 1.5;
    text-align: right;
}

.faq-chevron {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: 1.5px solid #e8edf5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a93a8;
    flex-shrink: 0;
    margin-right: auto;
    transition: all 0.22s;
}

.faq-item.open .faq-chevron {
    background: #e8f3fd;
    border-color: #c5ddf7;
    color: #016fd1;
    transform: rotate(180deg);
}

.faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.36s cubic-bezier(.4,0,.2,1);
}

.faq-item.open .faq-body { grid-template-rows: 1fr; }

.faq-body-inner { overflow: hidden; }

.faq-answer {
    padding: 0 64px 20px 22px;
    font-size: 13.5px;
    font-weight: 400;
    color: #5a6278;
    line-height: 1.9;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1100px) {
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
    .plan-card--featured { order: -1; }
    .modules-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- compare: موبایل --- */
@media (max-width: 900px) {

    /* هدر sticky و cols مخفی */
    .compare-sticky,
    .compare-cols { display: none; }

    /* compare-header باید روی همه چیز باشه */
    .compare-header {
        position: relative;
        z-index: 5;
    }

    /* هدر هر گروه: فقط عنوان نه grid */
    .cmp-group-header {
        display: flex;
        grid-template-columns: unset;
    }

    .cmp-plan-cell-header { display: none; }

    /* هر ردیف: block */
    .cmp-row {
        display: block;
        grid-template-columns: unset;
        border-top: 1px solid #e8edf5;
    }

    /* عنوان ردیف */
    .cmp-row-label {
        display: block;
        padding: 12px 16px 8px;
        font-size: 13px;
        font-weight: 700;
        color: #1a1f2e;
        background: #f8fafc;
        border-bottom: 1px solid #e8edf5;
    }

    /* similar row */
    .cmp-row.similar-row { background: #f0fdf4; border-right: none; }
    .cmp-row.similar-row .cmp-row-label {
        background: #e8fdf2;
        border-right: 3px solid #86efac;
    }

    /* wrapper که JS میسازه: grid 4 ستونه */
    .cmp-cells-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-top: none;
    }

    /* هر سل */
    .cmp-cell {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 10px 4px;
        border-right: 1px solid #f0f3f8;
        font-size: 12px;
    }

    .cmp-cell:last-child { border-right: none; }

    /* label نام پلن */
    .cmp-cell::before {
        content: attr(data-label);
        display: block;
        font-size: 10px;
        font-weight: 800;
        color: #8a93a8;
        white-space: nowrap;
    }

    .cmp-group-name { font-size: 14px; }
    .compare-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
    .pricing-hero { padding: 40px 0 32px; }
    .hero-content { flex-direction: column; }
    .hero-title { font-size: 28px; }
    .hero-visual { display: none; }
    .plans-grid { grid-template-columns: 1fr; }
    .controls-row { flex-direction: column; align-items: stretch; padding: 16px; gap: 20px; }
    .range-slider { width: 100%; }
    .offer-inner { flex-direction: column; align-items: flex-start; }
    .mode-toggle-wrap { flex-direction: column; width: 100%; max-width: 280px; }
    .mode-btn { justify-content: center; width: 100%; }
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title { font-size: 22px; }
    .faq-answer { padding-right: 22px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 24px; }
    .hero-desc { font-size: 13px; }
    .dur-pills { gap: 5px; }
    .dur-pill { font-size: 12px; padding: 6px 12px; }
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .compare-section { padding: 48px 0 56px; }
    .cmp-row-label { font-size: 12px; padding: 10px 12px 6px; }
    .cmp-cell { padding: 8px 3px; }
    .cmp-cell::before { font-size: 9px; }
    .cmp-cell .info-text { font-size: 11px; white-space: normal; }
}