:root {
  --lrb-text: #0f172a;
  --lrb-muted: rgba(255, 255, 255, 0.85);
  --lrb-surface: #ffffff;
  --lrb-surface-muted: #f8fafc;
  --lrb-border: rgba(15, 23, 42, 0.08);
  --lrb-hero-1: #cd2c3e;
  --lrb-hero-2: #8c0e1c;
  --lrb-radius-xl: 48px;
  --lrb-radius-lg: 24px;
  --lrb-shadow: 0 22px 50px rgba(17, 24, 39, 0.14);
  --lrb-header-offset: 112px;
}

@font-face {
  font-family: "YekanBakhFaNum";
  src: url("../fonts/YekanBakhFaNum-Regular.woff") format("woff"),
    url("../fonts/YekanBakhFaNum-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  color: var(--lrb-text);
  background: #fff;
  font-family: "YekanBakhFaNum", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.7;
  direction: rtl;
  text-align: right;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

.lrb-lock {
  overflow: hidden;
}

.lrb-main {
  padding-top: var(--lrb-header-offset);
}

/* Header */
.lrb-site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.lrb-has-hero .lrb-site-header {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.lrb-has-hero .lrb-site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.lrb-has-hero .lrb-site-header.is-scrolled .lrb-menu {
  color: var(--lrb-text);
}

.lrb-has-hero .lrb-site-header.is-scrolled .lrb-btn--primary {
  background: var(--lrb-hero-1);
  color: #fff;
}

.lrb-has-hero .lrb-site-header.is-scrolled .lrb-btn--outline {
  color: var(--lrb-hero-1);
  border-color: rgba(205, 44, 62, 0.35);
}

.lrb-has-hero .lrb-site-header.is-scrolled .lrb-btn--ghost {
  color: var(--lrb-text);
  border-color: rgba(15, 23, 42, 0.12);
}

.lrb-has-hero .lrb-site-header.is-scrolled .lrb-burger {
  border-color: rgba(15, 23, 42, 0.12);
  background: #fff;
}

.lrb-has-hero .lrb-site-header.is-scrolled .lrb-burger__lines,
.lrb-has-hero .lrb-site-header.is-scrolled .lrb-burger__lines::before,
.lrb-has-hero .lrb-site-header.is-scrolled .lrb-burger__lines::after {
  background: var(--lrb-text);
}

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

.lrb-header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lrb-brand a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--lrb-hero-1);
  padding: 6px;
}

.lrb-has-hero .lrb-site-header:not(.is-scrolled) .lrb-brand a {
  background: transparent;
  padding: 0;
}

.lrb-brand img,
.lrb-brand .custom-logo {
  display: block;
  height: 48px;
  width: auto;
}

.lrb-brand__fallback-logo {
  display: block;
}

.lrb-nav--desktop {
  display: block;
}

.lrb-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  color: var(--lrb-text);
  font-size: 15px;
}

.lrb-has-hero .lrb-menu {
  color: #fff;
}

.lrb-menu a {
  opacity: 0.9;
}

.lrb-menu .current-menu-item > a,
.lrb-menu a:hover {
  opacity: 1;
}

.lrb-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lrb-btn {
  border: 1px solid transparent;
  border-radius: 15px;
  padding: 10px 16px;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease,
    border-color 160ms ease, color 160ms ease;
  white-space: nowrap;
}

.lrb-btn:hover {
  transform: translateY(-1px);
}

.lrb-btn--primary {
  background: var(--lrb-hero-1);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.lrb-has-hero .lrb-btn--primary {
  background: #fff;
  color: var(--lrb-hero-2);
}

.lrb-btn--outline {
  background: transparent;
  color: var(--lrb-hero-1);
  border-color: rgba(205, 44, 62, 0.35);
}

.lrb-has-hero .lrb-btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.lrb-btn--ghost {
  background: transparent;
  color: var(--lrb-text);
  border-color: rgba(15, 23, 42, 0.12);
}

.lrb-has-hero .lrb-btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.lrb-btn--block {
  width: 100%;
}

.lrb-btn--lg {
  padding: 13px 22px;
  font-size: 15px;
}

.lrb-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.lrb-icon--download {
  -webkit-mask-image: url("../images/leading-icon.png");
  mask-image: url("../images/leading-icon.png");
}

.lrb-icon--signup {
  -webkit-mask-image: url("../images/leading-icon-2.png");
  mask-image: url("../images/leading-icon-2.png");
}

.lrb-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  cursor: pointer;
}

