/* =========================================================
   CHM BEAUTY — HYALURON PAGE
========================================================= */

/* =========================================================
   01. RESET & GLOBAL
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Times New Roman", Times, serif;
  color: #1d1d1d;
  background: #f8f3ef;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}


/* ------------------------------
   02. Global Layout
------------------------------ */

.page-wrapper {
  width: min(1440px, calc(100% - 40px));
  margin: 24px auto;
  border-radius: var(--radius-page);
  overflow: hidden;
  background: var(--gradient-soft);
  box-shadow: var(--shadow-strong);
}

.section-container {
  width: var(--container-lg);
  margin: 0 auto;
  padding: 64px;
  border-radius: var(--radius-section);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 111, 35, 0.10), transparent 28%),
    linear-gradient(135deg, #fffdfb, #fff6f0);
  box-shadow: var(--shadow-medium);
}

.section-heading {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading span,
.small-label {
  display: inline-block;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(183, 14, 23, 0.07);
  color: var(--color-primary);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-heading h2 {
  margin: 18px 0;
  color: #1f1f1f;
  font-size: clamp(36px, 4vw, 58px);
  text-align: center;
  white-space: nowrap;
}

.section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 10px 0;
}

.section-divider::before,
.section-divider::after {
  content: "";
  width: 90px;
  height: 1px;
  background: #e8c8bb;
}

.section-divider span {
  color: var(--color-primary);
  font-size: 18px;
}

/* ------------------------------
   03. Buttons
------------------------------ */

.primary-btn,
.secondary-btn,
.header-btn,
.booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  transition: 0.35s ease;
  white-space: nowrap;
}

.primary-btn,
.secondary-btn {
  padding: 20px 34px;
  border-radius: var(--radius-pill);
  font-size: 16px;
}

.primary-btn,
.header-btn {
  color: var(--color-white);
  background: var(--gradient-primary);
  box-shadow: 0 18px 36px rgba(199, 44, 22, 0.28);
}

.secondary-btn {
  color: #9f0d16;
  border: 1px solid rgba(159, 13, 22, 0.45);
  background: rgba(255, 255, 255, 0.6);
}

.primary-btn:hover,
.secondary-btn:hover,
.header-btn:hover,
.booking-btn:hover {
  transform: translateY(-4px);
}

/* -----------------------------
   VARIABLES
----------------------------- */

.hy-page {
  --hy-primary: #b70e17;
  --hy-primary-dark: #7f1820;
  --hy-orange: #ff6f23;
  --hy-heading: #411f20;
  --hy-text: #3f3532;
  --hy-text-soft: #746863;
  --hy-cream: #fff8f3;
  --hy-white: #ffffff;
  --hy-border: rgba(183, 14, 23, 0.11);
  --hy-gradient: linear-gradient(135deg, #b70e17 0%, #e63b1c 55%, #ff6f23 100%);

  width: 100%;
  overflow: hidden;
  color: var(--hy-text);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 111, 35, 0.07), transparent 27%),
    #f9f4f0;

  font-family: "Times New Roman", Times, serif;
}

.hy-page *,
.hy-page *::before,
.hy-page *::after {
  box-sizing: border-box;
}

.hy-page img {
  display: block;
  max-width: 100%;
}

.hy-container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.hy-hero-section {
  position: relative;
  padding: 78px 0 90px;
}

.hy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 65px;
}


/* HERO TEXT */

.hy-eyebrow,
.hy-small-label,
.hy-section-heading > span,
.hy-cta-label {
  display: inline-block;
  padding: 10px 17px;
  border-radius: 999px;
  color: var(--hy-primary);
  background: rgba(183, 14, 23, 0.07);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.hy-hero-content h1 {
  margin: 22px 0 0;
  color: var(--hy-heading);
  font-size: clamp(54px, 5.8vw, 82px);
  font-weight: 500;
  line-height: 0.95;
}

.hy-hero-content h1 span {
  display: block;
  margin-top: 15px;
  color: var(--hy-primary);
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.2;
}

.hy-title-line {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 220px;
  margin: 28px 0;
}

.hy-title-line span {
  width: 75px;
  height: 1px;
  background: rgba(183, 14, 23, 0.35);

}

.hy-title-line i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hy-orange);
  box-shadow: 0 0 0 7px rgba(255, 111, 35, 0.1);
}

.hy-hero-content h2 {
  max-width: 590px;
  margin: 0 0 23px;
  color: var(--hy-heading);
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 500;
  line-height: 1.13;
}

