* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  direction: rtl;
  font-family: Vazirmatn, Tahoma, sans-serif;
  background: #f6f8fc;
  color: #172033;
  line-height: 1.9;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e8ebf2;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #111827;
}

.site-brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0066ff, #7c3aed);
  color: white;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #525866;
  font-size: 14px;
}

.site-nav a:hover {
  color: #0066ff;
}

.header-cta,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.2s;
}

.header-cta,
.primary-cta {
  background: linear-gradient(135deg, #0066ff, #7c3aed);
  color: white;
}

.header-cta {
  padding: 9px 16px;
}

.primary-cta,
.secondary-cta {
  padding: 13px 20px;
}

.secondary-cta {
  background: white;
  color: #0066ff;
  border: 1px solid #cad8f7;
}

.primary-cta:hover,
.secondary-cta:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.page-hero {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #172033;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 11, 25, 0.25),
      rgba(5, 11, 25, 0.9)
    );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 20px;
  color: white;
}

.page-breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.45;
}

.page-hero p {
  max-width: 700px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-strip {
  max-width: 1180px;
  margin: -42px auto 45px;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.13);
}

.trust-item {
  padding: 22px;
  text-align: center;
  border-left: 1px solid #edf0f5;
}

.trust-item:last-child {
  border-left: none;
}

.trust-item strong {
  display: block;
  margin-bottom: 5px;
  color: #111827;
  font-size: 16px;
}

.trust-item span {
  color: #737b8c;
  font-size: 13px;
}

.page-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 20px 70px;
}

.content-section {
  margin-bottom: 60px;
}

.content-section h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.55;
  color: #111827;
}

.section-intro {
  max-width: 820px;
  margin: 0 0 28px;
  color: #667085;
}

.service-grid,
.steps-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.service-card {
  background: white;
  border: 1px solid #e6eaf1;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.service-card-content {
  padding: 20px;
}

.service-card h3 {
  margin: 0 0 8px;
  color: #111827;
}

.service-card p {
  margin: 0 0 14px;
  color: #667085;
  font-size: 14px;
}

.service-link {
  color: #0066ff;
  font-weight: 800;
  font-size: 14px;
}

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

.step-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e7eaf0;
}

.step-number {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: #eef4ff;
  color: #0066ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.step-card h3 {
  margin: 0 0 8px;
}

.step-card p {
  margin: 0;
  color: #667085;
  font-size: 14px;
}

.guarantee-box {
  padding: 34px;
  border-radius: 26px;
  background: linear-gradient(135deg, #101828, #344054);
  color: white;
}

.guarantee-box h2 {
  color: white;
}

.guarantee-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 24px;
  margin-top: 22px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.guarantee-item::before {
  content: "✓";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-grid {
  grid-template-columns: 1fr;
}

.faq-item {
  background: white;
  border: 1px solid #e5e9f0;
  border-radius: 17px;
  padding: 18px 20px;
}

.faq-item h3 {
  margin: 0 0 7px;
  font-size: 16px;
}

.faq-item p {
  margin: 0;
  color: #667085;
  font-size: 14px;
}

.final-cta {
  text-align: center;
  padding: 50px 25px;
  border-radius: 28px;
  background: #edf4ff;
}

.final-cta h2 {
  margin-bottom: 10px;
}

.final-cta p {
  margin: 0 auto 24px;
  max-width: 650px;
  color: #667085;
}

.site-footer {
  background: #101828;
  color: white;
  padding: 45px 20px 25px;
}

.site-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0 30px;
  color: #d0d5dd;
  font-size: 14px;
}

.footer-copy {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #98a2b3;
  font-size: 12px;
}

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

  .page-hero {
    min-height: 460px;
  }

  .page-hero-content {
    padding: 55px 18px;
  }

  .page-hero p {
    font-size: 15px;
  }

  .trust-strip {
    margin-top: -28px;
  }

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

  .trust-item:nth-child(2) {
    border-left: none;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid #edf0f5;
  }

  .service-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-list {
    grid-template-columns: 1fr;
  }

  .content-section h2 {
    font-size: 25px;
  }
}
