/* ================== Fonts ================== */
@font-face {
  font-family: "IranYekan";
  src: url("/public/assets/fonts/IranYekan/fonts/woff2/IRANYekanWebLight.woff2");
}
@font-face {
  font-family: "IranYekanEB";
  src: url("/public/assets/fonts/IranYekan/fonts/woff2/IRANYekanWebExtraBold.woff2");
}

/* ================== Variables ================== */
:root {
  --primary: #4fa3e3;
  --primary-light: #84c7f7;
  --primary-pale: #e8f4fd;
  --primary-hover: #3189cc;
  --accent: #2271b3;

  --bg: #ffffff;
  --bg-soft: #f4faff;
  --bg-section: #eef7ff;

  --text: #0d2137;
  --text-muted: #5a7a94;
  --text-light: #94afc8;

  --border: rgba(79, 163, 227, 0.18);
  --border-solid: #daeaf8;

  --shadow-sm: 0 2px 12px rgba(79, 163, 227, 0.1);
  --shadow-md: 0 8px 32px rgba(79, 163, 227, 0.14);
  --shadow-lg: 0 20px 60px rgba(79, 163, 227, 0.18);
  --shadow-btn: 0 8px 24px rgba(49, 137, 204, 0.28);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================== Reset ================== */
* {
  -webkit-tap-highlight-color: transparent;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-section) !important;
  color: var(--text);
  direction: rtl;
  font-family: "IranYekan" !important;
  line-height: 1.6;
  overflow-x: hidden;
  text-decoration: none;
}

a {
  text-decoration: none !important;
  color: #8e9aaf;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* ================== Container ================== */
.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  font-family: IranYekanEB;
}

.container-custom:nth-child(3) {
}

/* ============================================ */
/* استایل کامل نوبار - اصلاح فاصله و رنگ */
/* ============================================ */

/* فونت کل سایت */
* {
  font-family: "IranYekanEB", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-section)
}

/* ===== نوبار اصلی ===== */
@media (min-width: 1000px) {
  .bottom-nav-mobile {
    display: none !important;
  }
  #navbar .nav-links {
    display: flex !important;
  }
  #navbar .nav-button {
    display: block !important;
  }
}

@media (max-width: 999px) {
  #navbar .nav-links {
    display: none !important;
  }
  #navbar .nav-button {
    display: none !important;
  }
  body {
    padding-bottom: 65px !important;
  }
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: #8e9aaf;
  font-size: 10px;
  transition: all 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  flex: 1;
  padding: 4px 0;
  border-radius: 8px;
  position: relative;
}

.bottom-nav-item.active {
  color: #005b9f;
}

.bottom-nav-item svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.bottom-nav-item span {
  font-size: 10px;
  font-weight: 500;

  white-space: nowrap;
}

/* استایل دراپ‌داون موبایل */
.mobile-dropdown-menu {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 1001;
  margin-bottom: 8px;
}

.mobile-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
}

.mobile-dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.mobile-dropdown-menu a:last-child {
  border-bottom: none;
}

.mobile-dropdown-menu a:hover {
  background: #f5f5f5;
  border-radius: 12px;
}

.mobile-dropdown-menu::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: white transparent transparent;
}

#navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 12px 0;
  background: transparent;
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  padding: 8px 0;
}

#navbar .container-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== بخش راست ===== */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
}

.nav-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-title {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0a66c2, #0b2b5b);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-decoration: none;
}

/* ===== لینک‌های دسکتاپ - اصلاح فاصله ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links li a {
  position: relative;
  padding: 6px 12px;
  color: #4a5a72;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

/* خط زیر لینک در هاور */
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 12px;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #0a66c2, #4c9aff);
  transition: width 0.2s ease;
  border-radius: 2px;
}

.nav-links li a:hover {
  color: #0a66c2;
}

.nav-links li a:hover::after {
  width: calc(100% - 24px);
  left: 12px;
  right: auto;
}

.nav-links li a.active {
  color: #0a66c2;
}

.nav-links li a.active::after {
  width: calc(100% - 24px);
  left: 12px;
  right: auto;
}

/* ===== بخش چپ ===== */
.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* دکمه ورود */
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a66c2, #0b2b5b);
  color: white !important;
  padding: 8px 24px;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 102, 194, 0.3);
  background: linear-gradient(135deg, #004182, #0a66c2);
}

/* دکمه کاربری */
.user-dropdown {
  position: relative;
}

.user-avatar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #0a66c2, #0b2b5b);
  color: white !important;
  padding: 8px 22px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(10, 102, 194, 0.2);
}

.user-avatar-btn svg {
  width: 14px;
  height: 14px;
  stroke: white;
}

.user-avatar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 102, 194, 0.3);
}

/* دراپ‌داون دسکتاپ */
.user-dropdown {
  position: relative;
  display: inline-block;
}

.user-avatar-btn {
  /* background: #f8fafc; */
  border: 1px solid #e2e8f0;
  border-radius: 40px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* .user-avatar-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
} */

.user-avatar-btn svg {
  width: 18px;
  height: 18px;
  stroke: #1e4a76;
}

.desktop-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: #ffffff;
  border-radius: 16px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  z-index: 1001;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transform: translateY(-8px);
}

.desktop-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 16px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: rotate(45deg);
  border-left: 1px solid #e8edf2;
  border-top: 1px solid #e8edf2;
}

.desktop-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: #334155;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f2f5;
  font-family: "IranYekan", sans-serif;
}

.desktop-dropdown-menu a:last-child {
  border-bottom: none;
}

.desktop-dropdown-menu a:hover {
  background: linear-gradient(90deg, #f8fafc, #f1f5f9);
  color: #0a66c2;
}

.desktop-dropdown-menu a svg {
  width: 16px;
  height: 16px;
  stroke: #1e4a76;
  transition: stroke 0.2s ease;
}

.desktop-dropdown-menu a:hover svg {
  stroke: #0a66c2;
}

@media (max-width: 991px) {
  .desktop-dropdown-menu {
    min-width: 160px;
    left: -10px;
  }
  
  .desktop-dropdown-menu::before {
    left: 24px;
  }
}

@media (max-width: 768px) {
  .user-dropdown {
    display: none;
  }
}

.desktop-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: white;
  border-left: 1px solid #e8edf2;
  border-top: 1px solid #e8edf2;
}

/* ============================================ */
/* منوی موبایل - با فاصله کمتر */
/* ============================================ */


.bottom-nav-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 12px 20px;
  border-top: 1px solid rgba(10, 102, 194, 0.2);
}

/* آیکون‌ها */
.bottom-nav-mobile .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.bottom-nav-mobile .nav-icon {
  font-size: 28px; /* بزرگ‌تر */
  transition: transform 0.2s ease;
}

.bottom-nav-mobile .nav-label {
  font-size: 11px;
  font-weight: 500;
}

