    /* ============================
       IHS Scoped styles (all classes prefixed with ihs- to avoid conflicts)
       ============================ */
    :root{
      --ihs-brand-blue: #165fd1;
      --ihs-brand-blue-dark: #0f4aad;
      --ihs-brand-blue-light: #3b82f6;
      --ihs-accent: #ffb400;
      --ihs-accent-dark: #e6a200;
      --ihs-accent-light: #ffd166;
      --ihs-success: #10b981;
      --ihs-warning: #f59e0b;
      --ihs-danger: #ef4444;
      /* --ihs-muted: #6b7280; */
      --ihs-muted-light: #9ca3af;
      --ihs-muted-dark: #4b5563;
      --ihs-bg: #fbfbff;
      --ihs-card: #ffffff;
      --ihs-card-hover: #f8fbff;
      --ihs-radius: 16px;
      --ihs-radius-sm: 10px;
      --ihs-radius-lg: 20px;
      --ihs-shadow: 0 8px 25px rgba(8,20,50,0.08);
      --ihs-shadow-lg: 0 16px 40px rgba(8,20,50,0.12);
      --ihs-shadow-hover: 0 12px 32px rgba(22,95,209,0.15);
      --ihs-gradient: linear-gradient(135deg, #165fd1 0%, #0f4aad 100%);
      --ihs-gradient-accent: linear-gradient(135deg, #ffb400 0%, #e6a200 100%);
      --ihs-gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
      --ihs-gradient-premium: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    }

    /* reset for ihs scope only */
    .ihs-root * { box-sizing: border-box; margin: 0; padding: 0; font-weight: inherit;}
    .ihs-root { 
      direction: rtl; 
      color: #111827; 
      background: linear-gradient(180deg,var(--ihs-bg),#ffffff); 
      padding: 0; 
      margin: 0; 
      line-height: 1.6;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    a.ihs-link { color: var(--ihs-brand-blue); text-decoration: none; transition: color 0.2s ease; }
    a.ihs-link:hover { color: var(--ihs-brand-blue-dark); }
    img.ihs-img { max-width: 100%; height: auto; display: block; }

    /* ====== Intro / Hero ====== */
    .ihs-hero { 
      max-width: 1200px; 
      margin: 30px auto; 
      padding: 20px; 
      display: grid; 
      grid-template-columns: 1fr 400px; 
      gap: 25px; 
      align-items: center; 
      position: relative;
    }
    .ihs-hero::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: var(--ihs-gradient);
      border-radius: 50%;
      opacity: 0.03;
      z-index: -1;
      animation: float 8s ease-in-out infinite;
    }
    .ihs-hero::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -100px;
      width: 200px;
      height: 200px;
      background: var(--ihs-gradient-accent);
      border-radius: 50%;
      opacity: 0.03;
      z-index: -1;
      animation: float 10s ease-in-out infinite reverse;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-15px) rotate(5deg); }
    }
    .ihs-hero .ihs-hero-card { 
      background: linear-gradient(145deg,#ffffff,#f3f6ff); 
      border-radius: var(--ihs-radius-lg); 
      padding: 24px; 
      box-shadow: var(--ihs-shadow-lg);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(22,95,209,0.08);
    }
    .ihs-hero .ihs-hero-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 4px;
      background: var(--ihs-gradient);
    }
    .ihs-kicker { 
      display:inline-flex; 
      align-items: center;
      gap: 8px;
      background: rgba(22,95,209,0.08); 
      color: var(--ihs-brand-blue); 
      padding: 6px 12px; 
      border-radius: 20px; 
      font-weight:700; 
      font-size: 13px; 
      margin-bottom: 10px;
      backdrop-filter: blur(10px);
    }
    .ihs-hero h1 { 
      margin: 10px 0 8px; 
      color: var(--ihs-brand-blue); 
      font-size: 26px; 
      line-height: 1.3; 
      font-weight: 800;
      background: linear-gradient(135deg, var(--ihs-brand-blue), var(--ihs-brand-blue-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .ihs-hero p.ihs-lead { 
      color: var(--ihs-muted); 
      margin-bottom: 10px; 
      line-height: 1.7; 
      font-size: 14px; 
    }
    .ihs-hero .ihs-cta { 
      display:flex; 
      gap:10px; 
      flex-wrap:wrap; 
      margin-top: 10px; 
    }
    .ihs-btn { 
      display:inline-flex; 
      align-items:center; 
      justify-content: center;
      gap:8px; 
      padding:10px 16px; 
      border-radius: var(--ihs-radius-sm); 
      font-weight:700; 
      cursor:pointer; 
      border:0; 
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      font-size: 14px;
    }
    .ihs-btn::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 5px;
      height: 5px;
      background: rgba(255, 255, 255, 0.5);
      opacity: 0;
      border-radius: 100%;
      transform: scale(1, 1) translate(-50%);
      transform-origin: 50% 50%;
    }
    .ihs-btn:focus:not(:active)::after {
      animation: ripple 1s ease-out;
    }
    @keyframes ripple {
      0% {
        transform: scale(0, 0);
        opacity: 0.5;
      }
      100% {
        transform: scale(20, 20);
        opacity: 0;
      }
    }
    .ihs-btn-primary { 
      background: var(--ihs-gradient); 
      color:#fff; 
      box-shadow: 0 6px 18px rgba(22,95,209,0.15); 
    }
    .ihs-btn-primary:hover {
      background: var(--ihs-brand-blue-dark);
      box-shadow: 0 8px 24px rgba(22,95,209,0.25);
      transform: translateY(-2px);
    }
    .ihs-btn-outline { 
      background: transparent; 
      border: 1px solid rgba(22,95,209,0.12); 
      color: var(--ihs-brand-blue); 
    }
    .ihs-btn-outline:hover {
      background: rgba(22,95,209,0.04);
      border-color: rgba(22,95,209,0.3);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(22,95,209,0.1);
    }
    .ihs-btn-success {
      background: var(--ihs-gradient-success);
      color: white;
      box-shadow: 0 6px 18px rgba(16,185,129,0.15);
    }
    .ihs-btn-success:hover {
      background: #059669;
      box-shadow: 0 8px 24px rgba(16,185,129,0.25);
      transform: translateY(-2px);
    }
    .ihs-btn-premium {
      background: var(--ihs-gradient-premium);
      color: white;
      box-shadow: 0 6px 18px rgba(139,92,246,0.15);
    }
    .ihs-btn-premium:hover {
      background: #7c3aed;
      box-shadow: 0 8px 24px rgba(139,92,246,0.25);
      transform: translateY(-2px);
    }

    .ihs-hero .ihs-hero-art { 
      display:flex; 
      justify-content:center; 
      align-items:center; 
    }
    .ihs-hero .ihs-art-card { 
      background: linear-gradient(145deg,#ffffff,#f8fbff); 
      padding:16px; 
      border-radius:var(--ihs-radius-lg); 
      box-shadow: var(--ihs-shadow-lg); 
      max-width:400px; 
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255,180,0,0.08);
    }
    .ihs-hero .ihs-art-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 4px;
      background: var(--ihs-gradient-accent);
    }

    /* ====== Badges line ====== */
    .ihs-badges { 
      max-width:1200px; 
      margin: 10px auto 20px; 
      padding:0 20px; 
      display:flex; 
      gap:10px; 
      align-items:center; 
      justify-content:space-between; 
      flex-wrap:wrap; 
    }
    .ihs-badge { 
      display:flex; 
      gap:10px; 
      align-items:center; 
      background:var(--ihs-card); 
      padding:10px 14px; 
      border-radius:var(--ihs-radius-sm); 
      box-shadow: var(--ihs-shadow); 
      color: var(--ihs-muted); 
      font-weight:700; 
      font-size:13px; 
      transition: all 0.3s ease;
      border: 1px solid rgba(22,95,209,0.06);
    }
    .ihs-badge:hover {
      transform: translateY(-3px);
      box-shadow: var(--ihs-shadow-hover);
      color: var(--ihs-brand-blue);
    }

    /* ====== Plans grid (6 cards) ====== */
    .ihs-plans { 
      padding: 30px 15px 15px; 
      max-width:1200px; 
      margin: auto; 
      position: relative;
    }
    .ihs-plans::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 200px;
      height: 200px;
      background: var(--ihs-gradient);
      border-radius: 50%;
      opacity: 0.02;
      z-index: -1;
      animation: float 12s ease-in-out infinite;
    }
    .ihs-plans .ihs-title { 
      color: var(--ihs-brand-blue); 
      font-size:22px; 
      margin-bottom:24px; 
      text-align:right; 
      font-weight:800; 
      position: relative;
      display: inline-block;
    }
    .ihs-plans .ihs-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      right: 0;
      width: 60%;
      height: 3px;
      background: var(--ihs-gradient-accent);
      border-radius: 3px;
    }
    .ihs-plans-grid { 
      display:grid; 
      grid-template-columns: repeat(3,1fr); 
      gap:20px; 
    }
    .ihs-plan { 
      background: var(--ihs-card); 
      border-radius:var(--ihs-radius-lg); 
      padding:20px; 
      box-shadow: var(--ihs-shadow); 
      border-top:4px solid rgba(22,95,209,0.08); 
      display:flex; 
      flex-direction:column; 
      gap:12px; 
      position:relative; 
      transition: all 0.4s ease;
      overflow: hidden;
      border: 1px solid rgba(22,95,209,0.06);
    }
    .ihs-plan::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 4px;
      background: var(--ihs-brand-blue);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .ihs-plan:hover {
      transform: translateY(-6px);
      box-shadow: var(--ihs-shadow-hover);
      background: var(--ihs-card-hover);
      border-top-color: var(--ihs-brand-blue);
    }
    .ihs-plan:hover::before {
      opacity: 1;
    }
    .ihs-plan.ihs-popular { 
      border-top-color: var(--ihs-accent); 
      transform: translateY(-4px); 
      box-shadow: var(--ihs-shadow-lg); 
      position: relative;
      border: 1px solid rgba(255,180,0,0.1);
    }
    .ihs-plan.ihs-popular::after {
      content: '🛒 پرفروش';
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--ihs-gradient-accent);
      color: white;
      padding: 5px 12px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      box-shadow: 0 4px 12px rgba(255,180,0,0.3);
      z-index: 2;
    }
    .ihs-plan.ihs-popular:hover {
      transform: translateY(-10px);
    }
    .ihs-plan.ihs-recommended {
      border-top-color: var(--ihs-success);
      position: relative;
    }
    .ihs-plan.ihs-recommended::after {
      content: '⭐ توصیه شده';
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--ihs-gradient-success);
      color: white;
      padding: 5px 12px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      box-shadow: 0 4px 12px rgba(16,185,129,0.3);
      z-index: 2;
    }
    .ihs-plan.ihs-premium {
      border-top-color: var(--ihs-brand-blue);
      position: relative;
    }
    .ihs-plan.ihs-premium::after {
      content: '💎 پریمیوم';
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--ihs-gradient);
      color: white;
      padding: 5px 12px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      box-shadow: 0 4px 12px rgba(22,95,209,0.3);
      z-index: 2;
    }
    .ihs-plan h3 { 
      margin:0; 
      color: var(--ihs-brand-blue); 
      font-size:24; 
      font-weight: 800;
    }
    .ihs-plan .ihs-sub { 
      color: var(--ihs-muted); 
      font-size:13px; 
    }
    .ihs-plan .ihs-price { 
      font-size:22px; 
      color: var(--ihs-accent); 
      font-weight:900; 
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .ihs-plan ul.ihs-features { 
      list-style:none; 
      padding:0; 
      margin:6px 0 0; 
      flex:1; 
    }
    .ihs-plan ul.ihs-features li { 
      padding:10px 0; 
      border-bottom: 1px dashed #f0f2ff; 
      color: var(--ihs-muted); 
      display:flex; 
      justify-content:space-between; 
      align-items:center; 
      font-size:13px; 
      transition: color 0.2s ease;
    }
    .ihs-plan ul.ihs-features li:hover {
      color: var(--ihs-brand-blue);
    }
    .ihs-plan ul.ihs-features li span {
      font-weight: 600;
    }
    .ihs-plan ul.ihs-features li strong {
      color: #111827;
      font-weight: 700;
    }
    .ihs-plan .ihs-cta { 
      display:flex; 
      gap:8px; 
      justify-content:flex-end; 
      margin-top:10px; 
      flex-wrap: wrap;
    }
    .ihs-plan .ihs-cta a.ihs-order { 
      text-decoration:none; 
    }

    /* ====== Floating compare navigator ====== */
    .ihs-compare-nav { 
      position: fixed; 
      left: 20px; 
      bottom: 30px; 
      z-index: 9999; 
      display:flex; 
      gap:8px; 
      flex-direction:column; 
      transition: all 0.3s ease;
    }
    .ihs-compare-nav .ihs-compare-pill { 
      background: var(--ihs-card); 
      padding:12px 16px; 
      border-radius:20px; 
      box-shadow: var(--ihs-shadow); 
      font-weight:800; 
      color:var(--ihs-brand-blue); 
      cursor:pointer; 
      transform: translateY(4px); 
      transition: all 0.3s ease; 
      opacity: 0.98; 
      display: flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(22,95,209,0.06);
      font-size: 13px;
    }
    .ihs-compare-nav .ihs-compare-pill:hover {
      background: var(--ihs-brand-blue);
      color: white;
      transform: translateY(0);
      box-shadow: var(--ihs-shadow-hover);
    }
    .ihs-compare-nav .ihs-compare-pill.active {
      background: var(--ihs-gradient);
      color: white;
      transform: translateY(0);
    }
    .ihs-compare-nav .ihs-compare-pill i {
      font-size: 14px;
    }
    .ihs-compare-nav.hidden { 
      opacity: 0;
      visibility: hidden;
      transform: translateY(15px);
    }

    /* ====== Compare area ====== */
    .ihs-compare { 
      max-width:1200px; 
      margin: 25px auto; 
      background: linear-gradient(145deg,#ffffff,#fbfdff); 
      border-radius:var(--ihs-radius-lg); 
      padding:20px; 
      box-shadow:var(--ihs-shadow-lg); 
      position:relative; 
      overflow:auto; 
      border: 1px solid rgba(22,95,209,0.06);
    }
    .ihs-compare::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 4px;
      background: var(--ihs-gradient);
      border-radius: var(--ihs-radius-lg) var(--ihs-radius-lg) 0 0;
    }
    .ihs-compare table { 
      width:100%; 
      border-collapse:collapse; 
      direction:rtl; 
    }
    .ihs-compare th, .ihs-compare td { 
      padding:12px 10px; 
      border-bottom: 1px solid #f1f5ff; 
      text-align:right; 
      font-size:13px; 
      color: #111827; 
      transition: all 0.2s ease;
    }
    .ihs-compare thead th { 
      color: var(--ihs-brand-blue); 
      font-weight:800; 
      background:transparent; 
      font-size: 14px;
      position: relative;
      white-space: nowrap;
    }
    .ihs-compare thead th::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 0;
      height: 2px;
      background: var(--ihs-brand-blue);
      transition: width 0.3s ease;
    }
    .ihs-compare thead th:hover::after {
      width: 100%;
    }
    .ihs-compare .ihs-highlight { 
      background: linear-gradient(90deg, rgba(255,180,64,0.08), rgba(246,248,255,0.12)); 
      position: relative;
    }
    .ihs-compare .ihs-highlight::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 3px;
      height: 100%;
      background: var(--ihs-accent);
    }

    /* ====== Why-us / features ====== */
    .ihs-why { 
      max-width:1200px; 
      margin: 20px auto; 
      padding:20px; 
      border-radius:var(--ihs-radius-lg); 
      box-shadow:var(--ihs-shadow-lg); 
      background: linear-gradient(145deg,#ffffff,#f8fbff); 
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(22,95,209,0.06);
    }
    .ihs-why::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 4px;
      background: var(--ihs-gradient-accent);
    }
    .ihs-why .ihs-grid { 
      display:grid; 
      grid-template-columns: 1fr 1fr; 
      gap:20px; 
    }
    .ihs-feature { 
      display:flex; 
      gap:12px; 
      align-items:flex-start; 
    }
    .ihs-feature i { 
      font-size:20px; 
      color:var(--ihs-brand-blue); 
      width:44px; 
      height:44px; 
      background: rgba(22,95,209,0.08); 
      border-radius:10px; 
      display:flex; 
      align-items:center; 
      justify-content:center; 
      flex-shrink: 0;
      transition: all 0.3s ease;
    }
    .ihs-feature:hover i {
      background: var(--ihs-brand-blue);
      color: white;
      transform: rotate(5deg) scale(1.1);
    }

    /* ====== FAQ ====== */
    .ihs-faq { 
      max-width:1100px; 
      margin: 25px auto; 
      padding: 10px; 
    }
    .ihs-faq h2 { 
      color: var(--ihs-brand-blue); 
      text-align:center; 
      margin-bottom:20px; 
      font-size:22px; 
      font-weight: 800;
      position: relative;
      display: inline-block;
      left: 50%;
      transform: translateX(-50%);
    }
    .ihs-faq h2::after {
      content: '';
      position: absolute;
      bottom: -8px;
      right: 0;
      width: 100%;
      height: 3px;
      background: var(--ihs-gradient);
      border-radius: 3px;
    }
    .ihs-faq .ihs-q { 
      background: var(--ihs-card); 
      border-radius:var(--ihs-radius-sm); 
      padding:16px; 
      margin-bottom:10px; 
      box-shadow:var(--ihs-shadow); 
      transition: all 0.3s ease;
      border-right: 3px solid transparent;
      border: 1px solid rgba(22,95,209,0.06);
    }
    .ihs-faq .ihs-q:hover {
      border-right-color: var(--ihs-brand-blue);
      transform: translateX(-3px);
    }
    .ihs-q .ihs-q-title { 
      display:flex; 
      justify-content:space-between; 
      align-items:center; 
      cursor:pointer; 
      font-weight:800; 
      color:var(--ihs-brand-blue); 
      font-size: 14px;
    }
    .ihs-q .ihs-q-body { 
      max-height:0; 
      overflow:hidden; 
      transition: max-height .4s ease, margin-top .4s ease; 
      color:var(--ihs-muted); 
      margin-top:0;
      line-height: 1.7;
      font-size: 13px;
    }
    .ihs-q.open .ihs-q-body { 
      max-height: 400px; 
      margin-top: 10px;
    }
    .ihs-q .ihs-q-title i {
      transition: transform 0.4s ease;
    }
    .ihs-q.open .ihs-q-title i {
      transform: rotate(-90deg);
    }

    /* ====== CTA footer box ====== */
    .ihs-cta-footer { 
      max-width:1200px; 
      margin: 20px auto 60px; 
      padding: 20px; 
      border-radius:var(--ihs-radius-lg); 
      background: linear-gradient(90deg, rgba(22,95,209,0.08), rgba(255,180,64,0.06)); 
      display:flex; 
      justify-content:space-between; 
      align-items:center; 
      gap:12px; 
      box-shadow:var(--ihs-shadow-lg); 
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(22,95,209,0.06);
    }
    .ihs-cta-footer::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 4px;
      background: var(--ihs-gradient);
    }
    .ihs-cta-footer .ihs-cta-buttons { 
      display:flex; 
      gap:10px; 
    }

    /* ====== Particles background ====== */
    .ihs-particles {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      pointer-events: none;
    }

    /* ====== Plan Tags ====== */
    .ihs-plan-tag {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 3px 8px;
      border-radius: 5px;
      font-size: 11px;
      font-weight: 700;
      margin-left: 6px;
    }
    .ihs-tag-popular {
      background: rgba(255,180,0,0.1);
      color: var(--ihs-accent-dark);
    }
    .ihs-tag-recommended {
      background: rgba(16,185,129,0.1);
      color: var(--ihs-success);
    }
    .ihs-tag-premium {
      background: rgba(22,95,209,0.1);
      color: var(--ihs-brand-blue);
    }
    .ihs-tag-new {
      background: rgba(239,68,68,0.1);
      color: var(--ihs-danger);
    }

    /* ====== Modal ====== */
    .ihs-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 10000;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      overflow: hidden;
    }

    .ihs-modal-content {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      border-radius: 16px;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
      width: 90%;
      max-width: 480px;
      max-height: 85vh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(22, 95, 209, 0.1);
    }

    .ihs-modal-header {
      padding: 20px;
      background: linear-gradient(135deg, #165fd1 0%, #0f4aad 100%);
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-radius: 16px 16px 0 0;
    }

    .ihs-modal-header h3 {
      margin: 0;
      font-size: 18px;
      font-weight: 700;
    }

    .ihs-modal-close {
      background: rgba(255, 255, 255, 0.2);
      border: none;
      color: white;
      font-size: 20px;
      cursor: pointer;
      padding: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .ihs-modal-close:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: rotate(90deg);
    }

    .ihs-modal-body {
      padding: 0;
      flex: 1;
      overflow-y: auto;
    }

    .ihs-modal-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .ihs-modal-features li {
      padding: 12px 20px;
      border-bottom: 1px solid #f1f5ff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
    }

    .ihs-modal-features li:last-child {
      border-bottom: none;
    }

    .ihs-modal-features li span {
      color: var(--ihs-muted);
      font-weight: 600;
    }

    .ihs-modal-features li strong {
      color: #111827;
      font-weight: 700;
    }

    .ihs-modal-badges {
      display: flex;
      gap: 8px;
      margin: 20px;
      flex-wrap: wrap;
    }

    .ihs-modal-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 12px;
      background: rgba(22, 95, 209, 0.08);
      border-radius: 8px;
      font-size: 12px;
      font-weight: 600;
      color: var(--ihs-brand-blue);
    }

    .ihs-modal-badge i {
      font-size: 14px;
    }

    /* ====== Compare Empty State ====== */
    .compare-empty-state {
      text-align: center;
      padding: 60px 20px;
      color: var(--ihs-muted);
    }

    .compare-empty-state i {
      font-size: 64px;
      margin-bottom: 20px;
      opacity: 0.3;
    }

    .compare-empty-state p {
      margin: 8px 0;
      font-size: 16px;
    }

    .compare-empty-state .small {
      font-size: 14px;
      opacity: 0.7;
    }

    /* ====== Responsive ====== */
    @media (max-width: 1100px) {
      .ihs-plans-grid { grid-template-columns: repeat(2,1fr); }
      .ihs-hero { grid-template-columns: 1fr; text-align: center; }
      .ihs-hero .ihs-hero-art { order: -1; }
      .ihs-why .ihs-grid { grid-template-columns: 1fr; }
      .ihs-compare table { font-size:12px; }
      .ihs-cta-footer { flex-direction: column; text-align: center; }
    }
    @media (max-width: 768px) {
      .ihs-plans-grid { grid-template-columns: 1fr; }
      .ihs-compare-nav { left: auto; right: 12px; bottom: 20px; flex-direction: row; flex-wrap: wrap; }
      .ihs-hero { padding: 15px; }
      .ihs-hero h1 { font-size: 22px; }
      .ihs-hero .ihs-hero-card, .ihs-plan, .ihs-why, .ihs-compare, .ihs-cta-footer { padding: 16px; }
      .ihs-modal-content { width: 95%; }
      .ihs-plan .ihs-cta { flex-direction: column; }
    }
    @media (max-width: 480px) {
      .ihs-hero h1 { font-size: 20px; }
      .ihs-plans .ihs-title { font-size: 20px; }
      .ihs-btn { padding: 10px 14px; font-size: 13px; }
      .ihs-compare-nav .ihs-compare-pill { padding: 8px 12px; font-size: 12px; }
    }

    /* micro animations */
    .ihs-fade { opacity:0; transform: translateY(15px); transition: opacity .6s ease, transform .6s ease; }
    .ihs-fade.ihs-show { opacity:1; transform:none; }
    
    /* Loading animation */
    .ihs-loading {
      display: inline-block;
      width: 18px;
      height: 18px;
      border: 2px solid rgba(255,255,255,.3);
      border-radius: 50%;
      border-top-color: #fff;
      animation: spin 1s ease-in-out infinite;
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Ripple effect */
    .ihs-ripple {
      position: absolute;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.7);
      transform: scale(0);
      animation: ripple-animation 0.6s linear;
    }
    @keyframes ripple-animation {
      to {
        transform: scale(4);
        opacity: 0;
      }
    }

    /* Notification */
    .ihs-notification {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--ihs-success);
      color: white;
      padding: 12px 20px;
      border-radius: 8px;
      z-index: 10001;
      box-shadow: var(--ihs-shadow-lg);
      font-weight: 600;
    }







