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

@font-face {
  font-family: "IRANSansWeb";
  src: url("/public/assets/fonts/IRANSansWeb_Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --brand-orange: #ef6c00;
  --brand-orange-dark: #c95600;
  --brand-slate: #34515e;
  --brand-slate-dark: #263e48;
  --brand-green: #29b459;
  --brand-text: #3a3a3a;
  --brand-bg: #f5f5f5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--brand-text);
  font-size: 15px;
  font-family: "IRANSansWeb", Tahoma, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

.app {
  min-width: 320px;
  overflow: hidden;
}

.site-container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.static-shell {
  min-height: 100vh;
  background: #fff;
  color: var(--brand-slate-dark);
}

.static-header,
.static-main,
.static-footer {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.static-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0;
}

.static-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.static-brand img {
  width: 150px;
  height: auto;
}

.static-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: #52646c;
  font-size: 12px;
}

.static-action,
.static-form button {
  border: 0;
  border-radius: 12px;
  padding: 13px 20px;
  background: var(--brand-orange);
  color: #fff;
  font-weight: 700;
}

.static-hero {
  padding: 78px 0 70px;
  text-align: center;
}

.static-hero > span {
  color: var(--brand-orange);
  font-size: 12px;
  font-weight: 700;
}

.static-hero h1 {
  margin: 14px 0 16px;
  color: var(--brand-slate-dark);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.45;
}

.static-hero p,
.static-section > p {
  max-width: 720px;
  margin: 0 auto;
  color: #687980;
  font-size: 14px;
  line-height: 2;
}

.static-section {
  padding: 24px 0 64px;
}

.static-section h2 {
  margin: 0 0 24px;
  color: var(--brand-slate-dark);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.static-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.static-grid article,
.static-form {
  border: 1px solid #e4eaec;
  border-radius: 16px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 16px 45px rgb(38 62 72 / 6%);
}

.static-grid h3 {
  margin: 0 0 10px;
  color: var(--brand-slate-dark);
  font-size: 17px;
  font-weight: 700;
}

.static-grid p {
  margin: 0;
  color: #75868c;
  font-size: 12px;
  line-height: 1.9;
}

.static-form {
  display: grid;
  gap: 16px;
  width: min(100% - 32px, 820px);
  margin: 0 auto 80px;
}

.static-form label,
.static-form fieldset {
  display: grid;
  gap: 8px;
  border: 0;
  margin: 0;
  padding: 0;
  color: var(--brand-slate-dark);
  font-size: 12px;
  font-weight: 700;
}

.static-form fieldset {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.static-form legend {
  grid-column: 1 / -1;
}

.static-form input,
.static-form textarea {
  width: 100%;
  border: 1px solid #dce4e7;
  border-radius: 11px;
  padding: 13px 14px;
  background: #fbfcfc;
  color: var(--brand-slate-dark);
}

.static-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #edf1f2;
  padding: 26px 0;
  color: #687980;
  font-size: 12px;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.flex {
  display: flex;
}

.hidden {
  display: none;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-7 {
  gap: 1.75rem;
}

.h-\[78px\] {
  height: 78px;
}

.min-h-\[610px\] {
  min-height: 610px;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mt-12 {
  margin-top: 3rem;
}

.w-full {
  width: 100%;
}

.border-b {
  border-bottom: 1px solid;
}

.border-slate-100 {
  border-color: #f1f5f9;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.py-4 {
  padding-block: 1rem;
}

.py-14 {
  padding-block: 3.5rem;
}

.py-16 {
  padding-block: 4rem;
}

.text-xs {
  font-size: 0.75rem;
}

.legacy-anchor {
  position: relative;
  top: -96px;
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .sm\:flex {
    display: flex;
  }

  .sm\:text-sm {
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
}

@media (min-width: 992px) {
  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:mt-0 {
    margin-top: 0;
  }

  .lg\:py-20 {
    padding-block: 5rem;
  }
}

.topbar {
  display: flex;
  min-height: 38px;
  align-items: center;
  background: var(--brand-slate-dark);
  color: #dce5e9;
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s ease;
}

.topbar-link:hover {
  color: #fff;
}

.main-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid #eef1f2;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 8px 30px rgb(35 57 66 / 5%);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 156px;
  max-height: 40px;
  height: auto;
  object-fit: contain;
}

.brand-divider {
  width: 1px;
  height: 34px;
  background: #dce1e3;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.brand strong {
  color: var(--brand-slate);
  font-size: 14px;
  font-weight: 700;
}

.brand small {
  color: #859197;
  font-size: 11px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #485960;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--brand-orange);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-sm {
  min-height: 42px;
  border-radius: 10px;
  padding: 9px 17px;
  font-size: 12px;
}

.button-primary {
  background: var(--brand-orange);
  box-shadow: 0 12px 24px rgb(239 108 0 / 22%);
  color: #fff;
}

.button-primary:hover {
  background: var(--brand-orange-dark);
  box-shadow: 0 16px 30px rgb(239 108 0 / 28%);
  color: #fff;
}

.button-secondary {
  border-color: #dce4e7;
  background: #fff;
  color: var(--brand-slate);
}

.button-secondary:hover,
.button-outline:hover {
  border-color: var(--brand-slate);
  background: var(--brand-slate);
  color: #fff;
}

.button-outline {
  border-color: #cfd9dd;
  background: transparent;
  color: var(--brand-slate);
}

.mobile-menu-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #e5eaec;
  border-radius: 10px;
  background: #fff;
  color: var(--brand-slate);
}

@media (min-width: 992px) {
  .main-header .mobile-menu-button {
    display: none;
  }
}

.mobile-drawer {
  position: fixed;
  z-index: 100;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgb(23 38 44 / 58%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  height: 100%;
  padding: 24px;
  background: #fff;
  box-shadow: -20px 0 60px rgb(0 0 0 / 15%);
  transform: translateX(105%);
  transition: transform 0.3s ease;
}

.mobile-drawer.is-open .drawer-backdrop {
  opacity: 1;
}

.mobile-drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f2f3;
  padding: 16px 3px;
  color: #42545c;
  font-size: 14px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgb(239 108 0 / 9%), transparent 25%),
    linear-gradient(135deg, #fbfcfc 0%, #f3f7f8 52%, #eef4f5 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -250px;
  left: -180px;
  width: 620px;
  height: 620px;
  border: 90px solid rgb(52 81 94 / 3%);
  border-radius: 50%;
  content: "";
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(rgb(52 81 94 / 13%) 1px, transparent 1px);
  background-position: 0 0;
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, transparent 15%, #000 58%, transparent 100%);
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--brand-slate);
  font-size: 12px;
  font-weight: 700;
}

.eyebrow-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 8px 22px rgb(52 81 94 / 10%);
  color: var(--brand-orange);
}

.hero h1 {
  margin: 0 0 22px;
  color: var(--brand-slate-dark);
  font-size: clamp(2.5rem, 5vw, 4.65rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.28;
}

.hero h1 span {
  display: block;
  color: var(--brand-orange);
}

.hero-content > p {
  max-width: 620px;
  margin-bottom: 30px;
  color: #65777e;
  font-size: 15px;
  line-height: 2.05;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  color: #61737a;
  font-size: 12px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-item svg {
  color: var(--brand-green);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 480px;
  place-items: center;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgb(52 81 94 / 10%);
  border-radius: 50%;
}

.orbit-one {
  width: 390px;
  height: 390px;
}

.orbit-two {
  width: 470px;
  height: 470px;
  border-style: dashed;
}

.phone-card {
  position: relative;
  z-index: 2;
  width: 250px;
  min-height: 450px;
  border: 8px solid var(--brand-slate-dark);
  border-radius: 38px;
  padding: 28px 22px 20px;
  background: #fff;
  box-shadow:
    0 40px 75px rgb(29 48 56 / 22%),
    inset 0 0 0 1px #e5eaec;
  transform: rotate(-3deg);
}

.phone-speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 62px;
  height: 5px;
  border-radius: 10px;
  background: #1b2d34;
  transform: translateX(-50%);
}

.phone-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
  color: var(--brand-slate);
  font-size: 12px;
  font-weight: 700;
}

.phone-logo img {
  width: 24px;
}

.phone-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 45px;
  text-align: center;
}

.status-check {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 50%;
  background: rgb(41 180 89 / 12%);
  color: var(--brand-green);
}

.phone-status strong {
  color: var(--brand-slate-dark);
  font-size: 16px;
}

.phone-status small {
  margin-top: 7px;
  color: #95a0a5;
  font-size: 11px;
}

.phone-progress {
  margin-top: 40px;
}

.progress-line {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.progress-line::before {
  position: absolute;
  top: 5px;
  right: 6px;
  left: 6px;
  height: 2px;
  background: linear-gradient(
    to left,
    var(--brand-green) 0 50%,
    #dfe5e7 50% 100%
  );
  content: "";
}

.progress-line span {
  position: relative;
  z-index: 2;
  width: 12px;
  height: 12px;
  border: 3px solid #dfe5e7;
  border-radius: 50%;
  background: #fff;
}

.progress-line .done {
  border-color: var(--brand-green);
  background: var(--brand-green);
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  color: #89969b;
  font-size: 11px;
}

.phone-action {
  margin-top: 34px;
  border-radius: 10px;
  padding: 12px;
  background: var(--brand-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 175px;
  border: 1px solid rgb(255 255 255 / 85%);
  border-radius: 15px;
  padding: 12px 14px;
  background: rgb(255 255 255 / 91%);
  box-shadow: 0 18px 45px rgb(38 62 72 / 16%);
  backdrop-filter: blur(10px);
}

.floating-card span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-card small {
  color: #8d999e;
  font-size: 11px;
}

.floating-card strong {
  margin-top: 3px;
  color: var(--brand-slate-dark);
  font-size: 12px;
}

.floating-icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: none;
  place-items: center;
  border-radius: 11px;
}

.floating-icon.orange {
  background: rgb(239 108 0 / 11%);
  color: var(--brand-orange);
}

.floating-icon.green {
  background: rgb(41 180 89 / 12%);
  color: var(--brand-green);
}

.card-warranty {
  top: 88px;
  right: -16px;
}

.card-support {
  bottom: 75px;
  left: -15px;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: #f6f8f9;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 45px;
  text-align: center;
}

.section-heading > span,
.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brand-orange);
  font-size: 12px;
  font-weight: 700;
}