/* رنگ‌های پررنگ‌تر در حالت عادی */
.bottom-nav-mobile .nav-item {
  color: #6c757d;
}

/* حالت active با رنگ پررنگ و جذاب */
.bottom-nav-mobile .nav-item.active {
  color: #0a66c2; /* آبی لینکدین پررنگ */
}

.bottom-nav-mobile .nav-item.active .nav-icon {
  transform: translateY(-2px);
}



/* گزینه جایگزین با رنگ‌های گرم‌تر (اختیاری) */
.bottom-nav-mobile.alt-colors .nav-item.active {
  color: #e94f4f; /* قرمز پررنگ */
}

.bottom-nav-item.active {
  color: #0a66c2;
}

.bottom-nav-item:hover {
  color: #0a66c2;
  transform: translateY(-2px);
}

/* دراپ‌داون موبایل */
.mobile-dropdown-menu {
  position: fixed;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: white;
  border-radius: 14px;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 1002;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8edf2;
}

.mobile-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mobile-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #4a5a72;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #f0f2f5;
}

.mobile-dropdown-menu a:last-child {
  border-bottom: none;
}

.mobile-dropdown-menu a:hover {
  background: #f5f7fa;
  color: #0a66c2;
}

.mobile-dropdown-menu::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: white;
  border-right: 1px solid #e8edf2;
  border-bottom: 1px solid #e8edf2;
}

/* ===== ریسپانسیو ===== */
@media (min-width: 1000px) {
  .bottom-nav-mobile {
    display: none !important;
  }
}

@media (max-width: 999px) {
  .nav-links {
    display: none !important;
  }
  .bottom-nav-mobile {
    display: flex !important;
  }
  body {
    padding-bottom: 68px !important;
  }
}

@media (max-width: 768px) {
  #navbar .container-custom {
    padding: 0 16px;
    gap: 16px;
  }

  .nav-right {
    gap: 16px;
  }

  .nav-logo {
    width: 36px;
    height: 36px;
  }

  .nav-title {
    font-size: 1rem;
  }

  .btn-nav {
    padding: 6px 18px;
    font-size: 12px;
  }

  .user-avatar-btn {
    padding: 6px 16px;
    font-size: 12px;
  }

  .user-avatar-btn svg {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 576px) {
  .nav-logo {
    width: 32px;
    height: 32px;
  }

  .nav-title {
    font-size: 0.9rem;
  }

  .btn-nav {
    padding: 5px 14px;
    font-size: 11px;
  }

  .user-avatar-btn {
    padding: 5px 12px;
    font-size: 11px;
  }

  .bottom-nav-mobile {
    padding: 5px 6px 10px;
  }

  .bottom-nav-item svg {
    width: 20px;
    height: 20px;
  }

  .bottom-nav-item span {
    font-size: 10px;
  }
}
/* ================= HEADER ================= */

.sidebar-header {
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--border-solid);
}

/* کل ردیف کلیک‌خور */
.sidebar-header a {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  text-decoration: none;
  color: inherit;

  cursor: pointer;

  user-select: none;
  -webkit-user-select: none;

  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

/* عنوان */
.sidebar-header .title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);

  display: flex;
  align-items: center;

  pointer-events: none;
}

/* فلش */
.back-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--text-muted);

  transition:
    transform 0.25s ease,
    color 0.25s ease;

  pointer-events: none;
}

/* hover */
.sidebar-header a:hover .back-btn {
  transform: translateX(-4px);
  color: var(--primary);
}

.back-btn.exit {
  transform: translateX(-40px);
  opacity: 0;
}

/* ================= MENU ================= */

.nav-mobile ul {
  display: flex;
  flex-direction: column;

  gap: 4px;

  margin-top: 16px;
}

.nav-mobile li {
  list-style: none;
}

.nav-mobile li a {
  display: flex;
  align-items: center;

  min-height: 48px;

  padding: 12px 14px;

  border-radius: var(--radius-sm);

  font-size: 15px;
  font-weight: 500;

  color: var(--text);

  text-decoration: none;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;

  user-select: none;
  -webkit-user-select: none;

  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-mobile li a:hover {
  background: var(--primary-pale);
  color: var(--primary);

  transform: translateX(-2px);
}

.nav-mobile li a:active {
  transform: scale(0.98);
}


/* new nav */
/* پنل کشویی موبایل */
.mobile-user-panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-user-panel-overlay.active {
  visibility: visible;
  opacity: 1;
}

.mobile-user-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 28px 28px 0 0;
  z-index: 2001 !important;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
  padding: 24px 20px 32px;
}

.mobile-user-panel-overlay.active .mobile-user-panel {
  transform: translateY(0);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eef3f9;
}

.panel-header h3 {
  font-family: "IranYekanEB", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0b2b5b;
  margin: 0;
}

.panel-close-btn {
  background: #f0f4f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.panel-close-btn:hover {
  background: #e2e8f0;
}

.panel-close-btn svg {
  width: 18px;
  height: 18px;
  stroke: #1e4a76;
  stroke-width: 2;
}

.panel-menu-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  /* background: #f8fafc; */
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.panel-menu-item:hover {
  background: #eef3f9;
  transform: translateX(-4px);
}

.panel-menu-item svg {
  width: 22px;
  height: 22px;
  stroke: #1e4a76;
  stroke-width: 1.8;
}

.panel-menu-item span {
  font-family: "IranYekan", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0b2b5b;
}

.panel-menu-item.logout-item {
  border-top: 1px solid #eef3f9;
  border-radius: 0;
  background: transparent;
}

.panel-menu-item.logout-item:hover {
  background: #fff5f5;
}

.panel-menu-item.logout-item svg {
  stroke: #e53e3e;
}

.panel-menu-item.logout-item span {
  color: #e53e3e;
}

@media (max-width: 999px) {
  .nav-left {
    display: none;
  }
}

/* ================== Hero ================== */
/* ============================================ */
/* SECTION: بیمه هیرو (کاملاً جدید و حرفه‌ای) */
/* ============================================ */

.insurance-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 50px 0 30px;
  margin: 50px;
}

