    :root {
      --brand: #4caf50;
      --brand-dark: #2e7d32;
      --brand-light: #f4fbf4;
      --text: #222;
      --muted: #6b7280;
      --card-radius: 22px;
      --soft-shadow: 0 0px 5px rgba(0, 0, 0, 0.08);
    }

    @font-face {
        font-family: iranSans;
        src: url('./src/fonts/IRANSansX-Regular.woff2');
        font-weight: 100;
    }
    @font-face {
        font-family: iranSans;
        src: url('./src/fonts/IRANSansX-Bold.woff2');
        font-weight: 900;
    }

    html, body {
      height: 100%;
    }

    body {
      font-family: iranSans, Arial, sans-serif;
      color: var(--text);
      background: #fafafa;
    }

    button#copyCardBtn {
      font-family: iranSans;
      font-weight: 100;
    }

    main.hero-section {
      position: relative;
      top: 0;
      right: 0;
      left: 0;
      width: 100%;
    }

    .container-wide {
      width: min(98%, 1440px);
      margin: 0 auto;
    }

    .navbar-wrap {
      position: fixed;
      top: 0;
      z-index: 1000;
      padding-top: .75em;
      width: 100%;
    }

    .topbar {
      background: #fff;
      border-radius: 26px;
      box-shadow: var(--soft-shadow);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 180px;
    }

    .brand img {
        width: 5em;
    }

    .brand-mark {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      background: linear-gradient(145deg, #d9f6d9, #9bd68e);
      box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      font-weight: 700;
      color: #1b5e20;
      font-size: 12px;
      text-align: center;
      line-height: 1.1;
    }

    .brand-title {
      font-size: 1.6rem;
      font-weight: 700;
      color: #2e7d32;
      line-height: 1.1;
    }

    .brand-subtitle {
      font-size: 0.82rem;
      color: var(--muted);
      margin-top: 4px;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .nav-link {
      color: #222;
      font-weight: 600;
      padding: 10px 14px;
      border-radius: 999px;
      transition: background 0.2s ease, color 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      white-space: nowrap;
    }

    .nav-link:hover {
      background: #f0f6ef;
      color: var(--brand-dark);
    }

    .nav-link.active {
      color: var(--brand-dark);
      position: relative;
    }

    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 3px;
        border-radius: 999px;
        background: var(--brand);
    }

    .download-btn {
      border: 0;
      border-radius: 999px;
      background: linear-gradient(135deg, #3f8f3b, #7da13e);
      color: #fff;
      padding: 0 20px;
      height: 48px;
      line-height: 48px;
      box-shadow: 0 10px 20px rgba(46, 125, 50, 0.25);
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .download-btn i {
      font-size: 1.2rem;
    }

    .mobile-trigger {
      display: none;
    }

    .section-card {
      background: #fff;
      border-radius: var(--card-radius);
      box-shadow: var(--soft-shadow);
      border: 1px solid rgba(0,0,0,0.03);
    }

    .hero {
      position: relative;
      overflow: hidden;
      margin-top: 0;
      height: 100vh;
      background: url('./src/heroBack.png') center/cover no-repeat;
      box-shadow: var(--soft-shadow);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      padding: 18px 18px 30px;
    }

    .hero-center {
      display: grid;
      place-items: center;
      padding: 120px 0 100px;
      text-align: center;
    }

    .hero-emblem {
      width: min(250px, 68vw);
      aspect-ratio: 1;
      border-radius: 28px;
      background: linear-gradient(145deg, #c7ef7e, #85c63a);
      border: 10px solid rgba(17, 24, 39, 0.75);
      box-shadow: 0 24px 50px rgba(0,0,0,0.15);
      display: grid;
      place-items: center;
      color: #111;
      font-weight: 900;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      position: relative;
      overflow: hidden;
      transform: rotate(45deg);
    }

    .hero-emblem span {
      transform: rotate(-45deg);
      line-height: 1.2;
      padding: 24px;
    }

    .hero-emblem small {
      display: block;
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .hero-glow {
      position: absolute;
      inset: auto 8% 12% auto;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.75), rgba(255,255,255,0));
      filter: blur(12px);
      pointer-events: none;
    }

    .download-grid {
      margin-top: -18vh;
      position: relative;
      z-index: 2;
    }

    .download-card {
      border-radius: 24px;
      padding: 22px 18px;
      min-height: 116px;
      display: flex;
      align-items: center;
      gap: 14px;
      background: #fff;
      box-shadow: var(--soft-shadow);
      border: 1px solid rgba(0,0,0,0.03);
      margin-bottom: 18px;
    }

    .download-icon {
      width: 64px;
      height: 64px;
      border-radius: 999px;
      background: #eef7ec;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      font-size: 2rem;
      color: var(--brand-dark);
    }
    .download-icon img {
      width: 100%;
      object-fit: contain;
      padding: .25em;
    }

    .download-card h3 {
      margin: 0;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text);
    }

    .download-card p, .download-card a {
      margin: 6px 0 0;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .section-title {
      text-align: center;
      font-size: clamp(1.4rem, 2vw, 2rem);
      font-weight: 800;
      color: #222;
      width: max-content;
      margin: auto;
      margin-top: 2em;
      margin-bottom: 2em;
    }
    .section-title:before {
      content: '';
      width: 3em;
      position: absolute;
      display: block;
      background: linear-gradient(45deg, #84b31b, transparent);
      height: 3px;
      margin-right: -5em;
      border-radius: 3em;
      margin-top: .55em;
    }
    .section-title:after {
      content: '';
      width: 3em;
      position: absolute;
      display: inline-block;
      background: linear-gradient(225deg, #84b31b, transparent);
      height: 3px;
      margin-right: 2em;
      border-radius: 3em;
      margin-top: .55em;
    }

.feature-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-left: 2.5em;
  padding-right: 2.5em;
}

.feature-card-container {
  min-width: 0;
}

.feature-card {
  height: 100%;
  border-radius: 24px;
  padding: 24px 18px 20px;
  box-shadow: var(--soft-shadow);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: center;
}
.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.feature-card p {
  line-height: 1.9;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

@media (min-width: 601px) {
  .feature-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 993px) {
  .feature-container {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

    .feature-icon {
      width: 100px;
      height: 100px;
      border-radius: 999px;
      margin: 0 auto 16px;
      margin-bottom: .75em;
      display: grid;
      place-items: center;
      font-size: 2.15rem;
    }
    .feature-icon img {
      width: 100%;
    }

    .feature-card h4 {
      font-size: 1.15rem;
      font-weight: 700;
      margin: 0 0 10px;
      color: #1f2937;
    }

    .feature-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.9;
      font-size: 0.95rem;
    }

    .quote-wrap {
      margin-left: 3.5em;
      margin-right: 3.5em;
      margin-bottom: 1em;
      margin-top: 2.5em;
      padding: 4.5em;
      border-radius: 28px;
      box-shadow: var(--soft-shadow);
      border: 1px solid rgba(0,0,0,0.03);
      overflow: hidden;
      background-image: url('./src/bottom.png');
      background-position: center center;
      background-size: cover;
    }

    .quote-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 3em;
    }

    .quote-art {
      min-height: 120px;
      border-radius: 22px;
      display: grid;
      place-items: center;
      color: #7c8c7c;
      font-weight: 700;
      text-align: center;
      padding: 18px;
    }
    .quote-art img {
      width: 3em;
    }

    .quote-text {
      flex: 1 1 360px;
      font-size: 1.25rem;
      line-height: 2.1;
      max-width: 30em;
      text-align: right;
    }

    .quote-mark {
      font-size: 4rem;
      line-height: 1;
      color: var(--brand);
      font-weight: 900;
      text-align: center;
      width: 100px;
    }

    .quote-decorations {
      width: 25%;
      margin: auto;
      height: 3px;
      background: linear-gradient(45deg, transparent, #89b624, transparent);
      margin-top: 2.5em;
      border-radius: 3em;
    }

    .sidenav {
      width: min(82vw, 340px);
      padding-top: 18px;
      z-index: 99999;
    }

    .sidenav li > a {
      font-size: 1.05rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 1em;
    }

    .sidenav .mobile-cta {
      margin: 14px 16px 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      background: linear-gradient(135deg, #3f8f3b, #1b5e20);
      color: #fff;
      min-height: 48px;
      font-weight: 700;
    }

    .sidenav .mobile-cta i.material-icons {
      color: white !important;
    }

    .divider-soft {
      height: 1px;
      background: rgba(0,0,0,0.06);
      margin: 6px 0 10px;
    }

    .section-pad {
      padding-top: 24px;
    }

    .dropdown-content {
      border-radius: 18px;
      padding-right: 0;
      min-width: 220px;
      overflow: hidden;
      box-shadow: var(--soft-shadow);
    }

    .dropdown-content li > a {
      font-weight: 600;
      color: #222;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .dropdown-content li > a i {
      color: var(--brand);
    }

    .submenu-img {
        width: 2em;
        height: 2em;
        object-fit: contain;
    }

    @media (max-width: 992px) {
      .desktop-nav, .download-btn.desktop-only {
        display: none;
      }

      .mobile-trigger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .topbar {
        padding: 10px 12px;
        flex-direction: row-reverse;
      }

      .brand {
        min-width: auto;
        gap: 10px;
      }

      .brand-title {
        font-size: 1.2rem;
      }

      .brand-subtitle {
        display: none;
      }

      .hero {
        min-height: 560px;
      }

      .hero-center {
        padding: 90px 0 70px;
      }

      .hero-emblem {
        width: min(210px, 68vw);
      }
    }

    @media (max-width: 600px) {

      .brand img{
        width: 3.5em;
      }

      .hero {
        min-height: 520px;
        background: url('./src/backMobile.png') center/cover no-repeat;
      }

      .hero-inner {
        padding: 12px;
      }

      .hero-center {
        padding: 70px 0 54px;
      }

      .download-grid {
        margin-top: -16.6em;
      }

      .download-container {
        display: flex;
        flex-direction: column-reverse;
      }
      .download-card {
            padding: 0;
        padding-left: 1em;
        margin-bottom: .15em;
        padding-right: 1em;
        padding-top: .5em;
        padding-bottom: .5em;  
        min-height: max-content;
      }

      .download-icon {
        width: 56px;
        height: 56px;
        font-size: 1.7rem;
      }

      .quote-wrap {
        padding: 1.5em;
        margin-left: 2.5em;
        margin-right: 2.5em;
        margin-bottom: 3em !important;
      }

      .quote-row {
        justify-content: center;
        gap: 1em;
      }

      .quote-mark {
        width: auto;
      }

      .section-title:after, .section-title:before {
        display: none;
      }
      
    }

    .modern-modal {
  overflow: hidden;
}

.modern-modal .modal-content {
  padding: 28px 28px 18px;
}

.modal-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.modal-badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
  flex: 0 0 auto;
}

.modal-badge i {
  font-size: 28px;
}

.modal-hero h5 {
  margin: 0;
  font-weight: 800;
  font-size: 1.35rem;
  color: #1f2937;
}

.modal-subtitle {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 0.95rem;
}

.modal-body p {
  margin: 0;
  color: #374151;
  line-height: 2.2;
  font-size: 1rem;
  text-align: justify;
}

.modern-modal-footer {
  padding: 16px 24px 24px;
  background: linear-gradient(to top, #fafafa, #fff);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.modern-close-btn {
    border-radius: 999px;
    background: #1b5e20;
    color: #fff !important;
    padding: 0 22px;
    height: 44px;
    line-height: 44px;
    font-weight: 700;
    margin: 0 !important;
    margin-top: .15em !important;
}

.modern-close-btn:hover {
  background: #2e7d32;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.download-dropdown {
  overflow: visible;
}

.has-submenu {
  position: relative;
}

.submenu-parent {
  position: relative;
}

.submenu-arrow {
  margin-right: auto;
  font-size: 1.1rem;
  color: var(--brand);
}

.submenu-panel {
  position: absolute;
    top: 0;
    left: 100%;
    margin-left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
    padding: 0;
    display: none;
    z-index: 9999;
    border-top-left-radius: 0;
    text-align: right;
}

.dropdown-content li {
  text-align: right;
}

.has-submenu:hover > .submenu-panel {
  display: block;
}

.submenu-panel li a {
  padding: 14px 18px;
  display: flex;
  white-space: nowrap;
}

.mobile-drawer {
  width: min(86vw, 380px);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf5 100%);
  padding: 14px 12px 18px;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px 4px;
}

.mobile-drawer-logo {
    width: 4em;
    height: 4em;
    object-fit: contain;
}

.mobile-drawer-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1f2937;
}

.mobile-drawer-subtitle {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 3px;
}

.mobile-drawer-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 10px 6px;
}

.mobile-section-label {
  margin: 14px 10px 8px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #6b7280;
}

.mobile-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin: 6px 6px;
  padding: 12px 14px !important;
  border-radius: 18px;
  color: #1f2937 !important;
  font-weight: 700 !important;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.mobile-link i.material-icons {
  color: var(--brand-dark) !important;
  font-size: 1.25rem;
}

.mobile-mini-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.mobile-submenu-wrap {
  margin: 0 0 6px;
}

.mobile-submenu-trigger {
  justify-content: space-between;
}

.mobile-chevron {
  margin-right: auto;
  font-size: 1.1rem !important;
  color: var(--brand-dark) !important;
}

.mobile-submenu {
    padding: .5em !important;
    margin: 1em;
    border-radius: 1em;
    display: none;
    background: #eef7ec;
}

.mobile-submenu.open {
  display: block;
}

.mobile-submenu-link {
  display: block;
  padding: 10px 12px;
  margin: 6px 0;
  border-radius: 12px;
  background: #fff;
  color: #374151 !important;
  font-weight: 600;
}

.sidenav-overlay {
  z-index: 10002 !important;
}

.sidenav {
  z-index: 10003 !important;
  padding-left: 1em !important;
}

.modal-overlay {
  z-index: 10020 !important;
}

.modal {
  z-index: 10021 !important;
}

.support-wrap {
  margin-left: 3.5em;
  margin-right: 3.5em;
  margin-top: 2.5em;
  margin-bottom: 1em;
}

.support-card {
  border-radius: 28px;
  padding: 2rem 2.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 245, 0.96));
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.support-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.25rem;
}

.support-badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e8f5e9, #dcedc8);
  color: var(--brand-dark);
  flex: 0 0 auto;
}

.support-badge i {
  font-size: 28px;
}

.support-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #1f2937;
}