.section-heading h2,
.content-title {
  margin: 0;
  color: var(--brand-slate-dark);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.55;
}

.section-heading p {
  margin: 10px 0 0;
  color: #7a8a90;
  font-size: 14px;
  line-height: 1.9;
}

.service-card {
  display: flex;
  height: 100%;
  min-height: 310px;
  flex-direction: column;
  border: 1px solid #e8edef;
  border-radius: 18px;
  padding: 28px 24px;
  background: #fff;
  box-shadow: 0 12px 40px rgb(38 62 72 / 5%);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card:hover {
  border-color: rgb(239 108 0 / 30%);
  box-shadow: 0 22px 55px rgb(38 62 72 / 11%);
  color: inherit;
  transform: translateY(-7px);
}

.service-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
}

.service-icon.orange {
  background: rgb(239 108 0 / 10%);
  color: var(--brand-orange);
}

.service-icon.green {
  background: rgb(41 180 89 / 11%);
  color: var(--brand-green);
}

.service-icon.blue {
  background: rgb(12 108 153 / 10%);
  color: #0c6c99;
}

.service-icon.slate {
  background: rgb(52 81 94 / 10%);
  color: var(--brand-slate);
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--brand-slate-dark);
  font-size: 16px;
  font-weight: 700;
}

.service-card p {
  margin: 0 0 22px;
  color: #7a8a90;
  font-size: 13px;
  line-height: 2;
}

