:root {
  --main-font-size: 15px;
  --main-color: #1d6a9a;
  --second-color: #225e85;
  --main-text-color: #333;
  --main-font-family: "IRANYekan";
}
.zn-hero {
  --zn-navy-950: #061622;
  --zn-navy-900: #0a2035;
  --zn-navy-800: #0f2f4d;
  --zn-navy-700: #15436c;
  --zn-glow-cyan: #4fd2e0;
  --zn-glow-blue: #3f8ecf;
  --zn-ink-0: #ffffff;
  --zn-ink-1: rgba(255, 255, 255, 0.86);
  --zn-ink-2: rgba(224, 235, 245, 0.72);

  position: relative;
  direction: rtl;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: clamp(96px, 22vw, 140px) 20px clamp(64px, 12vw, 96px);
  font-family: var(--main-font-family);
  background: var(--zn-navy-900);
  color: var(--zn-ink-0);
}

/* ---------- layered backdrop ---------- */
.zn-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-bg-image, none);
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  transform: scale(1.08);
  animation: zn-bg-drift 22s ease-in-out infinite alternate;
  will-change: transform;
}

.zn-hero__wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(6, 22, 34, 0.94) 0%,
    rgba(10, 32, 53, 0.88) 38%,
    rgba(21, 67, 108, 0.68) 68%,
    rgba(21, 67, 108, 0.42) 100%
  );
}

.zn-hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(4, 14, 24, 0.65) 0%, transparent 32%),
    linear-gradient(to bottom, rgba(4, 14, 24, 0.55) 0%, transparent 26%);
  pointer-events: none;
}

/* subtle dotted "map / network" texture — nods to global trade without literal imagery */
.zn-hero__texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.5;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.14) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  mask-image: radial-gradient(
    ellipse 80% 60% at 60% 40%,
    #000 0%,
    transparent 75%
  );
  pointer-events: none;
}

/* ambient glow blobs for premium depth */
.zn-hero__glow {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
}
.zn-hero__glow--a {
  width: 46vw;
  height: 46vw;
  max-width: 520px;
  max-height: 520px;
  top: -14%;
  inset-inline-end: -12%;
  background: radial-gradient(circle, var(--zn-glow-blue), transparent 70%);
  animation: zn-float-a 14s ease-in-out infinite;
}
.zn-hero__glow--b {
  width: 36vw;
  height: 36vw;
  max-width: 420px;
  max-height: 420px;
  bottom: -16%;
  inset-inline-start: -10%;
  background: radial-gradient(circle, var(--zn-glow-cyan), transparent 70%);
  animation: zn-float-b 16s ease-in-out infinite;
}

/* ---------- content ---------- */
.zn-hero__container {
  position: relative;
  z-index: 3;
  max-width: 950px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 22px);
}

.zn-hero__title {
  margin: 0;
  font-weight: 800;
  line-height: 1.32;
  font-size: clamp(1.9rem, 4.6vw + 0.9rem, 2.7rem);
  color: var(--zn-ink-0);
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(18px);
  animation: zn-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.zn-hero__subtitle {
  margin: 0;
  max-width: 640px;
  font-weight: 400;
  line-height: 1.9;
  font-size: clamp(0.95rem, 0.6vw + 0.82rem, 1.15rem);
  color: var(--zn-ink-2);
  text-wrap: pretty;
  opacity: 0;
  transform: translateY(16px);
  animation: zn-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.zn-hero__buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 380px;
  margin-top: clamp(10px, 2vw, 18px);
  opacity: 0;
  transform: translateY(14px);
  animation: zn-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

/* ---------- buttons ---------- */
.zn-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  padding: 14px 26px;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}
.zn-btn:focus-visible {
  outline: 2px solid var(--zn-glow-cyan);
  outline-offset: 3px;
}

.zn-btn--ghost {
  color: var(--zn-ink-0);
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.zn-btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.zn-btn--solid {
  color: #fff;
  background: linear-gradient(95deg, var(--main-color), var(--second-color));
  box-shadow: 0 10px 26px -8px rgba(29, 106, 154, 0.65);
}
.zn-btn--solid .zn-btn__icon {
  transition: transform 0.35s ease;
}
.zn-btn--solid:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -8px rgba(29, 106, 154, 0.85);
}
.zn-btn--solid:hover .zn-btn__icon {
  transform: translateX(-4px);
}
.zn-btn__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 45%,
    transparent 60%
  );
  transform: translateX(-120%);
}
.zn-btn--solid:hover .zn-btn__shine {
  color: #fff;
  animation: zn-shine 1.1s ease;
}

/* ---------- keyframes ---------- */
@keyframes zn-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zn-bg-drift {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(-1%, -1%, 0);
  }
}
@keyframes zn-float-a {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-16px, 18px);
  }
}
@keyframes zn-float-b {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(14px, -14px);
  }
}
@keyframes zn-shine {
  to {
    transform: translateX(120%);
  }
}