.lrb-has-hero .lrb-burger {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.lrb-burger__lines {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--lrb-text);
  margin: 0 auto;
  position: relative;
}

.lrb-has-hero .lrb-burger__lines {
  background: #fff;
}

.lrb-burger__lines::before,
.lrb-burger__lines::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--lrb-text);
  left: 0;
}

.lrb-has-hero .lrb-burger__lines::before,
.lrb-has-hero .lrb-burger__lines::after {
  background: #fff;
}

.lrb-burger__lines::before {
  top: -6px;
}

.lrb-burger__lines::after {
  top: 6px;
}

/* Mobile menu */
.lrb-mobile-menu {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}

.lrb-mobile-menu.is-open {
  display: block;
}

.lrb-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
}

.lrb-mobile-menu__panel {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: min(360px, 92vw);
  background: #fff;
  border-radius: 24px;
  margin: 12px;
  padding: 18px;
  box-shadow: var(--lrb-shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lrb-mobile-menu__close {
  align-self: flex-start;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--lrb-border);
  background: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.lrb-menu--mobile {
  color: var(--lrb-text);
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid var(--lrb-border);
  border-bottom: 1px solid var(--lrb-border);
}

.lrb-menu--mobile > li {
  border-bottom: 1px solid var(--lrb-border);
}

.lrb-menu--mobile > li:last-child {
  border-bottom: 0;
}

.lrb-menu--mobile a {
  display: flex;
  justify-content: space-between;
  padding: 14px 6px;
  opacity: 1;
}

.lrb-mobile-menu__ctas {
  margin-top: auto;
  display: grid;
  gap: 12px;
}

.lrb-mobile-menu__ctas .lrb-btn--primary {
  background: var(--lrb-hero-1);
  color: #fff;
  box-shadow: none;
}

.lrb-mobile-menu__ctas .lrb-btn--outline {
  border-color: rgba(205, 44, 62, 0.35);
  color: var(--lrb-hero-1);
}

/* Hero */
.lrb-hero {
  position: relative;
  color: #fff;
  margin-top: calc(-1 * var(--lrb-header-offset));
  padding-top: calc(var(--lrb-header-offset) + 52px);
  padding-bottom: 110px;
  overflow: hidden;
}

.lrb-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/group-47435.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.lrb-hero--guide .lrb-hero__bg {
  background: linear-gradient(120deg, #b065ff 0%, var(--lrb-hero-2) 75%);
}

.lrb-hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  direction: ltr;
}

.lrb-hero-content {
  direction: rtl;
  max-width: 560px;
}

.lrb-hero-label {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  font-weight: 500;
}

.lrb-hero-label .lrb-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.lrb-hero-kicker {
  margin: 0 0 10px;
  opacity: 0.9;
  font-size: 14px;
}

.lrb-hero-title {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.25;
}

.lrb-hero-text {
  margin: 0 0 22px;
  color: var(--lrb-muted);
}

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

.lrb-btn--hero-cta {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  box-shadow: none;
  min-width: 260px;
  padding: 16px 44px;
}

.lrb-hero-art {
  position: relative;
  width: min(560px, 100%);
}

.lrb-hero-art__phones {
  display: block;
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.28));
}

.lrb-hero-art__icons {
  position: absolute;
  inset: -40px -70px auto auto;
  width: 70%;
  max-width: 420px;
  pointer-events: none;
  opacity: 0.9;
}

/* Surface */
.lrb-surface {
  position: relative;
  margin-top: -70px;
  background: var(--lrb-surface);
  border-radius: var(--lrb-radius-xl) var(--lrb-radius-xl) 0 0;
  padding: 70px 0 90px;
}

.lrb-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 70px;
}

.lrb-feature {
  text-align: center;
  padding: 22px 14px;
}

.lrb-feature__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
}

.lrb-feature__title {
  margin: 0 0 6px;
  font-size: 16px;
}

.lrb-feature__text {
  margin: 0;
  color: rgba(15, 23, 42, 0.65);
  font-size: 13px;
}

.lrb-section-title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.35;
  color: var(--lrb-text);
}

.lrb-section-text {
  margin: 0;
  color: rgba(15, 23, 42, 0.65);
}