.insurance-hero::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  top: -300px;
  left: -300px;
  background: radial-gradient(
    circle,
    rgba(10, 102, 194, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.insurance-hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -200px;
  background: radial-gradient(
    circle,
    rgba(76, 154, 255, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* کانتینر اصلی */
.insurance-hero__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ===== بخش محتوا (سمت راست) ===== */
.insurance-hero__content {
  direction: rtl;
}

/* نشان اعتبار */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e8f0fe, #f0f4ff);
  padding: 8px 20px 8px 24px;
  border-radius: 100px;
  margin-bottom: 32px;
  border: 1px solid rgba(10, 102, 194, 0.12);
  box-shadow: 0 2px 8px rgba(10, 102, 194, 0.06);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 102, 194, 0.12);
  border-color: rgba(10, 102, 194, 0.25);
}

.trust-badge__icon {
  font-size: 16px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.trust-badge__text {
  font-size: 13px;
  font-weight: 700;
  color: #0a66c2;
  letter-spacing: 0.3px;
}

/* تیتر اصلی */
.insurance-hero__title {
  font-family: "IranYekanEB";
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.4;
  color: #1e2a3e;
  margin-bottom: 20px;
}

.title-highlight {
  background: linear-gradient(135deg, #0a66c2, #4c9aff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.title-highlight::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(135deg, #0a66c2, #4c9aff);
  opacity: 0.15;
  border-radius: 4px;
  pointer-events: none;
}

/* توضیحات */
.insurance-hero__description {
  font-size: 16px;
  line-height: 1.8;
  color: #5b6e8c;
  margin-bottom: 40px;
  max-width: 520px;
}

/* دکمه‌های اقدام */
.action-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.action-btn--primary {
  background: linear-gradient(105deg, #0a66c2, #0b2b5b);
  color: white;
  border: none;
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.25);
}

.action-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(10, 102, 194, 0.35);
}

.action-btn--primary:hover .btn-icon {
  transform: rotate(90deg);
}

.action-btn--outline {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 2px solid #e2e8f0;
  color: #1e2a3e;
}

.action-btn--outline:hover {
  border-color: #0a66c2;
  background: #e8f0fe;
  color: #0a66c2;
  transform: translateY(-3px);
}

/* کارت‌های آمار */
.stats-cards {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 2px solid #e8f0fe;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 0;
  position: relative;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: -16px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #0a66c2, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:first-child::before {
  display: none;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card__value {
  font-size: 20px;
  font-weight: 800;
  color: #0b2b5b;
}

.stat-card__label {
  font-size: 12px;
  color: #5b6e8c;
  font-weight: 500;
}

/* ===== بخش تصویر (سمت چپ) ===== */
.insurance-hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.visual-wrapper {
  position: relative;
  display: inline-block;
}

.visual-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4c9aff, #e8f0fe);
  border-radius: 60px;
  top: 24px;
  right: 24px;
  opacity: 0.25;
  filter: blur(24px);
  z-index: 0;
}

.visual-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(76, 154, 255, 0.15),
    transparent 70%
  );
  top: -10%;
  left: -10%;
  border-radius: 50%;
  z-index: 0;
  animation: pulse 4s ease-in-out infinite;
}

.visual-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 30px 50px rgba(11, 43, 91, 0.2));
  animation: floatImage 6s ease-in-out infinite;
  z-index: 2;
  border-radius: 32px;
}

/* شکل‌های شناور تزئینی */
.floating-shape {
  position: absolute;
  background: linear-gradient(135deg, #0a66c2, #4c9aff);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: -20px;
  left: -30px;
  animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
  width: 50px;
  height: 50px;
  bottom: 40px;
  right: -20px;
  animation: floatShape 6s ease-in-out infinite reverse;
}

.shape-3 {
  width: 120px;
  height: 120px;
  bottom: -50px;
  left: 30px;
  opacity: 0.05;
  animation: floatShape 10s ease-in-out infinite;
}

/* ===== انیمیشن‌ها ===== */
@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-15px) translateX(10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.15;
    transform: scale(1);
  }
  50% {
    opacity: 0.25;
    transform: scale(1.05);
  }
}

/* ===== ریسپانسیو کامل ===== */
/* ===== ریسپانسیو کامل ===== */
@media (max-width: 992px) {
  .insurance-hero__container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  /* عکس بالا، متن پایین */
  .insurance-hero__visual {
    order: 1;
  }

  .insurance-hero__content {
    order: 2;
    text-align: center;
  }

  .insurance-hero__description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .action-buttons {
    justify-content: center;
  }

  .stats-cards {
    justify-content: center;
  }

  .stat-card::before {
    display: none;
  }

  .trust-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .title-highlight::after {
    bottom: 4px;
  }
}

