@font-face {
  font-family: "Vazirmatn";
  src: url("/assets/fonts/vazirmatn-arabic-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("/assets/fonts/vazirmatn-arabic-600-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("/assets/fonts/vazirmatn-arabic-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("/assets/fonts/vazirmatn-arabic-800-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --brand: #f36b0a;
  --brand-dark: #d95700;
  --ink: #171b1e;
  --muted: #66717a;
  --surface: #f6f7f7;
  --line: #e1e5e7;
  --footer: #151d22;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  direction: rtl;
  font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(243, 107, 10, .35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  right: 10px;
  padding: 8px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.wrap {
  width: min(1060px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  height: 82px;
  background: #fff;
  border-bottom: 1px solid rgba(225, 229, 231, .8);
}

.topbar-inner {
  position: relative;
  display: flex;
  height: 82px;
  align-items: center;
  justify-content: center;
}

.logo {
  position: absolute;
  right: 0;
  display: flex;
  width: 126px;
  align-items: center;
  flex-direction: column;
  line-height: 1.2;
}

.logo img {
  width: 43px;
  height: 46px;
  object-fit: contain;
}

.logo strong {
  margin-top: 1px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  direction: rtl;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--brand);
  transition: width .2s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.main-nav a[aria-current="page"] {
  color: var(--brand-dark);
}

.nav-toggle {
  position: absolute;
  left: 0;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  right: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.header-balance {
  display: none;
}

.breadcrumb {
  color: #68737b;
  background: #fff;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.breadcrumb ol {
  display: flex;
  min-height: 38px;
  padding-block: 7px;
  margin-block: 0;
  gap: 8px;
  align-items: center;
  list-style: none;
}

.breadcrumb li + li::before {
  margin-left: 8px;
  content: "‹";
  color: #a0a8ad;
}

.breadcrumb a:hover {
  color: var(--brand-dark);
}

.hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #f5f6f6;
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 60%;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-photo::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.68) 14%, rgba(255,255,255,0) 42%);
}

.hero-inner {
  position: relative;
  height: 100%;
}

.hero-copy {
  position: absolute;
  top: 69px;
  left: 70px;
  z-index: 2;
  width: 380px;
  text-align: right;
}

.hero h1 {
  margin: 0 0 13px;
  font-size: 43px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -2.1px;
  white-space: nowrap;
}

.hero h1 span {
  color: var(--brand);
  font-family: Arial, sans-serif;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -5px;
}

.hero p {
  width: auto;
  margin: 0 0 26px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.9;
  white-space: nowrap;
}

.primary-button {
  display: inline-flex;
  min-height: 44px;
  padding: 0 19px;
  gap: 10px;
  align-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  float: left;
}

.primary-button:hover {
  background: var(--brand-dark);
}

.primary-button b,
.brand-link b {
  font-family: Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.content {
  padding: 32px 0 42px;
  background: #fff;
}

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

.section-title h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.5;
}

.section-title i {
  display: block;
  width: 28px;
  height: 2px;
  margin: 8px auto 0;
  background: var(--brand);
}

.about-text {
  margin: 14px auto 28px;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

.section-action {
  margin: -16px 0 27px;
  text-align: center;
}

.section-action a {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.brand-cards + .section-action {
  margin: 18px 0 0;
}

.brands-title {
  margin-top: 2px;
}

.brand-cards {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.brand-card {
  position: relative;
  height: 207px;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 207px;
  background: #f4f4f4;
  border-radius: 12px;
  box-shadow: 0 7px 22px rgba(0, 0, 0, .07);
}

.brand-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  display: none;
}

.card-copy {
  position: absolute;
  z-index: 2;
  top: 31px;
  right: auto;
  left: 24px;
  width: 155px;
  text-align: left;
}

.card-copy h3 {
  width: 125px;
  margin: 0 0 4px;
  font-size: 21px;
  line-height: 1.4;
  white-space: nowrap;
}

.card-copy h3 span {
  color: var(--brand);
  font-family: Arial, sans-serif;
  font-size: 26px;
  letter-spacing: -2px;
}

.card-copy p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.brand-link {
  position: absolute;
  top: 116px;
  left: 0;
  right: auto;
  display: inline-flex;
  min-height: 44px;
  min-width: 118px;
  padding: 0 12px;
  gap: 7px;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  background: rgba(255,255,255,.78);
  border: 1px solid var(--brand);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-link {
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.brand-link:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-1px);
}

.brand-card > img {
  position: absolute;
  z-index: 1;
  bottom: 5px;
  right: 5px;
  left: auto;
  width: 180px;
  height: 180px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-card > .kala-image {
  bottom: 9px;
  right: 0;
  left: auto;
  width: 196px;
  height: 165px;
  object-position: right center;
}

.brand-card:first-child::before {
  position: absolute;
  z-index: 2;
  right: 153px;
  bottom: 24px;
  width: 26px;
  height: 63px;
  content: "";
  background: linear-gradient(#202326 0 9%, #92999e 10% 88%, #1e2225 89%);
  border: 3px solid #24282b;
  border-radius: 4px;
  box-shadow: 0 4px 7px rgba(0,0,0,.18);
}

.reasons-title {
  margin-top: 38px;
}

.reasons {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.reasons article {
  position: relative;
  height: 102px;
  padding: 22px 10px 10px;
  text-align: center;
  border: 1px solid #e3e3e3;
  border-radius: 11px;
  box-shadow: 0 7px 22px rgba(17, 24, 29, .045);
}

.reasons article > i {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 37px;
  height: 3px;
  background: var(--brand);
  transform: translateX(-50%);
}

.reasons h3 {
  margin: 0 0 1px;
  font-size: 15px;
}

.reasons p {
  margin: 0;
  color: #555;
  font-size: 12px;
  line-height: 1.7;
}

.home-paths {
  padding-top: 42px;
  content-visibility: auto;
  contain-intrinsic-size: 360px;
}

.home-paths-grid {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.home-paths-grid article {
  padding: 22px;
  background: var(--surface);
  border-radius: 12px;
}

.home-paths-grid h3 {
  margin: 0 0 7px;
  font-size: 16px;
}

.home-paths-grid h3 a:hover {
  color: var(--brand-dark);
}

.home-paths-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.footer {
  position: relative;
  min-height: 168px;
  padding: 28px 0 23px;
  color: #fff;
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr 1fr;
  gap: 95px;
  align-items: start;
}

.footer h2 {
  margin: 0;
  font-size: 14px;
}

.footer-line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0 11px;
  background: var(--brand);
}

.footer-contact p {
  margin: 5px 0;
  color: #f1f1f1;
  font-size: 12px;
  line-height: 1.7;
}

.footer-contact {
  position: relative;
}

.footer-contact p span {
  display: inline-block;
  min-width: 21px;
  color: var(--brand);
  font-size: 14px;
}

.footer-contact .pin {
  font-size: 17px;
}

.footer-services ul {
  margin: 0;
  padding: 0 14px 0 0;
  list-style: none;
}

.footer-services li {
  position: relative;
  margin-bottom: 4px;
  color: #eee;
  font-size: 12px;
}

.footer-services li::before {
  position: absolute;
  top: 8px;
  right: -13px;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--brand);
  border-radius: 50%;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.footer-logo img {
  width: 50px;
  height: 54px;
}

.footer-logo strong {
  margin-top: 2px;
  font-size: 16px;
}

.footer-brand p {
  margin: 7px 0 4px;
  color: #eee;
  font-size: 11px;
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 17px;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
}

.socials a:hover {
  color: var(--brand);
  border-color: var(--brand);
}

.whatsapp {
  display: grid;
  width: 47px;
  height: 47px;
  margin: 12px auto 0;
  place-items: center;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,.2);
}

.whatsapp svg {
  width: 29px;
  height: 29px;
  fill: #fff;
}

@media (max-width: 900px) {
  .hero-photo {
    width: 70%;
    opacity: .7;
  }

  .hero-copy {
    left: 20px;
  }

  .footer-grid {
    gap: 35px;
  }

}

@media (max-width: 700px) {
  .wrap {
    width: min(100% - 28px, 1060px);
  }

  .topbar,
  .topbar-inner {
    height: auto;
    min-height: 76px;
  }

  .logo {
    width: 54px;
  }

  .logo img {
    width: 32px;
    height: 35px;
  }

  .logo strong {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    z-index: 100;
    top: 76px;
    right: 0;
    display: none;
    width: 100%;
    min-height: calc(100vh - 76px);
    padding: 24px 20px;
    gap: 0;
    align-items: stretch;
    justify-content: start;
    flex-direction: column;
    background: #fff;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 54px;
    padding-inline: 12px;
    justify-content: space-between;
    font-size: 15px;
    white-space: nowrap;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    height: 405px;
  }

  .hero-photo {
    top: 0;
    width: 100%;
    height: 205px;
    opacity: 1;
  }

  .hero-photo::before {
    background: linear-gradient(0deg, #f5f6f6 0%, transparent 45%);
  }

  .hero-copy {
    top: 208px;
    right: 0;
    left: 0;
    width: auto;
    text-align: center;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero h1 span {
    font-size: 37px;
  }

  .hero p {
    max-width: 100%;
    padding-inline: 12px;
    font-size: 14px;
    white-space: normal;
  }

  .content {
    padding-block: 36px;
  }

  .about-text br {
    display: none;
  }

  .about-text {
    max-width: 100%;
    padding-inline: 4px;
    overflow-wrap: anywhere;
  }

  .brand-cards,
  .reasons,
  .home-paths-grid {
    grid-template-columns: 1fr;
  }

  .brand-cards {
    margin-top: 20px;
  }

  .reasons-title {
    margin-top: 42px;
  }

  .brand-card {
    height: 205px;
  }

  .reasons article {
    height: 95px;
  }

  .footer {
    padding-block: 30px;
  }

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

  .footer-contact,
  .footer-services {
    text-align: center;
  }

  .footer-line {
    margin-inline: auto;
  }

  .footer-services ul {
    display: inline-grid;
    text-align: right;
  }

  .whatsapp {
    width: 44px;
    height: 44px;
    margin-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