.support-lead {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 2;
  font-size: 0.98rem;
}

.support-account {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(76, 175, 80, 0.12);
  text-align: center;
}

.support-account-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.support-account-number {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  direction: ltr;
  text-align: center;
  color: #111827;
}

.support-account-meta {
  font-size: 0.95rem;
  color: var(--muted);
}

.support-note {
  margin: 1rem 0 0;
  color: #4b5563;
  line-height: 2;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .support-wrap {
    margin-left: 2.5em;
    margin-right: 2.5em;
  }

  .support-card {
    padding: 1.4rem 1.2rem;
  }

  .support-header {
    align-items: flex-start;
  }

  .support-account-number {
    font-size: 1rem;
    word-break: break-word;
  }
}
.support-card-minimal {
  display: grid;
  gap: 1rem;
}

.support-action {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #3f8f3b, #1b5e20);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(46, 125, 50, 0.18);
}

.support-action:hover {
  background: linear-gradient(135deg, #469942, #246828);
}

.support-modal-text {
  margin: 0 0 1rem;
  color: #374151;
  line-height: 2.2;
  font-size: 1rem;
  text-align: justify;
}

.support-account-modal {
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .support-action {
    width: 100%;
    justify-content: center;
  }
}

.support-account-number-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.support-copy-btn {
  border: 0;
  border-radius: 999px;
  background: #e8f5e9;
  color: #1b5e20;
  padding: .6rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.support-copy-btn:hover {
  background: #dcedc8;
  transform: translateY(-1px);
}

.support-copy-btn i {
  font-size: 1rem;
}

.support-copy-btn.copied {
  background: #1b5e20;
  color: #fff;
}

.support-copy-btn {
  cursor: pointer;
}