/* ---------- responsive: mobile-first base above, refine upward ---------- */
@media (min-width: 480px) {
  .zn-hero__buttons {
    flex-direction: row-reverse; /* first DOM item (ghost) sits on the right in RTL row */
    justify-content: center;
    max-width: none;
    width: auto;
  }
  .zn-btn {
    flex: 0 0 auto;
  }
}

@media (min-width: 768px) {
  .zn-hero {
    padding-top: clamp(120px, 16vw, 160px);
  }
  .zn-hero__title {
    line-height: 1.28;
  }
}

@media (min-width: 1024px) {
  .zn-hero {
    min-height: 92vh;
  }
  .zn-hero__container {
    gap: 20px;
  }
}

/* ---------- accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  .zn-hero__bg,
  .zn-hero__glow--a,
  .zn-hero__glow--b,
  .zn-hero__title,
  .zn-hero__subtitle,
  .zn-hero__buttons {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.criteria-sec {
  --criteria-bg: #f6f8fb;
  --criteria-card-bg: #ffffff;
  --criteria-card-border: #e7ecf1;
  --criteria-title-color: #0f2942;
  --criteria-shadow: 0 4px 18px rgba(15, 41, 66, 0.05);
  --criteria-shadow-hover: 0 20px 40px -12px rgba(29, 106, 154, 0.22);

  direction: rtl;
  font-family: var(--main-font-family), Tahoma, sans-serif;
  background: var(--criteria-bg);
  padding: 56px 20px;
  overflow: hidden;
  position: relative;
}

/* ambient background glow — subtle, on-brand */
.criteria-sec::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 420px;
  background:
    radial-gradient(
      60% 60% at 30% 20%,
      rgba(29, 106, 154, 0.07),
      transparent 70%
    ),
    radial-gradient(
      50% 50% at 80% 10%,
      rgba(34, 94, 133, 0.06),
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}

.criteria-sec__head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 720px;
}

.criteria-sec__title {
  margin: 0;
  font-size: clamp(22px, 4.4vw, 32px);
  font-weight: 800;
  line-height: 1.5;
  color: var(--criteria-title-color);
  letter-spacing: -0.01em;
}

.criteria-sec__underline {
  display: block;
  width: 56px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--main-color), var(--second-color));
}

.criteria-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

@media (min-width: 620px) {
  .criteria-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .criteria-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.criteria-item {
  opacity: 0;
  transform: translateY(18px);
  animation: criteria-fade-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i, 0) * 90ms);
}

@keyframes criteria-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .criteria-item {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.criteria-item__inner {
  position: relative;
  height: 100%;
  background: var(--criteria-card-bg);
  border: 1px solid var(--criteria-card-border);
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: var(--criteria-shadow);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  will-change: transform;
}

.criteria-item__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--main-color), transparent 40%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.criteria-item:hover .criteria-item__inner,
.criteria-item:focus-within .criteria-item__inner {
  transform: translateY(-8px);
  box-shadow: var(--criteria-shadow-hover);
  border-color: transparent;
}

.criteria-item:hover .criteria-item__inner::after,
.criteria-item:focus-within .criteria-item__inner::after {
  opacity: 1;
}

.criteria-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 12px;
  background: rgba(29, 106, 154, 0.08);
  color: var(--main-color);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* place icon at the "start" of the card — right side in RTL, matching reference */
.criteria-item__inner {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.criteria-item:hover .criteria-item__icon-img {
  filter: brightness(100);
}

.criteria-item__icon-img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.criteria-item__icon svg {
  width: 22px;
  height: 22px;
}

.criteria-item:hover .criteria-item__icon,
.criteria-item:focus-within .criteria-item__icon {
  background: linear-gradient(135deg, var(--main-color), var(--second-color));
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}

.criteria-item__title {
  margin: 0 0 8px;
  font-size: calc(var(--main-font-size) * 1.3);
  font-weight: 700;
  color: var(--criteria-title-color);
  line-height: 1.6;
}

.criteria-item__subtitle {
  margin: 0;
  font-size: var(--main-font-size);
  font-weight: 400;
  color: var(--main-text-color);
  line-height: 1.9;
  opacity: 0.85;
}

/* =========================================================
   About / Sourcing Section — Ultra Premium Styling
   Mobile-first — از موبایل شروع و برای دسکتاپ گسترش می‌یابد
   ========================================================= */

.about-section {
  --about-shadow: 0 30px 60px -25px rgba(29, 106, 154, 0.35);
  --about-radius: 20px;
  --about-bg-tint: #f4f9fc;

  position: relative;
  direction: rtl;
  font-family: var(--main-font-family), Tahoma, sans-serif;
  color: var(--main-text-color);
  background: linear-gradient(180deg, #ffffff 0%, var(--about-bg-tint) 100%);
  padding: 64px 20px;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      500px 300px at 90% 0%,
      rgba(29, 106, 154, 0.06),
      transparent 60%
    ),
    radial-gradient(
      400px 250px at 0% 100%,
      rgba(34, 94, 133, 0.05),
      transparent 60%
    );
  pointer-events: none;
}

.about-section__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

/* -------------------- کولاژ تصاویر -------------------- */
.collage-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 30px -14px rgba(20, 45, 65, 0.28);
  background: #e8eef2;
}