.service-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--brand-orange);
  font-size: 12px;
  font-weight: 700;
}

.tracking-shell {
  overflow: hidden;
  border: 1px solid #e2e8ea;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 25px 70px rgb(34 55 64 / 10%);
}

.tracking-intro {
  height: 100%;
  padding: 54px 45px;
  background:
    radial-gradient(circle at 10% 10%, rgb(239 108 0 / 18%), transparent 32%),
    var(--brand-slate);
  color: #fff;
}

.tracking-intro .section-kicker {
  color: #ffc48f;
}

.tracking-intro h2 {
  margin: 0 0 17px;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.65;
}

.tracking-intro > p {
  margin: 0;
  color: #d6e0e3;
  font-size: 13px;
  line-height: 2;
}

.tracking-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 34px;
  font-size: 12px;
}

.tracking-features span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.tracking-features svg {
  color: #78e79e;
}

.tracking-form-wrap {
  padding: 44px 48px;
}

.tracking-tabs {
  display: flex;
  border-bottom: 1px solid #e7ecee;
}

.tracking-tabs button {
  position: relative;
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  padding: 15px 8px;
  background: none;
  color: #87949a;
  font-size: 13px;
  font-weight: 700;
}

.tracking-tabs button::after {
  position: absolute;
  right: 20%;
  bottom: -1px;
  left: 20%;
  height: 3px;
  border-radius: 4px 4px 0 0;
  background: transparent;
  content: "";
}