@media (max-width: 576px) {
  .insurance-hero {
    padding: 70px 0 40px;
  }

  .insurance-hero__container {
    padding: 0 20px;
    gap: 32px;
  }

  .action-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .btn-icon {
    width: 16px;
    height: 16px;
  }

  .stats-cards {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-card {
    min-width: 70px;
  }

  .stat-card__value {
    font-size: 16px;
  }

  .stat-card__label {
    font-size: 10px;
  }

  .visual-image {
    max-width: 280px;
  }

  .trust-badge {
    padding: 5px 14px;
    margin-bottom: 24px;
  }

  .trust-badge__text {
    font-size: 10px;
  }

  .insurance-hero__title {
    margin-bottom: 12px;
  }

  .insurance-hero__description {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .action-buttons {
    margin-bottom: 32px;
  }
}

@media (max-width: 400px) {
  .action-buttons {
    flex-direction: column;
    width: 100%;
  }

  .action-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .insurance-hero__container {
    padding: 0 20px;
  }

  .action-btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .stats-cards {
    gap: 20px;
    flex-wrap: wrap;
  }

  .stat-card {
    min-width: 80px;
  }

  .visual-image {
    max-width: 320px;
  }

  .trust-badge {
    padding: 6px 16px;
  }

  .trust-badge__text {
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  .action-buttons {
    flex-direction: column;
    width: 100%;
  }

  .action-btn {
    width: 100%;
  }
}

/* ================== Products ================== */
/* سکشن اصلی - ایجاد فاصله از هیرو سکشن و تنظیمات پایه */
.products-section {
  margin-top: 90px; /* فاصله ۹۰ پیکسلی از بخش بالایی */
  padding: 40px 0;
  width: 100%;
}

.container-custom-product {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  font-family: "IranYekan", sans-serif !important;
  background: linear-gradient(135deg, #0b2b5b 0%, #0a66c2 100%) !important;
  border-radius: 0px;
  padding: 80px 8%;
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 20px 50px rgba(11, 43, 91, 0.2); */
}

/* ایجاد خطوط هندسی شبکه‌ای مدرن در پس‌زمینه کانتینر */
.container-custom-product::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 45px 45px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 90%);
  -webkit-mask-image: radial-gradient(
    circle at 50% 50%,
    black,
    transparent 90%
  );
  pointer-events: none;
}

/* هدر دو ستونه مدرن روی کانتینر تیره */
.products-header-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 35px;
  position: relative;
  z-index: 2;
}

.products-section h2,
.section-title {
  font-family: "IranYekanEB";
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.section-title-faq{
    font-family: "IranYekanEB";
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
 color: #0b2b5b;
  margin: 0;
  line-height: 1.3;
}

.text-center2,
.section-subtitle {
  color: #e2e8f0;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  max-width: 500px;
  text-align: right !important;
  opacity: 0.9;
}

/* -------------------------------------------------- */

.products-wrapper {
  position: relative;
  z-index: 2;
}

/* فلش‌های اسکرول */
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.scroll-arrow svg {
  fill: #ffffff !important;
}

.scroll-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.scroll-arrow.right {
  right: -15px;
}
.scroll-arrow.left {
  left: -15px;
}

/* اسکرول باکس کارت‌ها */
.products-scroll {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 15px 5px 35px 5px;
  scroll-behavior: smooth;
  cursor: pointer;
  -webkit-overflow-scrolling: touch;
}
.products-scroll::-webkit-scrollbar {
  display: none;
}

/* کارت‌های شیشه‌ای با ابعاد کاملاً ثابت و یکدست */
.card-insurance {
      background: linear-gradient(135deg, #e8f0fe, #f0f4ff);
  border-radius: 28px;
  padding: 40px 30px;

  /* تنظیم ابعاد ثابت مهندسی شده برای کارت‌ها */
  width: 290px; /* عرض ثابت */
  height: 280px; /* ارتفاع ثابت برای یکدست شدن لایه‌ها */

  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}

.card-insurance:hover {
  transform: translateY(-10px);  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* باکس آیکون */
.icon-boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
  border-radius: 20px;

  border: 1px solid #0a66c2;
  margin-bottom: 24px;
  flex-shrink: 0; /* جلوگیری از فشرده شدن آیکون در متون طولانی */
  transition: transform 0.3s ease;
}

.card-insurance:hover .icon-boxes {
  transform: scale(1.05);
}

.icon-boxes img {
  /* width: 40px; */
  height: 40px;
  object-fit: contain;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

/* عنوان کارت */
.card-insurance h3 {
  font-family: "IranYekanEB";
  font-size: 18px;
  font-weight: 800;
  color: #004182;
  margin-bottom: 20px;
  /* جلوگیری از به هم ریختن چیدمان در صورت طولانی شدن تایتل */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* دکمه اکشن منسجم که همیشه به پایین کارت می‌چسبد */
.btn-view-product {
  margin-top: auto; /* این دستور باعث می‌شود دکمه همیشه در پایین‌ترین نقطه کارت (هم‌تراز) قرار گیرد */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
      background: linear-gradient(135deg, #0a66c2, #0b2b5bce);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 20px;
  border-radius: 16px;
  font-family: "IranYekan";
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.btn-view-product svg {
  stroke: #ffffff;
  transition: transform 0.3s ease;
}

.card-insurance:hover .btn-view-product {
  border-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-insurance:hover .btn-view-product svg {
  stroke: #0b2b5b;
  transform: translateX(-4px);
}

/* ریسپانسیو برای موبایل و تبلت */
@media (max-width: 991px) {
  .products-header-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .container-custom-product {
    padding: 50px 24px;
  }
  .scroll-arrow {
    display: none;
  }

  /* کمی کوچک‌تر کردن ابعاد کارت در موبایل برای نمایش بهتر */
  .card-insurance {
    width: 265px;
    height: 265px;
    padding: 30px 20px;
  }
}
.preloader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
}

.preloader-content {
  position: relative;
  z-index: 100000;
  text-align: center;
}

.logo-animate {
  width: 220px;
  height: 220px;
  animation: softBounce 1.2s ease-in-out infinite;
  display: block;
  margin: 0 auto;
}

@keyframes softBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

#text-loading {
  color: #ff3d00;
  font-size: 16px;
  margin-top: 25px;
  font-family: "IRANSans", "Tahoma", sans-serif;
}

/* وقتی لودینگ تموم شد، لودینگ رو مخفی کن */
body.loaded #preloader-wrapper {
  display: none !important;
}

/* محتوا همیشه قابل مشاهده باشه، نیازی به مخفی کردن نیست */
/* transition برای همه محتوا */
#wrapper,
.navbar-fixed-top,
.footer-container,
.sidebar-overlay {
  transition: opacity 0.4s ease-in-out !important;
  -webkit-transition: opacity 0.4s ease-in-out !important;
  -moz-transition: opacity 0.4s ease-in-out !important;
  -ms-transition: opacity 0.4s ease-in-out !important;
  -o-transition: opacity 0.4s ease-in-out !important;
}

/* همه محتواها از جمله navbar در حالت اولیه مخفی باشن */
body.loading #wrapper,
body.loading .navbar-fixed-top,
body.loading .footer-container,
body.loading .sidebar-overlay {
  opacity: 0;
  visibility: hidden !important; /* کاملاً مخفی */
}

/* وقتی لود تموم شد، همه با هم نرم ظاهر بشن */
body.loaded #wrapper,
body.loaded .navbar-fixed-top,
body.loaded .footer-container,
body.loaded .sidebar-overlay {
  opacity: 1;
  visibility: visible !important;
  transition: opacity 0.3s ease-in-out;
}

/* لودینگ */
#preloader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.3s ease-out,
    visibility 0.3s ease-out;
}

body.loaded #preloader-wrapper {
  opacity: 0;
  visibility: hidden;
}

/* اما display رو حذف نکن تا transition کار کنه */
/* چرخش */
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* فلش‌های اسکرول */
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border-solid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.scroll-arrow:hover {
  background: var(--primary-pale);
  border-color: var(--primary);
}
.scroll-arrow.right {
  right: -20px;
}
.scroll-arrow.left {
  left: -20px;
}
.scroll-arrow.hide {
  opacity: 0;
  pointer-events: none;
}

/* ================== Stats ================== */
/* ===== سکشن آمار و ارقام پرمیوم ===== */
.stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px; /* ایجاد فضا برای خطوط میانی */
  row-gap: 40px;
  padding: 80px 24px;
  direction: rtl;
}

/* چیدمان افقی لوکس و تراز شده */
.stat-item {
  display: flex;
  align-items: center;
  gap: 24px; /* فاصله مناسب بین آیکون و بخش متن */
  text-align: right;
  position: relative;
  padding: 12px 0;
}

/* خطوط جداکننده عمودی و پررنگ وسط گپ‌ها */
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -30px; /* دقیقاً وسط کلمن‌گپ ۶۰ پیکسلی */
  top: 15%;
  bottom: 15%;
  width: 1.5px;
  background-color: #c4d4e6; /* رنگ خاکستری-آبی هماهنگ با سکشن قبلی */
  opacity: 0.8;
}

/* باکس آیکون با افکت سایه نئونی محو از پالت آبی */
.stat-item .icon-boxes {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md, 16px);
  background: linear-gradient(135deg, #0a66c2, #0b2b5b);
  border: 1px solid rgba(30, 74, 118, 0.15); /* استروک بسیار ملایم با رنگ پالت */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* ایجاد افکت Glow لوکس با رنگ آبی پالت شما */
  box-shadow: 0 8px 20px rgba(30, 74, 118, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item .icon-boxes img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* کانتینر اطلاعات متنی */
.stat-info-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* استایل اعداد درشت فین‌تک */
.stat-value {
  font-family: "IranYekanEB", sans-serif;
  font-size: 2.6rem;
  font-weight: 850;
  color: var(--text, #0b2b5b); /* رنگ سرمه‌ای عمیق */
  line-height: 1;
  display: flex;
  align-items: center;
}

/* پلاس مینی‌مال با رنگ آبی زنده پالت شما */
.stat-value::after {
  content: "+";
  font-size: 1.8rem;
  color: #1e4a76; /* رنگ آبی زنده برند */
  margin-right: 6px;
  font-weight: 700;
}

/* توضیحات آمار */
.stat-item p {
  color: var(--text-muted, #526b88);
  font-size: 14.5px;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
}

/* هاور افکت هوشمند و تعاملی باکس آیکون */
.stat-item:hover .icon-boxes {
  transform: translateY(-4px);
  border-color: #1e4a76; /* ست شدن کامل رنگ استروک با پالت در هاور */
  box-shadow: 0 12px 24px rgba(30, 74, 118, 0.12); /* عمیق‌تر شدن سایه نئونی آبی */
}

/* ===== سیستم ریسپونسیو فیت و دقیق ===== */
@media (max-width: 991px) {
  .stats-section {
    column-gap: 30px;
    padding: 60px 16px;
  }
  .stat-item:not(:last-child)::after {
    left: -15px;
  }
  .stat-value {
    font-size: 2.1rem;
  }
  .stat-item .icon-boxes {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    grid-template-columns: 1fr; /* تک ستونه شدن در موبایل */
    row-gap: 35px;
    padding: 50px 24px;
  }

  /* حذف خطوط عمودی در موبایل */
  .stat-item:not(:last-child)::after {
    display: none;
  }

  /* ایجاد جداکننده افقی ظریف برای اسکرول راحت گوشی */
  .stat-item:not(:last-child) {
    border-bottom: 1px solid #eef3f9;
    padding-bottom: 24px;
  }
}

/* ================== Why Us ================== */
/* ===== سکشن اصلی چرا آتی بیمه ===== */
.why-us-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  direction: rtl;
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(11, 43, 91, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.whyUs-title {
  max-width: 700px;
  margin: 0 auto 80px auto;
  text-align: center;
  position: relative;
}

.whyUs-title h2 {
  font-family: "IranYekanEB", sans-serif;
  font-size: 32px;
  font-weight: 850;
  background: linear-gradient(135deg, #0b2b5b 0%, #1e4a76 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.whyUs-title h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0b2b5b, #3b82f6);
  border-radius: 3px;
}

.whyUs-title p {
  color: #5a6e8a;
  font-size: 16px;
  line-height: 1.8;
  max-width: 550px;
  margin: 0 auto;
}

.container-custom {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  row-gap: 60px;
  position: relative;
}

.ati-why-item {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  will-change: transform;
}

.ati-why-item:not(:nth-child(3n))::after {
  content: "";
  position: absolute;
  left: -25px;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: linear-gradient(180deg, transparent, #c4d4e6, #3b82f6, #c4d4e6, transparent);
  border-radius: 2px;
  opacity: 0.6;
}

.item-meta-row {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
}

.item-index {
  font-family: "IranYekanEB", monospace;
  font-size: 13px;
  font-weight: 700;
  color: rgba(59, 130, 246, 0.3);
  letter-spacing: 1px;
  background: rgba(59, 130, 246, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}

.item-main-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.item-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(11, 43, 91, 0.08), rgba(59, 130, 246, 0.05));
  border-radius: 18px;
  transition: all 0.3s ease;
}

.ati-why-item:hover .item-icon-container {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(11, 43, 91, 0.15), rgba(59, 130, 246, 0.1));
}

.item-icon-container svg.icon {
  width: 28px;
  height: 28px;
  stroke: #3b82f6 !important;
  stroke-width: 1.8px;
  transition: all 0.3s ease;
}

.ati-why-item h3 {
  font-family: "IranYekanEB", sans-serif;
  font-size: 19px;
  font-weight: 750;
  color: #0b2b5b;
  margin: 0;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
}

.ati-why-item:hover h3 {
  color: #1e4a76;
}

.item-body-content {
  width: 100%;
}

.ati-why-item p {
  color: #5a6e8a;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  max-width: 100%;
}

@media (max-width: 991px) {
  .why-us-section {
    padding: 70px 0;
  }
  
  .whyUs-title h2 {
    font-size: 28px;
  }
  
  .whyUs-title h2::after {
    width: 50px;
  }
  
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 45px;
  }

  .ati-why-item::after {
    display: none;
  }

  .ati-why-item:not(:nth-child(2n))::after {
    display: block;
    left: -20px;
    top: 15%;
    bottom: 15%;
  }

  .ati-why-item:nth-child(n + 3) {
    border-top: 1px solid #eef3f9;
    padding-top: 35px;
  }
  
  .ati-why-item {
    padding: 20px 16px;
  }
  
  .item-icon-container {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 768px) {
  .why-us-section {
    padding: 40px 0;
  }
  
  .whyUs-title {
    margin-bottom: 30px;
  }
  
  .whyUs-title h2 {
    font-size: 22px;
  }
  
  .whyUs-title h2::after {
    width: 40px;
    bottom: -8px;
  }
  
  .whyUs-title p {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .why-us-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .ati-why-item {
    padding: 20px 12px;
    border-radius: 20px;
    margin-bottom: 0;
    transform: none !important;
    box-shadow: none;
    background: transparent;
  }
  
  .ati-why-item:not(:last-child) {
    border-bottom: 1px solid #eef3f9;
  }
  
  .ati-why-item::after {
    display: none !important;
  }
  
  .ati-why-item:hover {
    transform: none !important;
    background: transparent;
  }
  
  .item-main-header {
    gap: 12px;
    margin-bottom: 10px;
  }
  
  .item-icon-container {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.08);
  }
  
  .item-icon-container svg.icon {
    width: 22px;
    height: 22px;
  }
  
  .ati-why-item h3 {
    font-size: 16px;
  }
  
  .ati-why-item p {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .item-index {
    font-size: 10px;
    padding: 2px 8px;
    margin-bottom: 8px;
  }
  
  .item-meta-row {
    margin-bottom: 12px;
  }
  
  .ati-why-item:hover .item-icon-container {
    transform: none;
  }
}
/* ================== FAQ ================== */
.faq-section {
  padding: 70px 0;
}

.faq-section h2 {
  margin-bottom: 8px;
}
.text-center-faq {
  text-align: center !important;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 36px;
}

.accordion {
  max-width: 720px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-solid);
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.accordion-trigger {
  font-family: "IranYekan";
  width: 100%;
  text-align: right;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color var(--transition);
}
.accordion-trigger::after {
  content: "＋";
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.accordion-item.active .accordion-trigger {
  color: var(--primary);
}
.accordion-item.active .accordion-trigger::after {
  transform: rotate(45deg);
}

.accordion-content {
  display: none;
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.8;
  border-top: 1px solid var(--border-solid);
  padding-top: 14px;
}
.accordion-item.active .accordion-content {
  display: block;
}

/* ================== CTA - [تغییر ۲] sticky با خروج از fixed ================== */
.cta-section {
  padding: 28px 16px; /* کاهش ارتفاع */
  background: linear-gradient(105deg, #0A66C2, #0B2B5B);
  text-align: center;
  /* position: sticky; */
  bottom: 0;
  z-index: 90;
  overflow: hidden;
  transition: box-shadow var(--transition);
  /* box-shadow: 0 -4px 24px rgba(49, 137, 204, 0.22); */
}

/* وقتی پایین صفحه است (در فوتر) از sticky در میاد */
.cta-section.cta-passed {
  position: relative;
  box-shadow: none;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.cta-title {
  font-family: "IranYekanEB";
  font-size: clamp(1rem, 2.5vw, 1.3rem); /* کوچکتر */
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px; /* کمتر از قبل */
  position: relative;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--text);
  padding: 11px 30px; /* کمی کوچکتر */
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  transition: all var(--transition);
  position: relative;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #fff, #daeef9);
}

/* ================== Footer ================== */

.footer {
  background: linear-gradient(135deg, #1a4d7a, #1260a0) !important;

  color: white;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns:
    1.2fr
    1fr
    0.8fr
    1fr
    1.2fr;

  gap: 32px;

  padding-bottom: 40px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer h4 {
  font-family: "IranYekanEB";
  font-size: 15px;
  margin-bottom: 18px;
  color: #fff;
}

/* برند */

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;

  font-family: "IranYekanEB";
  font-size: 1.1rem;

  margin-bottom: 14px;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 2;
  max-width: 280px;
}

/* لینک ها */

.footer-links li a,
.footer-contact li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;

  display: block;

  margin-bottom: 10px;

  transition: 0.25s;
}

.footer-links li a:hover {
  color: var(--primary-light);
  transform: translateX(-3px);
}

/* ارتباط با ما */

.footer-contact li {
  line-height: 1.9;
}

/* دانلود اپ */

.footer-download {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-download .myket-badge img {
  width: 150px;

  border-radius: 12px;

  transition:
    transform 0.25s,
    opacity 0.25s;
}

.footer-download .myket-badge img:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}

/* مجوز ها */

.footer-licenses {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-licenses .enamad-badge img {
  width: 90px;

  border-radius: 12px;

  background: #fff;

  padding: 6px;

  transition:
    transform 0.25s,
    opacity 0.25s;
}

.footer-licenses .enamad-badge img:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}

/* پایین فوتر */

.footer-bottom {
  text-align: center;

  padding: 20px 16px;

  font-size: 12.5px;

  color: rgba(255, 255, 255, 0.35);
}

/* ================== Responsive ================== */

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .footer {
    padding-top: 45px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer h4 {
    margin-bottom: 12px;
  }

  .footer-download .myket-badge img {
    width: 140px;
  }

  .footer-licenses .enamad-badge img {
    width: 82px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

.footer-licenses {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-licenses .license-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 16px;
  padding: 10px;
  transition: 0.3s ease;
}

.footer-licenses .license-item:hover {
  transform: translateY(-4px);
}

.footer-licenses img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* موبایل */
@media (max-width: 768px) {
  .footer-licenses {
    gap: 12px;
  }

  .footer-licenses .license-item {
    width: 90px;
    height: 90px;
    padding: 8px;
  }
}
/* ================== Utilities ================== */
.section-padding {
  padding: 70px 0;
}

.back-section {
  background: var(--bg-section);
  width: 100%;
}

.text-center {
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================== Responsive ================== */

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    gap: 32px;
  }
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-button {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .hero-text {
    order: 2;
  }
  .hero-image {
    order: 1;
  }
  .hero-text p {
    margin: 0 auto 28px;
  }
  .hero-buttons {
    justify-content: center;
    padding-bottom: 30px;
  }

  .stats-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .scroll-arrow {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .container-custom {
    padding: 0 16px;
  }

  .hero-section {
    padding-top: 80px;
  }
  .hero-text h1 {
    font-size: 1.5rem;
  }
  .hero-text p {
    font-size: 14px;
    white-space: normal;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons a {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  .products-section,
  .why-us-section,
  .faq-section {
    padding: 50px 0;
  }

  .stats-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .cta-title {
    font-size: 1rem;
  }

  .why-us-grid {
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .hero-text h1 {
    font-size: 1.3rem;
  }
  .stat-value {
    font-size: 1.8rem;
  }
}

/* ================== Scrollbar ================== */
::-webkit-scrollbar {
  width: 12px;
  position: relative;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#4fa3e3, #3c8fd1, #2f6fb0);
  border-radius: 10px;
  border: 3px solid #fff;
}

::-webkit-scrollbar-thumb:hover {
  background: #6bb8ee;
}

/* Firefox */
#sidebar {
  scrollbar-width: thin;
  scrollbar-color: #7a5cff #f3f0ff;
}

/* Chrome, Edge, Safari */
#sidebar::-webkit-scrollbar {
  width: 10px;
}

#sidebar::-webkit-scrollbar-track {
  background: #f3f0ff;
  border-radius: 10px;
}

#sidebar::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #7a5cff, #5b3fd1, #3a2ca0);
  border-radius: 10px;
  border: 2px solid #f8fbff;
  transition: all 0.3s ease;
}

#sidebar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #9a7bff, #6f52e0);
}

#sidebar::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #5b3fd1, #2c237a);
}

#wrapper {
  background-color: #f5f5f5 !important;
}

/* ================== Ad Banner Section ================== */

/* ---- سکشن بنر عمومی ---- */
.ads-section {
  padding: 40px 0;
  /* background: var(--bg); */
  overflow: hidden;
}

.ads-section.ads-bg {
  /* background: var(--bg-section); */
}

/* ---- بنر تکی بزرگ (Hero) ---- */
.ads-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1807 / 870; /* حفظ نسبت دقیق تصویر اصلی */
  background: linear-gradient(135deg, var(--primary-pale), #d0eafc);
  border: 1.5px solid var(--border-solid);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  transition: all var(--transition);
}

.ads-hero:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.ads-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* بهترین حالت برای کشیده شدن تمیز */
  display: block;
}

/* برچسب تبلیغ */
.ads-hero .ad-label {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  color: #333;
  font-size: 13px;
  padding: 5px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-solid);
  z-index: 2;
  font-weight: 500;
}

/* ---- کارت‌های تبلیغاتی کوچک ---- */
.ad-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-pale), #ddf0ff);
  border: 1.5px solid var(--border-solid);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  min-height: 180px;
}

.ad-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(79, 163, 227, 0.5);
}

/* پشتیبانی از img */
.ad-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* پشتیبانی از background-image (پیشنهادی برای راحتی) */
.ad-card .ad-placeholder {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13.5px;
  text-align: center;
  padding: 0 20px;
}

.ad-card .ad-placeholder svg {
  opacity: 0.45;
}

/* برچسب تبلیغ کارت‌های کوچک */
.ad-card .ad-label {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  color: #333;
  font-size: 11.5px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-solid);
  z-index: 2;
}

/* ====================== گریدها ====================== */
.ads-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ads-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ====================== ریسپانسیو ====================== */
@media (max-width: 992px) {
  .ads-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ads-grid-2,
  .ads-grid-3 {
    gap: 16px;
  }
  .ad-card img,
  .ad-card .ad-placeholder {
    height: 160px;
  }
}

@media (max-width: 540px) {
  .ads-grid-2,
  .ads-grid-3 {
    grid-template-columns: 1fr;
  }
  .ads-hero {
    aspect-ratio: 16 / 9; /* بهتر برای موبایل */
  }
  .ad-card img,
  .ad-card .ad-placeholder {
    height: 150px;
  }
}

/* ====================== گریدها ====================== */

.ads-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 580px);
  justify-content: center;
  gap: 20px;
}