.collage-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
}

.collage-item:hover img {
  transform: scale(1.1);
}

.collage-item--1 {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 4 / 3;
}
.collage-item--2 {
  grid-column: 2;
  grid-row: 1;
  aspect-ratio: 4 / 3;
}
.collage-item--3 {
  grid-column: 1;
  grid-row: 2;
  aspect-ratio: 4 / 5;
}
.collage-item--4 {
  grid-column: 2;
  grid-row: 2;
  aspect-ratio: 4 / 5;
}

/* نمودار جریان Factory → Warehouse → Customer روی موبایل: نوار افقی زیر ردیف اول */
.collage-flow {
  grid-column: 1 / -1;
  grid-row: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid rgba(29, 106, 154, 0.12);
  border-radius: 14px;
  padding: 14px 10px;
  box-shadow: 0 10px 24px -16px rgba(20, 45, 65, 0.2);
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.flow-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  background: rgba(29, 106, 154, 0.08);
  border-radius: 10px;
}

.flow-icon svg {
  width: 22px;
  height: 22px;
}

.flow-label {
  font-size: 10px;
  color: #6b7f8d;
  letter-spacing: 0.02em;
}

.flow-arrow {
  color: var(--main-color);
  opacity: 0.55;
  width: 32px;
  flex-shrink: 0;
  transform: scaleX(-1); /* جهت جریان از راست به چپ در RTL */
}

.flow-arrow svg {
  width: 100%;
  height: auto;
  display: block;
}

.flow-arrow__path {
  stroke-dasharray: 4 6;
  animation: flow-dash 1.6s linear infinite;
}

@keyframes flow-dash {
  to {
    stroke-dashoffset: -20;
  }
}

/* بج شناور روی تصویر کشتی */
.collage-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-inline-start: auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  color: var(--second-color);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 20px -10px rgba(20, 45, 65, 0.35);
}

.collage-badge svg {
  width: 16px;
  height: 16px;
  color: var(--main-color);
  flex-shrink: 0;
}

/* -------------------- محتوای متنی -------------------- */

.about-content {
  position: relative;
  text-align: right;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--main-color);
  background: rgba(29, 106, 154, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.about-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--main-color);
}

.about-title {
  position: relative;
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 800;
  line-height: 1.4;
  color: #16324a;
  margin: 0 0 18px;
  padding-bottom: 16px;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--main-color), var(--second-color));
  transform-origin: right center;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-section.is-visible .about-title::after,
.about-title.is-visible::after {
  transform: scaleX(1);
}

.about-text {
  font-size: var(--main-font-size);
  line-height: 2;
  color: var(--main-text-color);
}

.about-text p {
  margin: 0 0 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-points {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--second-color);
}

.point-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--main-color), var(--second-color));
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(29, 106, 154, 0.12);
}

/* -------------------- انیمیشن ورود هنگام اسکرول -------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .about-title::after,
  .flow-arrow__path {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* -------------------- Tablet ≥ 640px -------------------- */
@media (min-width: 640px) {
  .about-section {
    padding: 80px 32px;
  }

  .collage-item--1 {
    grid-column: 1;
    grid-row: 1;
  }
  .collage-flow {
    grid-column: 2;
    grid-row: 1;
    flex-direction: column;
  }
  .collage-item--2 {
    grid-column: 3;
    grid-row: 1;
  }
  .collage-item--3 {
    grid-column: 1 / span 1;
    grid-row: 2;
  }
  .collage-item--4 {
    grid-column: 2 / span 2;
    grid-row: 2;
  }

  .collage-flow {
    padding: 16px 10px;
  }
  .flow-arrow {
    transform: rotate(90deg) scaleX(-1);
    width: 26px;
  }
}

/* -------------------- Desktop ≥ 1024px -------------------- */
@media (min-width: 1024px) {
  .about-section__inner {
    direction: ltr;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .about-content {
    direction: rtl;
  }

  .collage-item--1 {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: auto;
  }
  .collage-flow {
    grid-column: 2;
    grid-row: 1;
    flex-direction: column;
    box-shadow: none;
    border: none;
    background: transparent;
  }
  .collage-item--2 {
    grid-column: 3;
    grid-row: 1;
    aspect-ratio: auto;
  }
  .collage-item--3 {
    grid-column: 1 / span 1;
    grid-row: 2;
    aspect-ratio: auto;
  }
  .collage-item--4 {
    grid-column: 2 / span 2;
    grid-row: 2;
    aspect-ratio: auto;
  }

  .flow-icon {
    width: 46px;
    height: 46px;
  }
  .flow-icon svg {
    width: 26px;
    height: 26px;
  }
  .flow-arrow {
    transform: rotate(90deg) scaleX(-1);
    width: 30px;
  }

  .about-title {
    font-size: 36px;
  }
}

@media (min-width: 1280px) {
  .about-section {
    padding: 100px 40px;
  }
}

.services-sec {
  --svc-bg: #eef2f7;
  --svc-card-bg: #ffffff;
  --svc-card-border: #e8edf2;
  --svc-title-color: #0f1f30;
  --svc-text-color: #16232f;
  --svc-check: #17a865;
  --svc-check-dark: #0f8a52;
  --svc-shadow: 15, 23, 42;
  --svc-radius: 14px;
  --svc-gap: 14px;
  --svc-ease: cubic-bezier(0.22, 1, 0.36, 1);

  position: relative;
  background: var(--svc-bg);
  padding: 48px 16px;
  font-family: var(--main-font-family), "Vazirmatn", Tahoma, sans-serif;
  overflow: hidden;
}

/* faint ambient glow, purely decorative, disabled on small screens for perf */
.services-sec::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 320px;
  background: radial-gradient(
    60% 100% at 50% 0%,
    rgba(29, 106, 154, 0.07),
    transparent 70%
  );
  pointer-events: none;
  display: none;
}

