@font-face {
  font-family: "IRANSansXVF";
  src: url("../fonts/IRANSansXVF.ttf") format("truetype");
  font-variation-settings: 'wght' 400, 'DOTS' 6;
  font-style: normal;
  font-display: swap;
}
:root{
  --primary:#2563eb;
  --dark:#0b1220;
  --muted:#6b7280;
  --bg:#ffffff;
  --card:#ffffff;
  --radius:12px;
  --transition:.35s cubic-bezier(.4,0,.2,1);
}

*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family: "IRANSansXVF", sans-serif;
  background:var(--bg);
  color:#111827;
  line-height:1.9;
}

.bold{
background:#FCFDFF;
  font-family: "IRANSansXVF";
  font-variation-settings: 'wght' 800, 'DOTS' 6;
}

h1,h2,h3{
  font-family: "IRANSansXVF";
  font-variation-settings: 'wght' 800, 'DOTS' 6;
}

button{
  font-family: "IRANSansXVF";
  font-variation-settings: 'wght' 400, 'DOTS' 6;
}

.container{
  width:100%;
  max-width:1200px;
  margin:auto;
}

.header-bar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 20px 0px;
}

/* منوی موبایل */
.header-left{ 
display:flex; 
 justify-content: flex-start;
align-items:center; 
gap:30px;
 }

 .header-left a {
display:flex; 
align-items: center;
gap: 10px;
	 text-decoration: none;
	 color: black;
}

.nav-links{
  display:flex;
  gap:25px;
  font-size:14px;
}

.btn{
  padding:10px 20px;
  cursor:pointer;
  transition:var(--transition);
  border:none;
    font-size:18px;
}
.btn:hover{
    cursor: pointer;
}

.btn-primary{
  background:var(--primary);
  color:#fff;
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.btn-outline{
  background:#fff;
  border:1px solid #e5e7eb;
}

.hero{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:center;
  padding:60px 0;
}

.hero-box{
  background:var(--card);
  padding:40px;
  border-radius:var(--radius);
  box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.hero img{
  width:100%;
  max-width:350px;
}

.price{
  color:var(--primary);
  font-size:26px;
  font-weight:700;
  margin:15px 0;
}

.features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  padding:60px 0;
}

.card{
  background:var(--card);
  padding:30px;
  border-radius:var(--radius);
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  transition:var(--transition);
}

.card:hover{
  transform:translateY(-6px);
}

.steps{
  display:flex;
  justify-content:space-between;
  text-align:center;
  gap:20px;
  padding:50px 0;
  flex-wrap:wrap;
}

.step{
  flex:1;
  min-width:200px;
}

.table-section{
max-width:1200px;
  padding:0px;
  padding-bottom:50px;
}

table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
}

th,td{
  padding:18px;
  border:1px solid #e5e7eb;
  text-align:center;
}

.cta {
  background: #F9FBFF;
  padding: 70px 0;
  width: 100%;
max-width: 1200px;
margin:0px auto;
}

.cta-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 400px;
flex-direction: row-reverse;
}

.cta-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.cta-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
	min-width: 200px;
}