.tracking-tabs button.active {
  color: var(--brand-orange);
}

.tracking-tabs button.active::after {
  background: var(--brand-orange);
}

.tracking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 30px;
}

.form-label {
  display: block;
  margin-bottom: 9px;
  color: var(--brand-slate-dark);
  font-size: 12px;
  font-weight: 700;
}

.input-shell {
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid #dce4e7;
  border-radius: 12px;
  padding: 0 15px;
  background: #fbfcfc;
  color: #9ba7ab;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.input-shell:focus-within {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgb(239 108 0 / 8%);
  background: #fff;
}

.input-shell input {
  width: 100%;
  height: 52px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--brand-slate-dark);
  font-size: 13px;
}

.input-shell input::placeholder {
  color: #acb6ba;
}

.form-hint {
  display: block;
  margin-top: 8px;
  color: #9aa6aa;
  font-size: 11px;
  line-height: 1.8;
}

.process-section {
  position: relative;
  overflow: hidden;
  background: var(--brand-slate-dark);
}

.process-section::before {
  position: absolute;
  top: -250px;
  right: -190px;
  width: 550px;
  height: 550px;
  border: 80px solid rgb(255 255 255 / 2%);
  border-radius: 50%;
  content: "";
}

.section-heading-light h2 {
  color: #fff;
}

.section-heading-light p {
  color: #adbdc3;
}

.section-heading-light > span {
  color: #ffad69;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-grid::before {
  position: absolute;
  top: 72px;
  right: 11%;
  left: 11%;
  border-top: 1px dashed rgb(255 255 255 / 22%);
  content: "";
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-number {
  margin-bottom: 14px;
  color: rgb(255 255 255 / 10%);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.step-dot {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin: 0 auto 22px;
  border: 6px solid var(--brand-slate-dark);
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 0 1px rgb(255 255 255 / 18%);
  color: #fff;
}

.process-step h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.process-step p {
  max-width: 210px;
  margin: 0 auto;
  color: #aebdc2;
  font-size: 12px;
  line-height: 1.95;
}

.content-lead {
  max-width: 650px;
  margin: 14px 0 28px;
  color: #75868c;
  font-size: 14px;
  line-height: 2;
}

.branch-map {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  border: 1px solid #e4eaec;
  border-radius: 26px;
  background:
    radial-gradient(circle at 48% 42%, rgb(239 108 0 / 8%), transparent 42%),
    linear-gradient(145deg, rgb(255 255 255 / 70%), rgb(234 241 244 / 68%)),
    #f6f8f9;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgb(52 81 94 / 8%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(52 81 94 / 8%) 1px, transparent 1px);
  background-size: 32px 32px;
}

.iran-map-stage {
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 58px;
  left: 18px;
  overflow: visible;
}

.iran-map-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 20px 24px rgb(52 81 94 / 14%));
  shape-rendering: geometricPrecision;
}

.iran-map-shadow {
  fill: rgb(52 81 94 / 14%);
  transform: translateY(9px);
}

.iran-map-land {
  fill: url("#iranMapLand");
  stroke: rgb(52 81 94 / 42%);
  stroke-linejoin: round;
  stroke-width: 3.2;
  vector-effect: non-scaling-stroke;
}

.map-pin-svg {
  pointer-events: none;
}

.map-pin-halo {
  fill: rgb(239 108 0 / 13%);
}

.map-pin-ring {
  fill: #fff;
  stroke: rgb(239 108 0 / 38%);
  stroke-width: 1.6;
}

.map-pin-core {
  fill: var(--brand-orange);
  filter: drop-shadow(0 3px 6px rgb(239 108 0 / 36%));
}

.map-pin-svg text {
  color: var(--brand-slate);
  direction: rtl;
  dominant-baseline: middle;
  fill: var(--brand-slate);
  font-size: 15px;
  font-weight: 700;
  paint-order: stroke;
  stroke: #fff;
  stroke-linejoin: round;
  stroke-width: 4px;
}

.map-stat {
  position: absolute;
  right: 25px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e4eaec;
  border-radius: 13px;
  padding: 10px 15px;
  background: #fff;
  box-shadow: 0 12px 28px rgb(52 81 94 / 10%);
}

.map-stat strong {
  color: var(--brand-orange);
  font-size: 22px;
}

.map-stat span {
  color: #75868c;
  font-size: 11px;
}

.branch-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 26px;
}