.ads-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 380px);
  justify-content: center;
  gap: 20px;
}

/* سایز کارت‌های داخل گرید 2 */
.ads-grid-2 .ad-card,
.ads-grid-2 .ad-card img,
.ads-grid-2 .ad-card .ad-placeholder {
  width: 580px;
  height: 320px;
}

/* سایز کارت‌های داخل گرید 3 */
.ads-grid-3 .ad-card,
.ads-grid-3 .ad-card img,
.ads-grid-3 .ad-card .ad-placeholder {
  width: 380px;
  height: 209px;
}

/* ====================== ریسپانسیو ====================== */

@media (max-width: 1200px) {
  .ads-grid-3 {
    grid-template-columns: repeat(2, 380px);
  }
}

@media (max-width: 992px) {
  .ads-grid-2 {
    grid-template-columns: 1fr;
  }

  .ads-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ads-grid-2 .ad-card,
  .ads-grid-2 .ad-card img,
  .ads-grid-2 .ad-card .ad-placeholder,
  .ads-grid-3 .ad-card,
  .ads-grid-3 .ad-card img,
  .ads-grid-3 .ad-card .ad-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: inherit;
  }

  .ads-grid-2 .ad-card,
  .ads-grid-2 .ad-card img,
  .ads-grid-2 .ad-card .ad-placeholder {
    aspect-ratio: 580 / 320;
  }

  .ads-grid-3 .ad-card,
  .ads-grid-3 .ad-card img,
  .ads-grid-3 .ad-card .ad-placeholder {
    aspect-ratio: 380 / 209;
  }
}