.cta-time {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-right {
  text-align: right;
}
.cta-right h1 {
  font-size: 26px;
}

/* ریسپانسیو */
@media (max-width: 768px) {
  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cta-left {
    align-items: center;
  }

  .cta-right {
    text-align: center;
  }

}

footer{
  padding:35px 0;
  margin-top:0px;
	display: flex;
	justify-content: center;
	text-align: right;
	direction: rtl;
	color: #4F525E;
	font-weight: 300
}

/* Animation */
.fade{
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;
}
.fade.show{
  opacity:1;
  transform:translateY(0);
}
.boxes {
    background-color: #fff;
    font-family: "IRANSansXVF", sans-serif;
    display: flex;
    flex-direction: row-reverse;
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
    /*box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-radius: 15px;*/
}

/* بخش سمت چپ (تصویر) */
.boxes .image-section {
    background-color: #F9FBFF;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.boxes .logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.boxes .logo-box img {
    width: 60px;
    height: 60px;
}

.boxes .logo-box span {
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

/* بخش سمت راست (محتوا) */
.boxes .content-section {
    flex: 1;
    /*padding: 40px;*/
margin-left: 30px;
    display: flex;
    flex-direction: column;
}

.boxes h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}
/* ریسپانسیو موبایل */
@media (max-width: 992px) {
     .boxes h1 {
         font-size: clamp(32px, 8vw, 42px);
     }
}


.boxes p.description {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.boxes .alert-box {
    background-color: #f0fff4;
    color: #0C5411;
    padding: 12px;
    font-size: 12px;
    margin-bottom: 25px;
    text-align: right;
}

.boxes .price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.boxes .price-label {
    font-size: 14px;
    font-weight: bold;
}

.boxes .price-value {
    color: #2563eb;
    font-size: 36px;    
    font-variation-settings: 'wght' 900, 'DOTS' 6;
}

.boxes .dropdown-container {
    margin-bottom: 20px;
}

.boxes select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: "IRANSansXVF";
    font-variation-settings: 'wght' 400, 'DOTS' 6;
    outline: none;
    background-color: #fff;
}

.boxes .info-grid {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    margin-bottom: 30px;
}

.boxes .info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.boxes .info-item span:first-child {
    font-size: 12px;
    color: #888;
}

.boxes .info-item span:last-child {
    font-size: 13px;
    font-weight: bold;
    color: #333;
}

.boxes .actions {
    display: flex;
    gap: 30px;
}

.boxes .btn {
    flex: 1;
    padding: 12px;
    /*border-radius: 8px;*/
    border: none;
    cursor: pointer;
    font-size:18px;
    font-weight: bold;
    transition: 0.3s;
   font-family: "IRANSansXVF";
   font-variation-settings: 'wght' 400, 'DOTS' 6;
}

.boxes .btn-primary {
    background-color: #2563eb;
    color: #fff;
}

.boxes .btn-primary:hover {
    background-color: #1d4ed8;
}

.boxes .btn-outline {
    background-color: transparent;
    border: 1px solid #e2e8f0;
    color: #666;
}

.boxes .btn-outline:hover {
    background-color: #f8fafc;
}

.trust-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    margin: 60px auto; /* فاصله از بالا و پایین */
margin-bottom: 0px;
    padding: 60px; /* فاصله داخلی */
    border-top: 1px solid #e5e7eb;   /* خط بالایی */
    border-bottom: 1px solid #e5e7eb; /* خط پایینی */
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #64748b;
}