.hy-hero-content h2 strong {
  display: block;
  color: var(--hy-heading);
  font-weight: 600;
  font-size: 35px;
}

.hy-hero-content p {
  max-width: 620px;
  margin: 0 0 15px;
  color: var(--hy-text-soft);
  font-family: Arial, sans-serif;
  font-size: 15.5px;
  line-height: 1.75;
}

.hy-hero-content strong {
  color: var(--hy-primary-dark);
}

.hy-primary-btn,
.hy-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 17px 28px;
  border-radius: 999px;
  color: #fff;
  background: var(--hy-gradient);
  box-shadow: 0 16px 34px rgba(183, 14, 23, 0.22);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hy-primary-btn {
  margin-top: 17px;
}

.hy-primary-btn span,
.hy-cta-button span {
  font-size: 21px;
  transition: transform 0.3s ease;
}

.hy-primary-btn:hover,
.hy-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 21px 42px rgba(183, 14, 23, 0.3);
}

.hy-primary-btn:hover span,
.hy-cta-button:hover span {
  transform: translateX(5px);
}


/* =========================================================
   IMAGE COLLAGE
========================================================= */

.hy-collage-card {
  position: relative;
  z-index: 2;

  overflow: hidden;
  margin-top: -225px; /* 25px بالاتر از حالت فعلی */
  margin-left: 40px;

  border: 1px solid var(--hy-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 25px 65px rgba(104, 43, 24, 0.14);
}

/* =========================================================
   HERO IMAGE COLLAGE — TWO VERTICAL COLUMNS
========================================================= */

.hy-collage {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  grid-template-rows: 420px;
  width: 100%;
  height: 420px;
  gap: 3px;
  padding: 3px 3px 3px 0;
  overflow: hidden;
  background: #ffffff;
}

.hy-collage-item {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #eee2da, #f8eee8);
}

.hy-collage-left {
  grid-column: 1;
  grid-row: 1;
}

.hy-collage-right {
  grid-column: 2;
  grid-row: 1;
}

.hy-collage-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hy-collage-left img {
  object-position: center;
}

.hy-collage-right img {
  object-position: center top;
}

.hy-collage-item:hover img {
  transform: scale(1.045);
}

/* این نوشته فقط وقتی عکس وجود نداشته باشد نمایش داده می‌شود */

.hy-image-placeholder {
  position: absolute;
  inset: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px dashed rgba(183, 14, 23, 0.35);
  color: var(--hy-primary-dark);
  background: rgba(255, 255, 255, 0.7);
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-align: center;
}


/* COLLAGE TEXT CARDS */

.hy-collage-captions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--hy-primary-dark);
}

.hy-caption-card {
  position: relative;
  min-height: 190px;
  padding: 27px 20px 24px;
  color: #fff;
  text-align: center;
}

.hy-caption-card:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hy-caption-icon {
  display: block;
  margin-bottom: 13px;
  color: #f5d486;
  font-size: 23px;
}

.hy-caption-card h3 {
  margin: 0 0 9px;
  color: #f7df9d;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
}

.hy-caption-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: Arial, sans-serif;
  font-size: 12.5px;
  line-height: 1.55;
}

.hy-caption-line {
  display: block;
  width: 35px;
  height: 2px;
  margin: 18px auto 0;
  background: #f2cf72;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.hy-zones-section {
  padding: 80px 0 95px;
}
/* =========================================================
   HERO → ZONES MINIMAL DIVIDER
========================================================= */

.hy-section-transition {
  position: relative;
  z-index: 3;

  width: min(760px, calc(100% - 60px));
  height: 42px;
  margin: -21px auto 8px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.hy-transition-line {
  width: min(250px, 32vw);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(183, 14, 23, 0.28)
  );
}

.hy-transition-line:last-child {
  background: linear-gradient(
    90deg,
    rgba(183, 14, 23, 0.28),
    transparent
  );
}

.hy-transition-mark {
  position: relative;

  width: 34px;
  height: 34px;

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

  flex: 0 0 34px;
  border: 1px solid rgba(183, 14, 23, 0.16);
  border-radius: 50%;

  background: rgba(255, 250, 246, 0.96);
  box-shadow: 0 7px 20px rgba(130, 52, 24, 0.08);
}

.hy-transition-mark::before {
  content: "";

  width: 16px;
  height: 16px;

  border: 1px solid rgba(183, 14, 23, 0.32);
  transform: rotate(45deg);
}