@media (max-width: 540px) {
  .ads-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ====================== GRID 3 ====================== */

.ads-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 380px);
  justify-content: center;
  gap: 20px;
}

/* سایز دقیق کارت‌ها */
.ads-grid-3 .ad-card,
.ads-grid-3 .ad-card img,
.ads-grid-3 .ad-card .ad-placeholder {
  width: 380px;
  height: 209px;
}

/* ====================== Responsive ====================== */

@media (max-width: 1200px) {
  .ads-grid-3 {
    grid-template-columns: repeat(2, 380px);
  }
}

@media (max-width: 820px) {
  .ads-grid-3 {
    grid-template-columns: 1fr;
  }

  .ads-grid-3 .ad-card,
  .ads-grid-3 .ad-card img,
  .ads-grid-3 .ad-card .ad-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 380 / 209;
  }
}

.ads-grid-3 .ad-card {
  width: 380px;
  height: 209px;
  overflow: hidden;
}

.ads-grid-3 .ad-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ads-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 380px);
  justify-content: center;
  gap: 20px;
}

.ads-grid-3 .ad-card {
  width: 380px;
  height: 209px;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
}

.ads-grid-3 .ad-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ====================== GRID 3 — نسخه تمیز ====================== */
.ads-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.ads-grid-3 .ad-card {
  width: 100%;
  height: auto;
  aspect-ratio: 380 / 209;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}