/* ---------- Title ---------- */

.services-sec__title {
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(1.35rem, 1.1rem + 1.1vw, 2.15rem);
  font-weight: 800;
  color: var(--svc-title-color);
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(14px);
  animation: svc-title-in 0.7s var(--svc-ease) forwards;
}

.services-sec__title-text {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.services-sec__title-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--main-color), var(--svc-check));
}

/* ---------- List / Cards ---------- */

.services-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--svc-gap);
}

.service-item {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding: 18px 20px;
  background: var(--svc-card-bg);
  border: 1px solid var(--svc-card-border);
  border-radius: var(--svc-radius);
  box-shadow: 0 1px 2px rgba(var(--svc-shadow), 0.04);
  cursor: default;
  isolation: isolate;
  overflow: hidden;

  opacity: 0;
  transform: translateY(18px);
  transition:
    transform 0.45s var(--svc-ease),
    box-shadow 0.45s var(--svc-ease),
    border-color 0.45s var(--svc-ease),
    background-color 0.45s var(--svc-ease);
}

/* scroll-reveal state, toggled by services-section.js */
.service-item.is-visible {
  animation: svc-item-in 0.6s var(--svc-ease) forwards;
  animation-delay: calc(var(--i, 0) * 80ms);
}

/* subtle sheen that sweeps across on hover */
.service-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(29, 106, 154, 0.05) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.7s var(--svc-ease);
  pointer-events: none;
  z-index: 0;
}

@media (hover: hover) {
  .service-item:hover {
    transform: translateY(-3px);
    border-color: rgba(29, 106, 154, 0.35);
    box-shadow:
      0 10px 24px -8px rgba(var(--svc-shadow), 0.12),
      0 0 0 1px rgba(29, 106, 154, 0.05);
  }

  .service-item:hover::after {
    transform: translateX(100%);
  }

  .service-item:hover .service-item__text {
    color: var(--second-color);
  }

  .service-item:hover .service-item__icon {
    background: linear-gradient(
      145deg,
      var(--svc-check),
      var(--svc-check-dark)
    );
    border-color: transparent;
    box-shadow: 0 0 0 6px rgba(23, 168, 101, 0.12);
    transform: scale(1.08) rotate(-4deg);
  }

  .service-item:hover .service-item__check,
  .service-item:hover .service-item__icon-img {
    color: #fff;
    filter: brightness(0) invert(1);
    transform: scale(1.05);
  }
}

.service-item__text {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.85;
  color: var(--svc-text-color);
  transition: color 0.35s var(--svc-ease);
}

.service-item__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--svc-check);
  background: transparent;
  transition:
    background 0.35s var(--svc-ease),
    border-color 0.35s var(--svc-ease),
    box-shadow 0.35s var(--svc-ease),
    transform 0.35s var(--svc-ease);
}

.service-item__check {
  width: 15px;
  height: 15px;
  color: var(--svc-check);
  transition:
    color 0.35s var(--svc-ease),
    transform 0.35s var(--svc-ease);
}

.service-item__icon-img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  transition:
    filter 0.35s var(--svc-ease),
    transform 0.35s var(--svc-ease);
}

/* ---------- Keyframes ---------- */

@keyframes svc-title-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes svc-item-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .services-sec__title,
  .service-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   Breakpoints — enhancing upward from the mobile base above
   ========================================================================== */

/* small tablets */
@media (min-width: 560px) {
  .services-sec {
    padding: 60px 24px;
  }

  .service-item {
    padding: 20px 26px;
    gap: 16px;
  }

  .service-item__text {
    font-size: 1.02rem;
  }

  .service-item__icon {
    width: 32px;
    height: 32px;
  }
  .service-item__check {
    width: 16px;
    height: 16px;
  }
}

/* tablets / small laptops */
@media (min-width: 820px) {
  .services-sec {
    padding: 76px 32px;
  }
  .services-sec::before {
    display: block;
  }

  .services-sec__title {
    margin-bottom: 40px;
  }

  .service-item {
    padding: 24px 34px;
    gap: 18px;
    /* content hugs the right edge, leaving open space on the left
       exactly as in the reference layout */
    justify-content: flex-end;
  }

  .service-item__text {
    font-size: 1.08rem;
  }

  .service-item__icon {
    width: 34px;
    height: 34px;
  }
  .service-item__check {
    width: 17px;
    height: 17px;
  }
}