.branch-list-all {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.branch-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 11px;
  border: 1px solid #e7ecee;
  border-radius: 13px;
  padding: 13px;
  background: #fff;
}

.branch-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.branch-row strong {
  color: var(--brand-slate-dark);
  font-size: 13px;
}

.branch-row small {
  margin-top: 3px;
  color: #909da2;
  font-size: 11px;
}

.branch-row > a {
  justify-self: start;
}

.branch-phone {
  grid-column: 2;
  color: var(--brand-orange);
  font-size: 11px;
  direction: ltr;
}

.branch-detail-link {
  display: inline-flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  border-top: 1px solid #edf1f2;
  padding-top: 10px;
  color: var(--brand-slate);
  font-size: 11px;
  font-weight: 700;
  direction: rtl;
}

.branch-detail-link svg {
  flex: none;
  color: var(--brand-orange);
}

.branch-pin {
  display: grid;
  width: 38px;
  height: 38px;
  grid-row: span 2;
  place-items: center;
  border-radius: 10px;
  background: rgb(239 108 0 / 9%);
  color: var(--brand-orange);
}

.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.text-link {
  align-items: center;
  gap: 8px;
  color: var(--brand-orange);
  font-size: 12px;
  font-weight: 700;
}

.notice-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid #e5eaec;
  border-radius: 18px;
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.notice-card:hover {
  box-shadow: 0 20px 50px rgb(38 62 72 / 10%);
  transform: translateY(-5px);
}

.notice-visual {
  display: grid;
  height: 150px;
  place-items: center;
}

.visual-1 {
  background:
    radial-gradient(circle, rgb(239 108 0 / 18%), transparent 60%), #fff5ed;
}

.visual-2 {
  background:
    radial-gradient(circle, rgb(52 81 94 / 17%), transparent 60%), #eef3f5;
}

.visual-3 {
  background:
    radial-gradient(circle, rgb(41 180 89 / 17%), transparent 60%), #eefaf2;
}

.notice-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 22px;
  background: rgb(255 255 255 / 80%);
  box-shadow: 0 16px 35px rgb(38 62 72 / 10%);
  color: var(--brand-orange);
  transform: rotate(-4deg);
}

.visual-2 .notice-icon {
  color: var(--brand-slate);
}

.visual-3 .notice-icon {
  color: var(--brand-green);
}

.notice-content {
  padding: 23px;
}

.notice-tag {
  color: var(--brand-orange);
  font-size: 11px;
  font-weight: 700;
}

.notice-content h3 {
  min-height: 52px;
  margin: 8px 0 8px;
  color: var(--brand-slate-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.notice-content p {
  margin: 0;
  color: #809096;
  font-size: 12px;
  line-height: 2;
}

.notice-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  border-top: 1px solid #edf0f1;
  padding-top: 14px;
  color: #9ba6aa;
  font-size: 11px;
}

.notice-footer a {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 8px;
  background: #f3f6f7;
  color: var(--brand-slate);
}

.contact-cta {
  background: #f6f8f9;
  padding-bottom: 80px;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  overflow: hidden;
  border-radius: 24px;
  padding: 44px 48px;
  background:
    radial-gradient(circle at 8% 20%, rgb(239 108 0 / 28%), transparent 28%),
    var(--brand-slate);
  color: #fff;
}

.contact-box > div:first-child {
  max-width: 580px;
}

.contact-box > div:first-child > span {
  color: #ffbf88;
  font-size: 12px;
  font-weight: 700;
}

.contact-box h2 {
  margin: 8px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}

.contact-box p {
  margin: 0;
  color: #d1dde1;
  font-size: 13px;
  line-height: 1.9;
}

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

.contact-button {
  display: flex;
  min-width: 195px;
  align-items: center;
  gap: 11px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgb(255 255 255 / 10%);
  transition: background 0.2s ease;
}

.contact-button:hover {
  background: rgb(255 255 255 / 17%);
  color: #fff;
}

.contact-button > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: none;
  place-items: center;
  border-radius: 11px;
  background: var(--brand-orange);
}

.contact-button.rubika > span {
  background: #00a6a6;
}

.contact-button > div {
  display: flex;
  flex-direction: column;
}

.contact-button small {
  color: #cbd8dc;
  font-size: 11px;
}

.contact-button strong {
  margin-top: 3px;
  font-size: 13px;
}

.footer {
  background: #1d3038;
  color: #b8c5ca;
}

.brand-light strong {
  color: #fff;
}

