    img{
        max-width: 100% !important;
    }
    :root {
      --primary-purple: #8640AD;
      --primary-blue: #3065BF;
      --dark: #060606;
      --text: #f7f8fc;
      --muted: rgba(255,255,255,.72);
      --glass-bg: rgba(255,255,255,.10);
      --glass-bg-strong: rgba(255,255,255,.14);
      --glass-border: rgba(255,255,255,.22);
      --glass-shadow: 0 20px 60px rgba(0,0,0,.35);
      --blur: 18px;
      --radius: 24px;
      --radius-sm: 16px;
      --transition: .28s ease;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button, input, textarea {
      font: inherit;
    }

    .page {
      width: 100%;
    }

    /* HERO */

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
    }

    .container {
      width: min(1180px, 100%);
      margin: 0 auto;
    }

    .hero-content {
      width: 100%;
      display: grid;
      grid-template-columns: 1.35fr .65fr;
      gap: 18px;
      align-items: end;
      position: relative;
      z-index: 2;
    }

    .glass {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(var(--blur));
      -webkit-backdrop-filter: blur(var(--blur));
      box-shadow: var(--glass-shadow);
    }

    .hero-card {
      border-radius: 28px;
      padding: clamp(18px, 3vw, 32px);
      overflow: hidden;
    }

    .badge {
        display: inline-block;
        margin-bottom: 16px;
        padding: 10px 18px;
        background: rgba(146, 42, 142, 0.1); /* کمی رنگ بنفش ملایم */
        border: 1px solid rgba(146, 42, 142, 0.2);
        color: #922A8E; /* رنگ اصلی بنفش */
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 999px;
        letter-spacing: 0.5px;
    }
    h2,h3{
        color: white !important;
    }
    .hero-title {
      margin: 0;
      font-size: clamp(28px, 4vw, 52px);
      line-height: 1.15;
      letter-spacing: -.02em;
      color: white;
    }

    .hero-short {
      margin: 14px 0 0;
      color: var(--muted);
      font-size: clamp(15px, 1.8vw, 18px);
      line-height: 2;
      max-width: 70ch;
    }

    .hero-actions {
      margin-top: 22px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn {
      border: 0;
      outline: 0;
      cursor: pointer;
      padding: 13px 22px;
      border-radius: 14px;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
      font-weight: 700;
    }

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
      box-shadow: 0 14px 30px rgba(48,101,191,.25);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(134,64,173,.30);
    }

    .btn-ghost {
      color: rgba(255,255,255,.92);
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.16);
    }

    .hero-side {
      display: grid;
      gap: 14px;
    }

    .hero-mini-card {
      border-radius: 22px;
      padding: 18px;
    }

    .hero-mini-title {
      margin: 0 0 10px;
      font-size: 15px;
      color: rgba(255,255,255,.82);
    }

    .hero-mini-value {
      margin: 0;
      font-size: 24px;
      font-weight: 800;
      background: linear-gradient(135deg, #fff, #b8d4ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    /* SECTIONS */
    .section {
      padding: 24px;
    }

    .section-card {
      border-radius: 26px;
      padding: clamp(18px, 2.5vw, 30px);
      background: var(--glass-bg-strong);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(var(--blur));
      -webkit-backdrop-filter: blur(var(--blur));
      box-shadow: var(--glass-shadow);
    }

    .section-title {
      margin: 0 0 14px;
      font-size: clamp(20px, 2.4vw, 28px);
    }

    .section-text {
      margin: 0;
      color: var(--muted);
      line-height: 2.1;
      font-size: 16px;
    }

    /* TABLE */
    .table-wrap {
      overflow-x: auto;
      border-radius: 18px;
      margin-top: 18px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 860px;
    }

    thead th {
      text-align: right;
      padding: 16px 14px;
      font-size: 14px;
      color: white;
      background: rgba(255,255,255,.12);
      border-bottom: 1px solid rgba(255,255,255,.12);
      white-space: nowrap;
    }

    tbody td {
      padding: 16px 14px;
      vertical-align: top;
      color: rgba(255,255,255,.86);
      border-bottom: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.05);
    }

    tbody tr:hover td {
      background: rgba(255,255,255,.08);
    }

    .price {
      font-weight: 800;
      color: #d8f0ff;
      white-space: nowrap;
    }

    .muted-cell {
      color: rgba(255,255,255,.68);
      line-height: 1.9;
      font-size: 14px;
    }

    /* TABS */
    .tabs {
      margin-top: 10px;
    }

    .tab-nav {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }

    .tab-btn {
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.08);
      color: rgba(255,255,255,.84);
      padding: 11px 16px;
      border-radius: 14px;
      cursor: pointer;
      transition: all var(--transition);
      font-weight: 600;
    }

    .tab-btn.active {
      background: linear-gradient(135deg, rgba(134,64,173,.95), rgba(48,101,191,.95));
      border-color: transparent;
      color: white;
      box-shadow: 0 10px 24px rgba(134,64,173,.20);
    }

    .tab-panel {
      display: none;
      border-radius: 20px;
      padding: 18px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      min-height: 180px;
      max-height: 320px;
      overflow: auto;
    }

    .tab-panel.active {
      display: block;
    }

    .tab-panel h3 {
      margin: 0 0 10px;
      font-size: 18px;
    }

    .tab-panel p, .tab-panel li {
      color: var(--muted);
      line-height: 2;
      font-size: 15px;
    }

    /* CTA BOTTOM */
    .bottom-cta {
      margin-top: 18px;
      display: flex;
      justify-content: center;
    }

    .cta-banner {
      width: 100%;
      border-radius: 28px;
      padding: 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      background:
        linear-gradient(135deg, rgba(134,64,173,.16), rgba(48,101,191,.14)),
        rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.16);
      box-shadow: var(--glass-shadow);
      backdrop-filter: blur(var(--blur));
      -webkit-backdrop-filter: blur(var(--blur));
    }

    .cta-banner h2 {
      margin: 0 0 6px;
      font-size: 24px;
    }

    .cta-banner p {
      margin: 0;
      color: var(--muted);
      line-height: 1.9;
    }

    /* MODAL */
    .modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 18px;
      z-index: 9999;
      background: rgba(0,0,0,.65);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .modal.show {
      display: flex;
    }

    .modal-card {
      width: min(720px, 100%);
      border-radius: 26px;
      padding: 22px;
      background: rgba(12,12,14,.78);
      border: 1px solid rgba(255,255,255,.16);
      box-shadow: 0 30px 80px rgba(0,0,0,.5);
    }

    .modal-header {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      margin-bottom: 16px;
    }

    .modal-title {
      margin: 0;
      font-size: 22px;
    }

    .close-btn {
      border: 0;
      background: rgba(255,255,255,.10);
      color: white;
      width: 42px;
      height: 42px;
      border-radius: 12px;
      cursor: pointer;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .modal-actions {
      margin-top: 18px;
      display: flex;
      gap: 10px;
      justify-content: flex-end;
      flex-wrap: wrap;
    }

    /* CONFIRM DIALOG */
    .confirm-box {
      text-align: center;
    }

    .confirm-box p {
      color: var(--muted);
      line-height: 2;
      margin: 12px 0 18px;
      font-size: 16px;
    }

    .confirm-actions {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* RESPONSIVE */
    @media (max-width: 980px) {
      .hero-content {
        grid-template-columns: 1fr;
      }

      .hero-side {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 720px) {
      .hero {
        min-height: auto;
        padding: 16px;
      }

      .section {
        padding: 16px;
      }

      .hero-side {
        grid-template-columns: 1fr;
      }

      .hero-card,
      .section-card,
      .cta-banner,
      .modal-card {
        border-radius: 22px;
      margin-top: 200px;

      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .tab-panel {
        max-height: 260px;
      }

      .modal-header {
        align-items: flex-start;
      }
    }

    @media (max-width: 480px) {
      .hero-actions,
      .modal-actions,
      .confirm-actions {
        width: 100%;
      }

      .btn,
      .tab-btn {
        width: 100%;
        justify-content: center;
      }

      .cta-banner {
        align-items: flex-start;
      }

      .cta-banner h2 {
        font-size: 20px;
      }
    }