/* desktop */
@media (min-width: 1200px) {
  .services-sec {
    padding: 96px 40px;
  }

  .service-item {
    padding: 26px 40px;
  }

  .service-item__text {
    font-size: 1.12rem;
  }
}

.faq-sec {
  --f-radius: 20px;
  --f-radius-sm: 14px;
  --f-shadow: 0 10px 30px rgba(29, 106, 154, 0.08);
  --f-shadow-hover: 0 16px 40px rgba(29, 106, 154, 0.14);
  --f-border: #e9edf1;

  position: relative;
  overflow: hidden;
  padding: 56px 20px;
  background: #fbfcfd;
  font-family: var(--main-font-family, "IRANYekan"), sans-serif;
  color: var(--main-text-color, #333);
  direction: rtl;
}

.faq-sec__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.faq-sec__glow--one {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -100px;
  background: radial-gradient(
    circle,
    var(--main-color, #1d6a9a),
    transparent 70%
  );
}
.faq-sec__glow--two {
  width: 260px;
  height: 260px;
  bottom: -60px;
  left: -80px;
  background: radial-gradient(
    circle,
    var(--second-color, #225e85),
    transparent 70%
  );
}

.faq-sec__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

/* ---------- Media ---------- */
.faq-sec__media {
  width: 100%;
}

.faq-sec__media-frame {
  position: relative;
  border-radius: var(--f-radius);
  overflow: hidden;
  box-shadow: var(--f-shadow);
  isolation: isolate;
}

.faq-sec__img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition:
    filter 0.6s ease,
    transform 0.6s ease;
  transform: scale(1.01);
}

.faq-sec__media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(29, 106, 154, 0.35),
    rgba(34, 94, 133, 0.05) 60%
  );
  mix-blend-mode: multiply;
  opacity: 0.7;
  transition: opacity 0.6s ease;
}

.faq-sec__media-ring {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: calc(var(--f-radius) - 6px);
  pointer-events: none;
}

.faq-sec__media:hover .faq-sec__img {
  filter: grayscale(0.15) contrast(1.05);
  transform: scale(1.05);
}
.faq-sec__media:hover .faq-sec__media-frame::after {
  opacity: 0.25;
}

/* ---------- Content ---------- */
.faq-sec__content {
  width: 100%;
}

.faq-sec__title {
  position: relative;
  font-size: clamp(22px, 5vw, 27px);
  font-weight: 800;
  line-height: 1.5;
  margin: 0 0 28px;
  color: #16222b;
  padding-inline-start: 18px;
  border-inline-start: 4px solid transparent;
  background: linear-gradient(
    180deg,
    var(--main-color, #1d6a9a),
    var(--second-color, #225e85)
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.faq-sec__title-bar {
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 14px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    var(--main-color, #1d6a9a),
    var(--second-color, #225e85)
  );
}

/* ---------- Accordion ---------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--f-border);
  border-radius: var(--f-radius-sm);
  box-shadow: var(--f-shadow);
  overflow: hidden;
  transition:
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    transform 0.25s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--main-color, #1d6a9a),
    var(--second-color, #225e85)
  );
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.faq-item:hover {
  box-shadow: var(--f-shadow-hover);
  transform: translateY(-2px);
}

.faq-item.is-open {
  border-color: rgba(29, 106, 154, 0.25);
  box-shadow: var(--f-shadow-hover);
}

.faq-item.is-open::before {
  transform: scaleY(1);
}

.faq-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 18px;
  text-align: right;
  font-family: inherit;
}

.faq-item__question {
  flex: 1;
  margin: 0;
  font-size: clamp(14px, 3.6vw, var(--main-font-size, 15px));
  font-size: 16px;
  font-weight: 700;
  color: #16222b;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.faq-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f1f6f9;
  color: var(--main-color, #1d6a9a);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__icon svg {
  width: 16px;
  height: 16px;
}

.faq-item.is-open .faq-item__icon {
  background: linear-gradient(
    135deg,
    var(--main-color, #1d6a9a),
    var(--second-color, #225e85)
  );
  color: #fff;
  transform: rotate(180deg);
}

.faq-item.is-open .faq-item__question {
  color: var(--main-color, #1d6a9a);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__panel-inner {
  padding: 0 18px 20px 18px;
  color: #5b6875;
  font-size: 14.5px;
  line-height: 1.9;
}

.faq-item__panel-inner p {
  margin: 0 0 10px;
}
.faq-item__panel-inner p:last-child {
  margin-bottom: 0;
}

/* ---------- Tablet ---------- */
@media (min-width: 640px) {
  .faq-sec {
    padding: 72px 32px;
  }
  .faq-sec__img {
    height: 340px;
  }
}

/* ---------- Desktop ---------- */
@media (min-width: 992px) {
  .faq-sec {
    padding: 100px 48px;
  }

  .faq-sec__inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  /* Image on the visual left, content on the right — matches reference */
  .faq-sec__media {
    order: 2;
  }
  .faq-sec__content {
    order: 1;
  }

  .faq-sec__img {
    height: 100%;
    min-height: 560px;
  }

  .faq-sec__title {
    text-align: right;
  }
}

@media (min-width: 1200px) {
  .faq-sec__inner {
    gap: 90px;
  }
}
/* ==========================================================================
   CTA Section — "نیاز به مشاوره تخصصی دارید؟"
   Mobile-first, RTL. Relies on global tokens already defined in :root:
   --main-font-size, --main-color, --second-color, --main-text-color,
   --main-font-family
   ========================================================================== */

.cta-section {
  --cta-bg-start: #eef6fc;
  --cta-bg-mid: #e4f0fa;
  --cta-bg-end: #d9ebf7;
  --cta-white: #ffffff;
  --cta-heading: #16202b;
  --cta-border: #e3ecf4;
  --cta-shadow-color: 208 30% 45%;
  --cta-green: #17a865;
  --cta-radius-lg: 20px;
  --cta-radius-full: 999px;
  --cta-ease: cubic-bezier(0.22, 1, 0.36, 1);

  position: relative;
  overflow: hidden;
  direction: rtl;
  isolation: isolate;
  font-family: var(--main-font-family), "Segoe UI", Tahoma, sans-serif;
  font-size: var(--main-font-size);
  color: var(--main-text-color);
  background: linear-gradient(
    115deg,
    var(--cta-bg-start) 0%,
    var(--cta-bg-mid) 45%,
    var(--cta-bg-end) 100%
  );
  background-size: 180% 180%;
  animation: cta-bg-drift 16s ease-in-out infinite;
  padding: 56px 20px;
}

@keyframes cta-bg-drift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Decorative ambient glows */
.cta-section__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.cta-section__glow--a {
  width: 260px;
  height: 260px;
  top: -80px;
  left: -60px;
  background: radial-gradient(
    circle,
    hsl(var(--cta-shadow-color) / 0.25),
    transparent 70%
  );
  animation: cta-float-a 12s ease-in-out infinite;
}
.cta-section__glow--b {
  width: 320px;
  height: 320px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(
    circle,
    hsl(var(--cta-shadow-color) / 0.18),
    transparent 70%
  );
  animation: cta-float-b 14s ease-in-out infinite;
}
@keyframes cta-float-a {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, 25px);
  }
}
@keyframes cta-float-b {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-25px, -15px);
  }
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1240px;
  margin-inline: auto;
}

/* ---------- Content block ---------- */
.cta-section__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-section__heading-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cta-section__title {
  margin: 0;
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--cta-heading);
  letter-spacing: -0.01em;
}