/* ====== Remove Button Styles ====== */
.ihs-btn-remove {
  background: none;
  border: none;
  color: var(--ihs-danger);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  font-size: 12px;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.ihs-btn-remove:hover {
  background: rgba(239, 68, 68, 0.1);
  opacity: 1;
  transform: scale(1.1);
}

.ihs-compare thead th {
  position: relative;
}

.ihs-compare thead th .ihs-btn-remove {
  position: static;
  margin-right: auto;
}


/* باکس قیمت وسط + تخفیف */
.ihs-price-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff8e1 0%, #fff3c4 100%);
  border: 2px dashed #ffb400;
  border-radius: 16px;
  padding: 12px 16px;
  min-width: 120px;
  position: relative;
  box-shadow: 0 4px 15px rgba(255,180,0,.2);
  transition: all .3s ease;
}
.ihs-plan:hover .ihs-price-wrapper {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255,180,0,.3);
}
.ihs-price {
  text-align: center;
  line-height: 1.2;
}
.ihs-price del {
  color: #ff00006b;
  font-size: 19;
}
.ihs-price strong {
  font-size: 39px;
  color: #20a835;
  font-weight: 900;
}
.ihs-price small {
  font-size: 11px;
  color: #777;
  display: block;
  margin-top: 2px;
}
.ihs-discount-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ef4444;
  color: white;
  font-size: 19;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(239,68,68,.4);
}

/* آیکون‌ها */
.ico { display: flex; align-items: center; gap: 6px; }
.ihs-icon {
  width: 18px; height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(30%) sepia(80%) hue-rotate(200deg) brightness(95%) contrast(110%);
}