.brand-light img {
  width: 170px;
  max-height: 44px;
}

.brand-light small {
  color: #9eb0b7;
}

.brand-light .brand-divider {
  background: rgb(255 255 255 / 16%);
}

.footer-brand p {
  max-width: 340px;
  margin: 22px 0 0;
  color: #9eafb5;
  font-size: 13px;
  line-height: 2;
}

.footer-title {
  margin: 3px 0 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.footer .col-6 > a,
.footer .col-lg-2 > a {
  display: block;
  margin-bottom: 12px;
  color: #aab8bd;
  font-size: 13px;
  line-height: 1.9;
  transition: color 0.2s ease;
}

.footer .col-6 > a:hover,
.footer .col-lg-2 > a:hover {
  color: #fff;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  line-height: 1.95;
}

.footer-contact svg {
  flex: none;
  color: var(--brand-orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgb(255 255 255 / 8%);
  padding: 20px 0;
  color: #82959c;
  font-size: 12px;
  line-height: 1.9;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

@media (max-width: 1199px) {
  .hero h1 {
    font-size: 3.55rem;
  }

  .card-warranty {
    right: 5px;
  }

  .card-support {
    left: 5px;
  }

  .contact-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .hero {
    text-align: center;
  }

  .hero-content {
    margin-inline: auto;
  }

  .eyebrow,
  .hero-content .flex,
  .hero-trust {
    justify-content: center;
  }

  .hero-content > p {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 520px;
  }

  .tracking-form-wrap {
    padding: 38px 35px 42px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
  }

  .process-grid::before {
    display: none;
  }

  .branch-map {
    max-width: 570px;
    margin-inline: auto;
  }

  .contact-actions {
    width: 100%;
  }

  .contact-button {
    flex: 1;
  }
}

@media (max-width: 767px) {
  html,
  body,
  #root,
  .app {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-container {
    width: min(100% - 24px, 1180px);
  }

  .static-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .static-header nav,
  .static-footer {
    justify-content: flex-start;
  }

  .static-grid,
  .static-form fieldset {
    grid-template-columns: 1fr;
  }

  .site-container .row {
    --bs-gutter-x: 0;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .site-container .row > * {
    min-width: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .brand img {
    width: 132px;
  }

  .main-header .site-container {
    position: relative;
    display: flex;
    direction: rtl;
  }

  .main-header .brand {
    position: absolute;
    top: 50%;
    right: 0;
    max-width: 138px;
    flex: 0 0 auto;
    transform: translateY(-50%);
  }

  .main-header .brand img {
    display: block;
    width: 132px;
  }

  .main-header .mobile-menu-button {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .topbar .site-container {
    width: calc(100% - 24px);
    justify-content: center;
  }

  .topbar .site-container > a {
    display: none;
  }

  .brand-divider,
  .brand > span:last-child {
    display: none;
  }

  .hero h1 {
    font-size: 1.95rem;
    letter-spacing: 0;
  }

  .hero-content > p {
    font-size: 13px;
  }

  .hero-visual {
    min-height: 470px;
    transform: scale(0.86);
  }

  .orbit-one {
    width: 350px;
    height: 350px;
  }

  .orbit-two {
    width: 420px;
    height: 420px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading h2,
  .content-title {
    max-width: calc(100vw - 24px);
    margin-inline: auto;
    font-size: clamp(1.45rem, 7vw, 1.75rem);
    line-height: 1.75;
    overflow-wrap: anywhere;
  }

  .service-card {
    min-height: 280px;
  }

  .tracking-intro {
    padding: 40px 27px;
  }

  .tracking-form-wrap {
    padding: 30px 22px 35px;
  }

  .tracking-tabs button {
    font-size: 12px;
  }

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

  .branch-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, calc(100vw - 24px));
    margin-inline: auto;
  }

  .branch-content-column {
    order: 1;
  }

  .branch-map-column {
    order: 2;
  }

  .branch-map {
    width: min(100%, calc(100vw - 24px));
    max-width: 100%;
    margin-inline: auto;
  }

  .contact-box {
    padding: 34px 25px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-button {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .branch-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-content .button {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .hero-visual {
    margin-inline: -35px;
  }

  .floating-card {
    min-width: 158px;
  }

  .card-warranty {
    right: 0;
  }

  .card-support {
    left: 0;
  }

  .branch-map {
    min-height: 390px;
  }

  .iran-map-stage {
    right: 22px;
    left: 22px;
  }
}