.cta-section__title .cta-section__highlight,
.cta-section__highlight {
  position: relative;
  display: inline-block;
  color: var(--main-color);
  white-space: nowrap;
}
.cta-section__highlight::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -0.06em;
  height: 0.42em;
  border-radius: var(--cta-radius-full);
  background: linear-gradient(
    90deg,
    hsl(var(--cta-shadow-color) / 0.35),
    hsl(var(--cta-shadow-color) / 0.08)
  );
  z-index: -1;
  transform-origin: right center;
  transform: scaleX(0);
  animation: cta-underline-grow 1s var(--cta-ease) 0.4s forwards;
}
@keyframes cta-underline-grow {
  to {
    transform: scaleX(1);
  }
}

.cta-section__icon {
  position: relative;
  flex: none;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--cta-white);
  color: var(--main-color);
  box-shadow: 0 10px 24px -8px hsl(var(--cta-shadow-color) / 0.35);
  animation: cta-icon-float 5s ease-in-out infinite;
}
.cta-section__icon svg {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 1;
}
.cta-section__icon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  border: 1.5px solid hsl(var(--cta-shadow-color) / 0.35);
  animation: cta-ring-pulse 2.6s ease-out infinite;
}
@keyframes cta-icon-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes cta-ring-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  70%,
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

.cta-section__text {
  margin: 0;
  max-width: 56ch;
  font-size: 1.05em;
  line-height: 1.9;
  color: var(--main-text-color);
  opacity: 0.85;
}

/* ---------- Badges ---------- */
.cta-section__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--cta-white);
  border-radius: var(--cta-radius-full);
  box-shadow: 0 6px 16px -8px hsl(var(--cta-shadow-color) / 0.3);
  font-size: 0.88em;
  font-weight: 600;
  color: var(--cta-heading);
  transition:
    transform 0.35s var(--cta-ease),
    box-shadow 0.35s var(--cta-ease);
}
.cta-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px -8px hsl(var(--cta-shadow-color) / 0.4);
}
.cta-badge__icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--cta-green);
  flex: none;
}
.cta-badge__icon svg {
  width: 100%;
  height: 100%;
}

/* ---------- Actions ---------- */
.cta-section__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.98em;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.3s var(--cta-ease),
    box-shadow 0.3s var(--cta-ease),
    background 0.3s var(--cta-ease);
  will-change: transform;
}
.cta-btn:focus-visible {
  outline: 2px solid var(--main-color);
  outline-offset: 3px;
}
.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    115deg,
    transparent 20%,
    hsl(0 0% 100% / 0.35) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s var(--cta-ease);
}
.cta-btn:hover::before {
  transform: translateX(120%);
}
.cta-btn__icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: none;
}
.cta-btn__icon svg {
  width: 100%;
  height: 100%;
}