.hy-transition-mark i {
  position: absolute;

  width: 5px;
  height: 5px;

  border-radius: 50%;
  background: var(--hy-orange);
  box-shadow: 0 0 0 4px rgba(255, 111, 35, 0.1);
}

.hy-section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.hy-section-heading h2 {
  margin: 17px 0 13px;
  color: var(--hy-heading);
  font-size: clamp(39px, 4.5vw, 59px);
  font-weight: 500;
}

.hy-section-heading p {
  margin: 0;
  color: var(--hy-text-soft);
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}


/* =========================================================
   ZONES LAYOUT
========================================================= */

.hy-zones-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 44px;
  padding: 42px;
  border: 1px solid var(--hy-border);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 5% 12%,
      rgba(255, 111, 35, 0.1),
      transparent 28%
    ),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 58px rgba(130, 52, 24, 0.09);
}

.hy-zones-image {
  margin: 0;
  padding: 7px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      rgba(183, 14, 23, 0.15),
      rgba(255, 111, 35, 0.24)
    );
}

.hy-zones-image img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border-radius: 18px;
  background: #f4efeb;
  object-fit: contain;
  object-position: center center;
}

.hy-zones-content h2 {
  margin: 15px 0 25px;
  color: var(--hy-heading);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 500;
  line-height: 1.13;
}


/* BENEFITS */

.hy-benefits {
  display: grid;
  gap: 16px;
}

.hy-benefit-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(183, 14, 23, 0.09);
  border-radius: 20px;
  background: rgba(255, 249, 245, 0.88);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hy-benefit-card:hover {
  transform: translateX(5px);
  box-shadow: 0 14px 32px rgba(130, 52, 24, 0.09);
}

.hy-benefit-number {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--hy-primary);
  background:
    linear-gradient(
      135deg,
      rgba(183, 14, 23, 0.09),
      rgba(255, 111, 35, 0.16)
    );
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.hy-benefit-card h3 {
  margin: 0 0 7px;
  color: var(--hy-heading);
  font-size: 21px;
  font-weight: 600;
}

.hy-benefit-card p {
  margin: 0;
  color: var(--hy-text-soft);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}


/* =========================================================
   CTA
========================================================= */

.hy-cta-section {
  padding: 20px 0 105px;
}

.hy-cta-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 75px 60px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(
      circle at 13% 20%,
      rgba(255, 183, 119, 0.3),
      transparent 25%
    ),
    linear-gradient(135deg, #72151c 0%, #a90d17 50%, #e95b22 100%);
  box-shadow: 0 28px 65px rgba(121, 21, 29, 0.25);
  text-align: center;
}

.hy-cta-label {
  position: relative;
  z-index: 2;
  color: #ffe2ad;
  background: rgba(255, 255, 255, 0.1);
}