/* --- Steps Section --- */
.section-header { 
    text-align: right; 
    max-width: 1200px;   /* محدودیت عرض مثل بقیه */
    width: 100%;          /* عرض کامل برای موبایل */
    margin: 0 auto;       /* وسط چین کردن */
    padding-top: 60px;   /* فاصله داخلی بالا/پایین و کناره‌ها */
    padding-bottom: 30px;
    box-sizing: border-box;
    display: flex;        /* فلکس برای اتوماتیک تنظیم شدن محتوا */
    flex-direction: column; 
    align-items: flex-start; /* متن‌ها راست چین */
}
.section-header p { 
    color: var(--text-muted); 
    font-size: 14px;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  max-width:1200px; 
  widh:100%;
  margin: 0px auto;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.step-card {
  flex: 1;
  text-align: center;
  min-width: 200px;
}

.step-card strong {
   font-variation-settings: 'wght' 600, 'DOTS' 6;  
}

.step-icon-wrap {
  width: 70px;
  height: 70px;
  background: #F9FBFF;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  font-size: 28px;
    transition: transform 0.3s ease;
}

.step-arrow::after {
  content: "←";
  font-size: 24px;
  color: #cbd5e1;
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 80px;
}

.feature-container {
    display: flex;
    justify-content: space-between; /* افقی توزیع کارت‌ها */
    flex-wrap: nowrap; /* دسکتاپ: هیچ wrap نداشته باشد */
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0px;
    box-sizing: border-box;
}

.feature-card {
    flex: 0 0 calc(33.333% - 13.33px); /* هر کارت حدود 1/3 عرض container با فاصله */
    background-color: #f8fbff;
    border-radius: 0px;
    padding: 40px 60px;
    text-align: right;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.step-icon-wrap:hover { transform: translateY(-5px); }

.feature-card:hover { transform: translateY(-5px); }

.feature-icon {
    background-color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 30px 0; /* فاصله پایین حفظ شد، خودکار سمت راست */
    /* box-shadow حذف شد */
    /* آیکون سمت راست تراز شود */
    align-self: flex-start; 
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    fill: none;
    stroke: #000;
    stroke-width: 1.5;
}

.feature-card h2 {
    font-size: 1.4rem;
    color: #050a1e;
    margin-bottom: 20px;
    font-weight: bold;
}

.feature-card p {
    font-size: 0.95rem;
    color: #555e70;
    line-height: 1.8;
    margin: 0;
    text-align: right;
    text-align-last: right;
}

/* ریسپانسیو موبایل */
@media (max-width: 992px) {
    .feature-container {
        flex-wrap: wrap; /* کارت‌ها عمودی شوند */
        justify-content: center;
    }
    .feature-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* ریسپانسیو */
@media(max-width:992px){
  .hero{
    grid-template-columns:1fr;
    text-align:center;
  }
    .boxes {
        flex-direction: column; /* تغییر از row-reverse به column */
    }
    .boxes .image-section,
    .boxes .content-section {
        padding: 20px; /* کاهش padding برای موبایل */
    }
  .boxes > h1{
        font-size: 8vw;
    }
.steps-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .step-arrow::after {
    content: "↓";
    font-size: 28px;
  }
.section-header {
        padding: 30px 15px; /* کمتر کردن padding برای موبایل */
        align-items: center; /* وسط چین کردن متن‌ها در موبایل */
        text-align: right;
    }
.cta-wrapper h1{
font-size: 24px;
        text-align: right;
}
.cta-wrapper{
    flex-direction: column-reverse;
gap:40px;
  }
}

.image-section img{
  animation: float 4s ease-in-out infinite;
}

@keyframes float{
  0%{ transform: translateY(0px); }
  50%{ transform: translateY(-12px); }
  100%{ transform: translateY(0px); }
}

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
}

.hamburger span{
  width:25px;
  height:2px;
  background:#111;
  transition:.3s;
}

/* موبایل */
@media (max-width:768px){

  .header-bar{
    justify-content:space-between;
padding:20px 40px;
  }

  .header-left{
    position:fixed;
    top:0;
    left:-260px;   /* از چپ مخفی */
    width:260px;
    height:100vh;
    background:#fff;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:30px;
    box-shadow:0 0 30px rgba(0,0,0,.1);
    transition:.4s;
    z-index:1000;
  }
  .header-left.active{
    left:0;  /* از چپ وارد شود */
  }

.header-left.active a,
.header-left.active button {
  display: flex;
  align-items: center;       /* وسط عمودی آیتم‌ها */
  gap: 8px;                  /* فاصله آیکون و متن */
  padding: 8px 12px;
  margin-right: 20px;        /* فاصله از راست کانتینر */
}

  .hamburger{
    display:flex;
  }

.boxes .content-section{
margin: 0px;
   }

}

/* پیش‌فرض مخفی */
.close-menu {
  display: none;
  position:absolute;
  top:40px;
  left:40px;  
  background:none;
  border:none;
  font-size:28px;
  cursor:pointer;
}

/* وقتی منوی موبایل فعال شد، نمایش بده */
@media (max-width:768px){
  .header-left.active .close-menu {
    display: block;
  }
}

.overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:rgba(0,0,0,.4);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:998;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  padding: 60px 20px;
  box-shadow: 2px 0 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: right; /* راست چین کردن متن‌ها */
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 9999;
}

.menu.show {
  transform: translateX(0);
}

.menu a {
  text-decoration: none;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  text-align: right;
}

.menu-close {
  position: absolute;
  top: 20px;
  left: 20px; /* سمت چپ */
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
}

.icon{
	font-size: 21px;
	display: block;
}
.blu{
	color: #2563eb;
}