.cta-btn--primary {
  color: var(--cta-white);
  background: linear-gradient(135deg, var(--main-color), var(--second-color));
  box-shadow: 0 14px 28px -10px hsl(var(--cta-shadow-color) / 0.55);
}
.cta-btn--primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 20px 34px -10px hsl(var(--cta-shadow-color) / 0.6);
}
.cta-btn--primary:active {
  transform: translateY(-1px) scale(0.99);
}

.cta-btn--secondary {
  color: var(--cta-heading);
  background: var(--cta-white);
  border: 1px solid var(--cta-border);
  box-shadow: 0 8px 18px -10px hsl(var(--cta-shadow-color) / 0.25);
}
.cta-btn--secondary:hover {
  transform: translateY(-3px);
  border-color: hsl(var(--cta-shadow-color) / 0.4);
  box-shadow: 0 14px 24px -10px hsl(var(--cta-shadow-color) / 0.3);
}
.cta-btn--secondary .cta-btn__icon {
  color: var(--main-color);
}

/* ==========================================================================
   Tablet and up — two-column layout matching the reference design
   ========================================================================== */
@media (min-width: 768px) {
  .cta-section {
    padding: 72px 40px;
  }
  .cta-section__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  .cta-section__content {
    flex: 1 1 62%;
    gap: 20px;
  }
  .cta-section__actions {
    flex: 0 0 auto;
    flex-direction: row;
    align-self: center;
  }
  .cta-btn {
    padding: 16px 26px;
  }
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 96px 64px;
  }
  .cta-section__title {
    font-size: 2rem;
  }
  .cta-section__heading-row {
    align-items: center;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .cta-section,
  .cta-section__glow--a,
  .cta-section__glow--b,
  .cta-section__icon,
  .cta-section__icon-ring,
  .cta-section__highlight::after {
    animation: none !important;
  }
  .cta-btn,
  .cta-badge {
    transition: none !important;
  }
  .cta-section__highlight::after {
    transform: scaleX(1);
  }
}

@media only screen and (max-width: 850px) {
  .zn-hero__title {
    font-size: clamp(1.9rem, 4.6vw + 0.9rem, 1.9rem);
  }
  .zn-hero {
    min-height: auto;
  }
  .criteria-sec__title {
    font-size: clamp(22px, 4.4vw, 27px);
  }
  .about-title {
    font-size: clamp(24px, 5vw, 29px);
    padding-bottom: 0;
  }
  .cta-section__text {
    max-width: 100%;
  }
  .cta-section__title {
    font-size: clamp(1.5rem, 1.1rem + 1.8vw, 1.3rem);
    line-height: 1.9;
  }
}
@media only screen and (max-width: 550px) {
  .zn-hero {
    min-height: auto;
    padding: 45px 25px 35px;
  }
  .zn-hero__title {
    font-size: clamp(1.5rem, 4.6vw + 0.9rem, 1.5rem);
    line-height: 1.7;
  }
  .zn-hero__subtitle {
    line-height: 1.7;
    font-size: 14px;
  }
}



.intro-one-sec {
	position: relative;
	overflow: hidden;
	padding: 48px 20px;
	background: #ffffff;
	font-family: var(--main-font-family, "IRANYekan");
}