.ads-grid-3 .ad-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .ads-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 540px) {
  .ads-grid-3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #4fa3e3;
  --blue2: #2e86c8;
  --blue3: #1a5a96;
  --light: #f0f7fd;
  --lighter: #e4f2fc;
  --dark: #0d2a45;
  --mid: #1a4a72;
  --text: #1a3a52;
  --muted: #5a7a92;
  --t: 0.26s ease;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  background: #e8f4fc;
  font-family: "IranYekanEB", sans-serif;
}

/* ═══════════════════════════════════════
   BANNER WRAPPER
═══════════════════════════════════════ */
/* ============================================ */
/* بنر با پالت رنگی آبی و نارنجی */
/* ============================================ */

.banner-wrap {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IranYekanEB", sans-serif;
}

.banner {
  width: 100%;
  max-width: 1500px;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b2b5b 0%, #0a66c2 100%) !important;
  border-radius: 48px;
  box-shadow: 0 25px 50px rgba(11, 43, 91, 0.25);
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}

/* ===== لایه‌های پس‌زمینه - با رنگ‌های پالت ===== */
.bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 50%,
      rgba(255, 122, 69, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 80% at 20% 80%,
      rgba(76, 154, 255, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 85% 15%,
      rgba(255, 122, 69, 0.08) 0%,
      transparent 55%
    );
  z-index: 0;
  animation: meshBreath 8s ease-in-out infinite;
}

@keyframes meshBreath {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 122, 69, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 154, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  z-index: 0;
  opacity: 0.5;
}

/* ===== اشکال تزئینی - با رنگ نارنجی و آبی ===== */
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 122, 69, 0.15);
  z-index: 1;
  pointer-events: none;
}

.deco-ring-1 {
  width: 420px;
  height: 420px;
  top: -160px;
  right: -120px;
  border-style: dashed;
  animation: ringFloat 18s ease-in-out infinite;
}

.deco-ring-2 {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -50px;
  animation: ringFloat 14s ease-in-out infinite 2s;
}

.deco-ring-3 {
  width: 180px;
  height: 180px;
  bottom: -40px;
  left: 380px;
  border-color: rgba(76, 154, 255, 0.12);
  animation: ringFloat 10s ease-in-out infinite 1s;
}

@keyframes ringFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.deco-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.deco-blob-1 {
  width: 350px;
  height: 350px;
  top: -100px;
  right: 100px;
  background: rgba(255, 122, 69, 0.1);
  filter: blur(55px);
  animation: blobOpacity 10s ease-in-out infinite;
}

.deco-blob-2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: 200px;
  background: rgba(76, 154, 255, 0.08);
  filter: blur(50px);
  animation: blobOpacity 10s ease-in-out infinite 3s;
}