.hy-cta-card h2 {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 22px auto 18px;
  color: #fff;
  font-size: clamp(39px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.05;
}

.hy-cta-card h2 span {
  display: block;
  color: #ffe1a4;
}

.hy-cta-card p {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto 31px;
  color: rgba(255, 255, 255, 0.88);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

.hy-cta-button {
  position: relative;
  z-index: 2;
  color: var(--hy-primary-dark);
  background: #fff;
  box-shadow: 0 17px 38px rgba(66, 6, 13, 0.25);
  font-size: 20px;

}

.hy-cta-decoration {
  position: absolute;
  z-index: -1;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.hy-cta-decoration-one {
  right: -100px;
  top: -140px;
  width: 380px;
  height: 380px;
}

.hy-cta-decoration-two {
  left: -90px;
  bottom: -160px;
  width: 320px;
  height: 320px;
}




/* =========================================================
   12. SOCIAL ICONS
========================================================= */

.social-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;

  margin: 20px 0 0;
  padding: 0;
}

.social-icon {
  position: relative;

  width: 47px;
  height: 47px;

  list-style: none;

  border:
    1px solid rgba(183, 14, 23, 0.17);
  border-radius: 50%;

  background: #fff;

  box-shadow:
    0 9px 23px rgba(130, 52, 24, 0.08);

  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.social-icon > a {
  width: 100%;
  height: 100%;

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

  border-radius: inherit;

  text-decoration: none;

  font-size: 19px;

  color: #b70e17;
}

.social-icon:hover {
  transform: translateY(-7px);
}

.social-icon:hover > a {
  color: #fff;
}

.social-icon.instagram:hover {
  background: #e1306c;
}

.social-icon.tiktok:hover {
  background: #111;
}

.social-icon.facebook:hover {
  background: #1877f2;
}

.social-icon.whatsapp:hover {
  background: #25d366;
}

.tooltip {
  position: absolute;
  z-index: 10;

  top: -43px;
  left: 50%;

  padding: 7px 11px;

  transform: translateX(-50%);

  border-radius: 8px;

  white-space: nowrap;

  font-family: "Times New Roman", Times, serif;
  font-size: 11px;

  color: #fff;
  background: #b70e17;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    top 0.3s ease;
}

.tooltip::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -5px;

  width: 10px;
  height: 10px;

  transform:
    translateX(-50%)
    rotate(45deg);

  background: #b70e17;
}

.social-icon:hover .tooltip {
  top: -49px;

  opacity: 1;
  visibility: visible;
}


/* Footer bottom */

.footer-bottom {
  grid-column: 1 / -1;

  margin-top: 17px;
  padding-top: 22px;

  border-top:
    1px solid rgba(183, 14, 23, 0.1);

  text-align: center;

  font-family: "Times New Roman", Times, serif;
  font-size: 13px;

  color: #444;
}

/* =========================================================
   HYALURON PAGE — COMPLETE RESPONSIVE CSS
   تمام Media Queryهای قبلی را با این بخش جایگزین کن
========================================================= */


/* =========================================================
   TABLET & SMALL LAPTOP
   769px — 1100px
========================================================= */

@media (max-width: 1100px) {

  /* ---------- GENERAL ---------- */

  .hy-container {
    width: min(100% - 48px, 900px);
  }

  .hy-page {
    overflow-x: hidden;
  }


  /* ---------- HERO ---------- */

  .hy-hero-section {
    padding: 65px 0 80px;
  }

  .hy-hero-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 48px;
  }

  .hy-hero-content {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
  }

  .hy-hero-content h1 {
    font-size: clamp(58px, 9vw, 76px);
  }

  .hy-hero-content h1 span {
    font-size: clamp(22px, 3.5vw, 29px);
  }

  .hy-hero-content h2 {
    max-width: 680px;
    font-size: clamp(34px, 5vw, 43px);
  }

  .hy-hero-content p {
    max-width: 740px;
  }


  /* ---------- HERO COLLAGE CARD ---------- */

  .hy-collage-card {
    width: 100%;
    max-width: 780px;

    /* مقدار منفی دسکتاپ در تبلت غیرفعال می‌شود */
    margin: -15px auto 0;

    border-radius: 26px;
  }

  .hy-collage {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    grid-template-rows: 420px;
    height: 420px;
  }

  .hy-caption-card {
    min-height: 175px;
    padding: 25px 18px 22px;
  }

  .hy-caption-card h3 {
    font-size: 18px;
  }


  /* ---------- DIVIDER ---------- */

  .hy-section-transition {
    width: min(680px, calc(100% - 60px));
    margin: -20px auto 5px;
  }


  /* ---------- ZONES ---------- */

  .hy-zones-section {
    padding: 70px 0 85px;
  }

  .hy-section-heading {
    max-width: 720px;
    margin-bottom: 40px;
  }

  .hy-zones-layout {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 35px;
  }

  .hy-zones-image {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
  }

  .hy-zones-image img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .hy-zones-content {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
  }

  .hy-zones-content h2 {
    max-width: 680px;
    font-size: clamp(32px, 5vw, 42px);
  }


  /* ---------- CTA ---------- */

  .hy-cta-section {
    padding: 15px 0 85px;
  }

  .hy-cta-card {
    padding: 65px 42px;
  }

  .hy-cta-card h2 {
    font-size: clamp(43px, 7vw, 61px);
  }
}


/* =========================================================
   MOBILE
   تا 768px
========================================================= */

@media (max-width: 768px) {

  /* ---------- GENERAL ---------- */

  .hy-container {
    width: min(calc(100% - 30px), 680px);
  }

  .hy-page {
    overflow-x: clip;
  }

  .hy-page img {
    max-width: 100%;
  }


  /* ---------- LABELS ---------- */

  .hy-eyebrow,
  .hy-small-label,
  .hy-section-heading > span,
  .hy-cta-label {
    max-width: 100%;
    padding: 9px 14px;
    font-size: 10.5px;
    line-height: 1.4;
    letter-spacing: 1px;
    white-space: normal;
  }


  /* ---------- HERO ---------- */

  .hy-hero-section {
    padding: 45px 0 58px;
  }

  .hy-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .hy-hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hy-hero-content h1 {
    margin-top: 18px;
    font-size: clamp(47px, 14vw, 64px);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .hy-hero-content h1 span {
    margin-top: 13px;
    font-size: clamp(19px, 5.7vw, 25px);
    line-height: 1.25;
  }

  .hy-title-line {
    width: 180px;
    justify-content: center;
    margin: 24px auto;
  }

  .hy-title-line span {
    width: 60px;
  }

  .hy-hero-content h2 {
    max-width: 570px;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    font-size: clamp(29px, 8.5vw, 39px);
    line-height: 1.13;
  }

  .hy-hero-content h2 strong {
    margin-top: 4px;
  }

  .hy-hero-content p {
    max-width: 590px;
    margin-right: auto;
    margin-bottom: 14px;
    margin-left: auto;
    font-size: 14.5px;
    line-height: 1.7;
    text-align: left;
  }

  .hy-primary-btn {
    min-height: 54px;
    margin-top: 14px;
    padding: 15px 24px;
    font-size: 14px;
  }


  /* ---------- HERO COLLAGE ---------- */

  .hy-collage-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 22px;
  }


  .hy-collage {
    grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
    grid-template-rows: 330px;
    height: 330px;
  }

  .hy-collage-captions {
    grid-template-columns: 1fr;
  }

  .hy-caption-card {
    min-height: auto;
    padding: 23px 22px;
  }

  .hy-caption-card:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hy-caption-icon {
    margin-bottom: 8px;
    font-size: 21px;
  }

  .hy-caption-card h3 {
    margin-bottom: 7px;
    font-size: 19px;
  }

  .hy-caption-card p {
    max-width: 430px;
    margin: 0 auto;
    font-size: 12.5px;
  }

  .hy-caption-line {
    margin-top: 14px;
  }


  /* ---------- DIVIDER ---------- */

  .hy-section-transition {
    width: calc(100% - 38px);
    height: 34px;
    margin: -17px auto 3px;
    gap: 10px;
  }

  .hy-transition-line {
    width: min(120px, 28vw);
  }

  .hy-transition-mark {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }

  .hy-transition-mark::before {
    width: 13px;
    height: 13px;
  }


  /* ---------- ZONES HEADING ---------- */

  .hy-zones-section {
    padding: 56px 0 65px;
  }

  .hy-section-heading {
    max-width: 100%;
    margin-bottom: 32px;
  }

  .hy-section-heading h2 {
    margin: 14px 0 11px;
    font-size: clamp(36px, 11vw, 49px);
    line-height: 1.08;
  }

  .hy-section-heading p {
    font-size: 14.5px;
    line-height: 1.65;
  }


  /* ---------- ZONES LAYOUT ---------- */

  .hy-zones-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding: 20px;
    border-radius: 23px;
  }

  .hy-zones-image {
    width: 100%;
    max-width: 100%;
    padding: 5px;
    border-radius: 18px;
  }

  .hy-zones-image img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    border-radius: 14px;
    object-fit: contain;
    object-position: center;
  }

  .hy-zones-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hy-zones-content h2 {
    margin: 14px auto 23px;
    font-size: clamp(29px, 8.5vw, 38px);
    line-height: 1.14;
  }


  /* ---------- BENEFITS ---------- */

  .hy-benefits {
    gap: 14px;
  }

  .hy-benefit-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    border-radius: 17px;
    text-align: left;
  }

  .hy-benefit-card:hover {
    transform: none;
  }

  .hy-benefit-number {
    width: 46px;
    height: 46px;
  }

  .hy-benefit-card h3 {
    font-size: 19px;
    line-height: 1.25;
  }

  .hy-benefit-card p {
    font-size: 13.5px;
    line-height: 1.6;
  }


  /* ---------- CTA ---------- */

  .hy-cta-section {
    padding: 8px 0 65px;
  }

  .hy-cta-card {
    padding: 52px 23px;
    border-radius: 24px;
  }

  .hy-cta-card h2 {
    margin: 18px auto 15px;
    font-size: clamp(36px, 10.5vw, 50px);
    line-height: 1.07;
  }

  .hy-cta-card p {
    margin-bottom: 26px;
    font-size: 14.5px;
    line-height: 1.65;
  }

  .hy-cta-button {
    min-height: 54px;
    padding: 15px 23px;
    font-size: 14px;
  }

  .hy-cta-decoration-one {
    right: -150px;
    top: -175px;
  }

  .hy-cta-decoration-two {
    left: -145px;
    bottom: -190px;
  }
}