.intro-one-sec__glow {
	position: absolute;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	filter: blur(70px);
	opacity: 0.15;
	pointer-events: none;
	z-index: 0;
}
.intro-one-sec__glow--a {
	top: -60px;
	inset-inline-start: -60px;
	background: var(--main-color, #0d3b66);
}
.intro-one-sec__glow--b {
	bottom: -80px;
	inset-inline-end: -60px;
	background: var(--second-color, #16a596);
}

.intro-one-sec__inner {
	position: relative;
	z-index: 1;
	max-width: 1180px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

/* --- media --- */
.intro-one-sec__media {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.intro-one-sec__media.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.intro-one-sec__frame {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 45px -20px rgba(13, 59, 102, 0.35);
}

.intro-one-sec__img {
	display: block;
	width: 100%;
	height: 260px;
	object-fit: cover;
}

.intro-one-sec__ring {
	position: absolute;
	inset: 10px;
	border: 1.5px solid rgba(255, 255, 255, 0.55);
	border-radius: 14px;
	pointer-events: none;
}

/* --- content --- */
.intro-one-sec__content {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}
.intro-one-sec__content.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.intro-one-sec__kicker-line {
	display: block;
	width: 52px;
	height: 4px;
	border-radius: 4px;
	margin-bottom: 16px;
	background: linear-gradient(90deg, var(--main-color, #0d3b66), var(--second-color, #16a596));
}

.intro-one-sec__text {
	font-size: 15px;
	line-height: 2;
	color: #3a3f4b;
}
.intro-one-sec__text p { margin: 0 0 14px; }
.intro-one-sec__text p:last-child { margin-bottom: 0; }
.intro-one-sec__text h2,
.intro-one-sec__text h3 {
	color: var(--main-color, #0d3b66);
	font-weight: 700;
	margin: 0 0 12px;
}

/* --- tablet --- */
@media (min-width: 640px) {
	.intro-one-sec { padding: 64px 32px; }
	.intro-one-sec__img { height: 340px; }
}

/* --- desktop: side by side, image on the right in RTL --- */
@media (min-width: 992px) {
	.intro-one-sec { padding: 96px 40px; }

	.intro-one-sec__inner {
		flex-direction: row;
		align-items: center;
		gap: 60px;
	}

	.intro-one-sec__media,
	.intro-one-sec__content {
		flex: 1 1 50%;
		min-width: 0;
	}

	.intro-one-sec__img { height: 420px; }

	.intro-one-sec__text { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
	.intro-one-sec__media,
	.intro-one-sec__content {
		transition: none;
		opacity: 1;
		transform: none;
	}
}





.clearance-steps-sec {
	padding: 48px 20px;
	background: #f7f9fb;
	font-family: var(--main-font-family, "IRANYekan");
}

.clearance-steps-sec__head {
	max-width: 1180px;
	margin: 0 auto 28px;
	text-align: center;
}

.clearance-steps-sec__title {
	font-size: 20px;
	font-weight: 700;
	color: var(--main-color, #0d3b66);
	margin: 0 0 10px;
}

.clearance-steps-sec__underline {
	display: inline-block;
	width: 56px;
	height: 4px;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--main-color, #0d3b66), var(--second-color, #16a596));
}

.clearance-steps-list {
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.clearance-step {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 30px -18px rgba(13, 59, 102, 0.25);
	opacity: 0;
	transform: translateY(24px);
	animation: clearance-step-in 0.6s ease forwards;
	animation-delay: calc(var(--i) * 0.1s);
}

@keyframes clearance-step-in {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.clearance-step__media {
	width: 100%;
	height: 185px;
	overflow: hidden;
}

.clearance-step__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.clearance-step__body {
	padding: 18px 20px 22px;
}

.clearance-step__title {
	font-size: 16px;
	font-weight: 700;
	color: var(--main-color, #0d3b66);
	margin: 0 0 10px;
}

.clearance-step__text {
	font-size: 14px;
	line-height: 2;
	color: #566072;
}
.clearance-step__text p { margin: 0 0 10px; }
.clearance-step__text p:last-child { margin-bottom: 0; }

/* --- tablet --- */
@media (min-width: 640px) {
	.clearance-steps-sec { padding: 64px 32px; }
	.clearance-step__media { height: 230px; }
}

/* --- desktop: 2 items per row --- */
@media (min-width: 992px) {
	.clearance-steps-sec { padding: 88px 40px; }

	.clearance-steps-sec__title { font-size: 26px; }

	.clearance-steps-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}

	.clearance-step {
		display: flex;
		flex-direction: column;
	}

	.clearance-step__media { height: 300px; }

	.clearance-step__body { padding: 22px 26px 26px; }
}

@media (prefers-reduced-motion: reduce) {
	.clearance-step {
		animation: none;
		opacity: 1;
		transform: none;
	}
}



.additional-info-sec {
	padding: 40px 20px 56px;
	background: #ffffff;
	font-family: var(--main-font-family, "IRANYekan");
}

.additional-info-sec__inner {
	max-width: 1180px;
	margin: 0 auto;
}

.additional-info-card {
	position: relative;
	background: #f7f9fb;
	border-radius: 16px;
	padding: 22px 20px 22px 22px;
	overflow: hidden;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.additional-info-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.additional-info-card__accent {
	position: absolute;
	top: 0;
	bottom: 0;
	inset-inline-start: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--main-color, #0d3b66), var(--second-color, #16a596));
}

.additional-info-card__head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.additional-info-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	color: #ffffff;
	background: var(--main-color, #0d3b66);
	flex-shrink: 0;
}
.additional-info-card__icon svg {
	width: 15px;
	height: 15px;
}

.additional-info-card__label {
	font-size: 13px;
	font-weight: 700;
	color: var(--main-color, #0d3b66);
}

.additional-info-card__text {
	font-size: 14px;
	line-height: 2;
	color: #566072;
}
.additional-info-card__text p { margin: 0 0 12px; }
.additional-info-card__text p:last-child { margin-bottom: 0; }
.additional-info-card__text a {
	color: var(--second-color, #16a596);
	text-decoration: underline;
}

/* --- tablet --- */
@media (min-width: 640px) {
	.additional-info-sec { padding: 56px 32px 72px; }
	.additional-info-card { padding: 28px 26px 28px 30px; }
}

/* --- desktop --- */
@media (min-width: 992px) {
	.additional-info-sec { padding: 72px 40px 96px; }

	.additional-info-card { padding: 34px 34px 34px 40px; }

	.additional-info-card__label { font-size: 14px; }

	.additional-info-card__text { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
	.additional-info-card {
		transition: none;
		opacity: 1;
		transform: none;
	}
}



@media (max-width: 600px) {
.intro-one-sec__content {
    order: 2;
}
}