@keyframes blobOpacity {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* هگز و پلاس */
.hex svg polygon {
  stroke: #ff7a45;
}
.plus svg line {
  stroke: #ff7a45;
}
.top-line {
  background: linear-gradient(
    90deg,
    transparent,
    #ff7a45 30%,
    #ff9f66 60%,
    transparent
  );
}
.corner::before,
.corner::after {
  background: #ff7a45;
  opacity: 0.4;
}
.dot-grid g circle {
  fill: #ff7a45;
}

.hex,
.plus,
.dot-grid {
  opacity: 0.12;
}

/* ===== بخش چپ - کارت ===== */
.illus-section {
  position: relative;
  width: 460px;
  flex-shrink: 0;
  height: 520px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-stack {
  position: relative;
  width: 300px;
  height: 340px;
  animation: stackFloat 7s ease-in-out infinite;
}

@keyframes stackFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-14px);
  }
  50% {
    transform: translateY(-8px);
  }
  75% {
    transform: translateY(-16px);
  }
}

.icard {
  position: absolute;
  border-radius: 24px;
}

.icard-c {
  width: 260px;
  height: 155px;
  background: rgba(255, 122, 69, 0.06);
  border: 1px solid rgba(255, 122, 69, 0.2);
  bottom: 18px;
  left: -10px;
  transform: rotate(-8deg);
}

.icard-b {
  width: 270px;
  height: 165px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(76, 154, 255, 0.25);
  bottom: 36px;
  left: 4px;
  transform: rotate(-3deg);
}

.icard-b svg rect {
  fill: rgba(255, 122, 69, 0.2);
}
.icard-b div {
  color: rgba(255, 122, 69, 0.6) !important;
}

.icard-a {
  width: 280px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  bottom: 0;
  left: 16px;
  padding: 22px 24px 20px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.15);
}

.chip {
  width: 42px;
  height: 30px;
  border-radius: 7px;
  background: linear-gradient(135deg, #ff7a45, #ff9f66);
  margin-bottom: 16px;
}

.card-lbl {
  font-size: 9px;
  color: #ff9f66;
  letter-spacing: 2.5px;
  margin-bottom: 5px;
}

.card-nm {
  font-size: 13px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.cover-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cover-num {
  font-size: 15px;
  font-weight: 900;
  color: #ff9f66;
}

.cover-lbl {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
}

.cover-div {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
}

/* ===== بابل‌ها ===== */
/* ===== بابل‌ها (۳ تایی که قبلاً بود) ===== */
.bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 6;
  box-shadow: 0 6px 24px rgba(79, 163, 227, 0.12);
  /* حذف backdrop-filter */
  will-change: transform;
}

.bubble-1 {
  top: 55px;
  left: 280px;
  border: 1px solid rgba(10, 200, 120, 0.28);
  animation: bFloat 5.5s ease-in-out infinite;
}
.bubble-2 {
  top: 168px;
  left: 300px;
  border: 1px solid rgba(79, 163, 227, 0.28);
  animation: bFloat 5.5s ease-in-out infinite 1.5s;
}
.bubble-3 {
  top: 101px;
  left: 155px;
  border: 1px solid rgba(255, 165, 0, 0.28);
  animation: bFloat 5.5s ease-in-out infinite 0.8s;
}

/* فقط translateY — حذف translateX و rotate */
@keyframes bFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.bval {
  font-size: 14px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.blbl {
  font-size: 9px;
  color: var(--muted);
  margin-top: 2px;
}
/* ===== بخش راست - محتوا ===== */
.content-section {
  flex: 1;
  padding: 52px 64px 52px 40px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  direction: rtl;
}

.tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.tag-main {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 122, 69, 0.12);
  border: 1px solid rgba(255, 122, 69, 0.3);
  color: #ff9f66;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7a45;
  animation: tdot 2s infinite;
}

.tag-new {
  background: rgba(255, 122, 69, 0.12);
  border: 1px solid rgba(255, 122, 69, 0.3);
  color: #ff9f66;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 30px;
}

@keyframes tdot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.main-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.4;
  color: white;
  margin-bottom: 16px;
}

.hl {
  color: #ff7a45;
  position: relative;
  display: inline-block;
}

.hl::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff7a45, transparent);
  border-radius: 3px;
}

.sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 480px;
}

/* ویژگی‌ها */
.feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.feat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.feat:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 122, 69, 0.3);
}

.ficon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 122, 69, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ficon svg {
  width: 18px;
  height: 18px;
  stroke: #ff9f66;
  fill: none;
  stroke-width: 2;
}

.ftxt {
  font-size: 12px;
  color: white;
  font-weight: 700;
  line-height: 1.4;
}

/* دکمه CTA */
.cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff7a45, #ff9f66);
  color: white;
  font-size: 15px;
  font-weight: 800;
  padding: 15px 32px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 122, 69, 0.35);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 122, 69, 0.5);
}

.arrow-ico {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: transform 0.2s;
}

.cta-btn:hover .arrow-ico {
  transform: translateX(-5px);
}

.cta-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 7px;
}

.cta-note::before {
  content: "✓";
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* نوار پایین */
.brand-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 10;
  direction: rtl;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.brand-ico {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #ff7a45, #ff9f66);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-ico svg {
  width: 12px;
  height: 12px;
  stroke: white;
}

.brand-nm {
  font-size: 12px;
  color: white;
  font-weight: 700;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.trust-item {
  font-size: 10.5px;
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}

.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ff7a45;
  animation: tdot 2s infinite;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 1100px) {
  .illus-section {
    width: 380px;
  }
  .content-section {
    padding: 44px 44px 52px 32px;
  }
}

@media (max-width: 860px) {
  .banner {
    flex-direction: column;
    min-height: auto;
    padding-bottom: 44px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }
  .illus-section {
    width: 100%;
    height: 300px;
  }
  .card-stack {
    transform: scale(0.8);
    transform-origin: center;
    animation: none;
  }
  .bubble-1,
  .bubble-2,
  .bubble-3 {
    display: none;
  }
  .content-section {
    padding: 28px 28px 60px;
    text-align: center;
  }
  .feats {
    grid-template-columns: 1fr 1fr;
  }
  .sub {
    max-width: 100%;
  }
  .deco-ring-1,
  .deco-ring-2 {
    display: none;
  }
  .deco-blob-1,
  .deco-blob-2 {
    display: none;
  }
}

@media (max-width: 540px) {
  .feats {
    grid-template-columns: 1fr;
  }
  .brand-bar {
    padding: 0 20px;
  }
  .trust-row {
    display: none;
  }
  .hex-1,
  .hex-2,
  .hex-3 {
    display: none;
  }
  .plus-1,
  .plus-2 {
    display: none;
  }
  .main-title {
    font-size: 24px;
  }
  .cta-btn {
    padding: 12px 24px;
    font-size: 13px;
  }
}