/* =========================================================
   SMALL MOBILE
   تا 480px
========================================================= */

@media (max-width: 480px) {

  /* ---------- GENERAL ---------- */

  .hy-container {
    width: calc(100% - 24px);
  }


  /* ---------- HERO ---------- */

  .hy-hero-section {
    padding: 35px 0 48px;
  }

  .hy-hero-grid {
    gap: 30px;
  }

  .hy-hero-content h1 {
    font-size: clamp(43px, 14.5vw, 57px);
  }

  .hy-hero-content h1 span {
    font-size: clamp(18px, 5.8vw, 23px);
  }

  .hy-title-line {
    width: 160px;
    margin-top: 21px;
    margin-bottom: 21px;
  }

  .hy-title-line span {
    width: 52px;
  }

  .hy-hero-content h2 {
    font-size: clamp(27px, 8.8vw, 35px);
  }

  .hy-hero-content p {
    font-size: 14px;
    line-height: 1.65;
  }


  /* ---------- BUTTONS ---------- */

  .hy-primary-btn,
  .hy-cta-button {
    width: 100%;
    gap: 11px;
    padding-right: 18px;
    padding-left: 18px;
  }


  /* ---------- IMAGE COLLAGE ---------- */


  .hy-collage {
    grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
    grid-template-rows: 270px;
    height: 270px;
  }

  .hy-caption-card {
    padding: 21px 17px;
  }


  /* ---------- DIVIDER ---------- */

  .hy-section-transition {
    width: calc(100% - 24px);
    gap: 8px;
  }

  .hy-transition-line {
    width: min(95px, 25vw);
  }


  /* ---------- ZONES ---------- */

  .hy-zones-section {
    padding: 48px 0 55px;
  }

  .hy-section-heading {
    margin-bottom: 27px;
  }

  .hy-section-heading h2 {
    font-size: clamp(33px, 11vw, 43px);
  }

  .hy-zones-layout {
    gap: 25px;
    padding: 14px;
    border-radius: 19px;
  }

  .hy-zones-image {
    padding: 4px;
    border-radius: 15px;
  }

  .hy-zones-image img {
    border-radius: 12px;
  }

  .hy-zones-content {
    padding: 4px 2px 2px;
  }

  .hy-zones-content h2 {
    font-size: clamp(27px, 8.5vw, 34px);
  }


  /* ---------- BENEFIT CARDS ---------- */

  .hy-benefit-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 15px;
    text-align: center;
  }

  .hy-benefit-number {
    margin: 0 auto;
  }

  .hy-benefit-card h3 {
    font-size: 19px;
  }


  /* ---------- CTA ---------- */

  .hy-cta-section {
    padding-bottom: 50px;
  }

  .hy-cta-card {
    padding: 44px 17px;
    border-radius: 20px;
  }

  .hy-cta-label {
    width: 100%;
  }

  .hy-cta-card h2 {
    font-size: clamp(32px, 10.5vw, 43px);
  }

  .hy-cta-card p {
    font-size: 14px;
  }
}