.lrb-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  padding: 60px 0;
  direction: ltr;
}

.lrb-split--reverse {
  flex-direction: row-reverse;
}

.lrb-split__text {
  direction: rtl;
  max-width: 520px;
}

.lrb-split__media img {
  display: block;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.12);
}

/* Tabs */
.lrb-tabs__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  overflow: hidden;
  width: min(440px, 100%);
  margin-bottom: 16px;
}

.lrb-tab {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 14px;
  font-family: inherit;
  cursor: pointer;
}

.lrb-tab.is-active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.lrb-download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
}

.lrb-download-item__hint {
  opacity: 0.8;
  font-size: 13px;
}

/* Guide steps */
.lrb-step-grid {
  display: grid;
  gap: 30px;
}

.lrb-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  direction: ltr;
  padding: 26px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.lrb-step--reverse {
  flex-direction: row-reverse;
}

.lrb-step__text {
  direction: rtl;
  max-width: 540px;
}

.lrb-step__title {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--lrb-text);
}

.lrb-step__desc {
  margin: 0;
  color: rgba(15, 23, 42, 0.65);
}

.lrb-step__media img {
  display: block;
  border-radius: 18px;
  background: var(--lrb-surface-muted);
}

/* Contact */
.lrb-contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.lrb-contact-list li span {
  opacity: 0.9;
}

.lrb-info-grid {
  display: grid;
  gap: 26px;
}

.lrb-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  background: #fff;
  direction: ltr;
}

.lrb-info__text {
  direction: rtl;
}

.lrb-info__media img {
  display: block;
}

/* Content */
.lrb-content {
  padding: 40px 0 90px;
}

.lrb-page-title {
  margin: 0 0 18px;
  font-size: 28px;
}

.lrb-wp-content {
  color: rgba(15, 23, 42, 0.82);
}

.lrb-elementor-fullwidth {
  padding: 0;
}

/* Footer */
.lrb-footer-top {
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.lrb-footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 64px 0;
  direction: ltr;
}

.lrb-footer-badges {
  display: flex;
  gap: 26px;
}

.lrb-badge {
  width: 164px;
  height: 164px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
}

.lrb-footer-right {
  display: flex;
  align-items: center;
  gap: 48px;
  direction: rtl;
}

.lrb-footer-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lrb-footer-logo {
  width: 36px;
  height: 36px;
  display: block;
}

.lrb-footer-brand a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--lrb-hero-1);
  padding: 6px;
}

.lrb-footer-brand img,
.lrb-footer-brand .custom-logo {
  display: block;
  height: 48px;
  width: auto;
}

.lrb-menu--footer {
  color: rgba(15, 23, 42, 0.7);
  gap: 46px;
  font-size: 16px;
}

.lrb-menu--footer a {
  opacity: 1;
  display: inline-block;
  padding-bottom: 8px;
}

.lrb-menu--footer .current-menu-item > a {
  color: var(--lrb-hero-1);
  font-weight: 600;
  position: relative;
}

.lrb-menu--footer .current-menu-item > a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: rgba(205, 44, 62, 0.55);
}

.lrb-footer-bottom {
  background: var(--lrb-hero-1);
  color: #fff;
  padding: 18px 0;
}

.lrb-footer-copy {
  margin: 0;
  font-size: 13px;
  text-align: center;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 1024px) {
  .lrb-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lrb-split {
    gap: 34px;
  }
  .lrb-hero-inner {
    gap: 40px;
  }
}

@media (max-width: 820px) {
  :root {
    --lrb-header-offset: 92px;
  }

  .lrb-nav--desktop,
  .lrb-header-cta {
    display: none;
  }

  .lrb-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .lrb-hero-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .lrb-hero-art {
    width: min(520px, 100%);
    margin-inline: auto;
  }

  .lrb-hero-title {
    font-size: 30px;
  }

  .lrb-feature-grid {
    grid-template-columns: 1fr;
  }

  .lrb-split,
  .lrb-step,
  .lrb-info {
    flex-direction: column;
    align-items: stretch;
  }

  .lrb-split--reverse,
  .lrb-step--reverse {
    flex-direction: column;
  }

  .lrb-footer-top-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .lrb-footer-badges {
    justify-content: center;
    flex-wrap: wrap;
  }

  .lrb-footer-right {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .lrb-menu--footer {
    justify-content: center;
    flex-wrap: wrap;
  }
}