/* =========================================================
   VERY SMALL MOBILE
   تا 360px
========================================================= */

@media (max-width: 360px) {

  .hy-container {
    width: calc(100% - 18px);
  }

  .hy-hero-content h1 {
    font-size: 41px;
  }

  .hy-hero-content h1 span {
    font-size: 18px;
  }

  .hy-hero-content h2 {
    font-size: 27px;
  }

  .hy-collage {
    grid-template-rows: 240px;
    height: 240px;
  }

  .hy-zones-layout {
    padding: 11px;
  }

  .hy-benefit-card {
    padding: 16px 12px;
  }

  .hy-cta-card {
    padding: 40px 14px;
  }

  .hy-primary-btn,
  .hy-cta-button {
    font-size: 13px;
  }
}


/* =========================================================
   TOUCH DEVICES
   جلوگیری از افکت‌های hover نامناسب در موبایل
========================================================= */

@media (hover: none) {

  .hy-collage-item:hover img,
  .hy-primary-btn:hover,
  .hy-cta-button:hover,
  .hy-benefit-card:hover {
    transform: none;
  }
}


/* =========================================================
   REDUCED MOTION
   برای تنظیمات دسترسی‌پذیری کاربر
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .hy-page *,
  .hy-page *::before,
  .hy-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}



/* Mobile menu text — centered */
@media (max-width: 768px) {

  .site-header .main-nav {
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .site-header .main-nav a,
  .site-header .main-nav a.active {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    margin: 0 !important;

    text-align: center !important;
    font-size: 18px !important;
    line-height: 1.35 !important;
  }
}