.nav {
  gap: 1rem;
}

.arashpro-nav-primary {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.arashpro-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo__image {
  width: min(100%, 140px);
  max-width: 140px;
  max-height: 56px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 20px var(--ui-shadow);
}

.nav-logo__text {
  font-size: 1.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.arashpro-menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ui-soft-border);
  border-radius: 16px;
  background: var(--ui-soft-bg);
  color: var(--ui-strong);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.arashpro-menu-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--ui-accent-border);
  box-shadow: 0 10px 28px var(--ui-shadow);
}

.arashpro-menu-toggle__box {
  position: relative;
  width: 1.35rem;
  height: 1rem;
}

.arashpro-menu-toggle__line {
  position: absolute;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.25s ease, top 0.25s ease;
}

.arashpro-menu-toggle__line--top {
  top: 0;
  width: 100%;
}

.arashpro-menu-toggle__line--middle {
  top: calc(50% - 1px);
  width: 72%;
}

.arashpro-menu-toggle__line--bottom {
  top: calc(100% - 2px);
  width: 100%;
}

.arashpro-menu-toggle.is-active .arashpro-menu-toggle__line--top {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}

.arashpro-menu-toggle.is-active .arashpro-menu-toggle__line--middle {
  opacity: 0;
  transform: translateX(6px);
}

.arashpro-menu-toggle.is-active .arashpro-menu-toggle__line--bottom {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}

.arashpro-menu {
  display: flex;
  align-items: center;
}

.arashpro-menu-list {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.arashpro-menu-list li {
  margin: 0;
}

.arashpro-menu-list a {
  color: var(--ui-nav-link);
  font-size: 0.86rem;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: color 0.2s ease;
}

.arashpro-menu-list a:hover,
.arashpro-menu-list .current-menu-item a {
  color: var(--c-accent);
}

.arashpro-footer-menu {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}

.arashpro-footer-menu a {
  color: var(--ui-muted-strong);
}

.arashpro-site-footer {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
  padding: 0 1.5rem 2rem;
}

.arashpro-site-footer__shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  background:
    radial-gradient(circle at top right, rgba(0, 229, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(10, 14, 25, 0.98), rgba(6, 8, 16, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: 0 24px 64px rgba(2, 6, 23, 0.22);
}

.arashpro-site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.7fr) minmax(220px, 0.7fr);
  gap: 2rem;
  align-items: start;
}

.arashpro-site-footer__logo {
  margin-bottom: 1rem;
}

.arashpro-site-footer__title,
.arashpro-site-footer__heading {
  color: var(--c-text);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.arashpro-site-footer__title {
  font-size: 1.2rem;
  line-height: 1.8;
}

.arashpro-site-footer__heading {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.arashpro-site-footer__about {
  margin-top: 0.9rem;
  color: var(--ui-muted-strong);
  font-size: 0.95rem;
  line-height: 2;
  max-width: 60ch;
}

.arashpro-site-footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.arashpro-site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 14px;
  border: 1px solid var(--ui-soft-border);
  background: var(--ui-soft-bg);
  color: var(--ui-strong);
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.arashpro-site-footer__social-link svg {
  width: 1.15rem;
  height: 1.15rem;
}

.arashpro-site-footer__social-link:hover {
  transform: translateY(-2px);
  color: var(--c-accent);
  border-color: var(--ui-accent-border);
  box-shadow: 0 12px 28px var(--ui-shadow);
}

.arashpro-site-footer__social-link[aria-label="اینستاگرام"]:hover {
  color: #e1306c;
}

.arashpro-site-footer__social-link[aria-label="لینکدین"]:hover {
  color: #0a66c2;
}

.arashpro-footer-links {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.arashpro-footer-links a {
  color: var(--ui-muted-strong);
  font-size: 0.9rem;
  line-height: 1.9;
  transition: color 0.2s ease, transform 0.2s ease;
}

.arashpro-footer-links a:hover {
  color: var(--c-accent);
  transform: translateX(-2px);
}

.arashpro-site-footer__bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.9rem 1.5rem;
  color: var(--c-muted);
  font-size: 0.82rem;
  line-height: 1.9;
}

.arashpro-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
}

.arashpro-mobile-menu.is-open {
  pointer-events: auto;
}

.arashpro-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: var(--ui-overlay);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.arashpro-mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 340px);
  height: 100%;
  padding: 1.25rem;
  background: var(--ui-panel-bg);
  border-left: 1px solid var(--ui-soft-border);
  box-shadow: -18px 0 50px var(--ui-shadow);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.arashpro-mobile-menu.is-open .arashpro-mobile-menu__backdrop {
  opacity: 1;
}

.arashpro-mobile-menu.is-open .arashpro-mobile-menu__panel {
  transform: translateX(0);
}

.arashpro-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.arashpro-mobile-menu__list,
.arashpro-mobile-menu__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.arashpro-mobile-menu__list li {
  margin-bottom: 0.6rem;
}

.arashpro-mobile-menu__list a {
  display: block;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: var(--ui-chip-bg);
  color: var(--ui-strong);
  font-weight: 700;
}

.arashpro-mobile-menu__actions {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.arashpro-mobile-menu__actions .btn-primary {
  width: 100%;
  justify-content: center;
  display: inline-flex;
}

.arashpro-landing-insights {
  padding: 2rem 1.5rem 6rem;
}

.arashpro-landing-insights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.arashpro-landing-insights__card {
  background: rgba(17, 24, 39, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  padding: 1.5rem;
}

.arashpro-landing-insights__card h3 {
  font-size: 1.05rem;
  font-weight: 800;
}

.arashpro-landing-insights__card p {
  margin-top: 0.7rem;
  color: rgba(203, 213, 225, 0.74);
  line-height: 1.9;
  font-size: 0.9rem;
}

.arashpro-landing-insights__card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--c-accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-home {
  padding-inline: 1.5rem;
}

.hero-home__content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 2rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-home__tagline {
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 700;
  color: rgba(241, 245, 249, 0.85);
  margin-top: 0.5rem;
}

.hero-home__visual {
  display: flex;
  justify-content: center;
}

.hero-home__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  width: min(100%, 430px);
  padding: 1.5rem 1rem 0;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.92), rgba(6, 8, 16, 0.4));
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.hero-home__image-wrap::after {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 18%;
  background: linear-gradient(180deg, rgba(6, 8, 16, 0), rgba(6, 8, 16, 0.98));
}

.hero-home__image-wrap img {
  position: relative;
  z-index: 1;
  max-height: 520px;
  width: auto;
}

.arashpro-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.arashpro-showcase-card {
  position: relative;
  padding: 1.7rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.94), rgba(8, 12, 22, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.18);
}

.arashpro-showcase-card__badge {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.12);
  color: var(--c-accent);
  font-size: 0.76rem;
  font-weight: 700;
}

.arashpro-showcase-card h3 {
  margin-top: 1rem;
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 800;
}

.arashpro-showcase-card p {
  margin-top: 0.75rem;
  color: rgba(203, 213, 225, 0.74);
  line-height: 1.95;
  font-size: 0.92rem;
}

.arashpro-showcase-card__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  color: rgba(148, 163, 184, 0.92);
  font-size: 0.8rem;
}

.arashpro-showcase-card__meta a {
  color: var(--c-accent);
  font-weight: 700;
}

.arashpro-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3rem;
  padding: 0.3rem;
  border: 1px solid var(--ui-soft-border);
  border-radius: 999px;
  background: var(--ui-soft-bg);
  color: var(--ui-strong);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.arashpro-theme-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--ui-accent-border);
  box-shadow: 0 10px 28px var(--ui-shadow);
}

.arashpro-theme-toggle__track {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 4.1rem;
  height: 2.35rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(124, 58, 237, 0.16));
}

.arashpro-theme-toggle__track::before {
  content: "";
  position: absolute;
  top: 0.22rem;
  right: 0.22rem;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: var(--ui-surface);
  box-shadow: 0 8px 18px var(--ui-shadow);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

[data-theme="light"] .arashpro-theme-toggle__track::before {
  transform: translateX(-1.56rem);
}

.arashpro-theme-toggle__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  align-items: center;
  justify-content: center;
}

.arashpro-theme-toggle__icon svg {
  width: 100%;
  height: 100%;
}

.arashpro-theme-toggle__icon--sun {
  color: #f59e0b;
}

.arashpro-theme-toggle__icon--moon {
  color: #8b5cf6;
}

.arashpro-theme-toggle--mobile {
  width: 100%;
  justify-content: space-between;
  border-radius: 18px;
  padding: 0.45rem 0.55rem;
}

.arashpro-theme-toggle__label {
  font-size: 0.86rem;
  font-weight: 700;
}

.arashpro-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.arashpro-portfolio-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--ui-surface);
  border: 1px solid var(--ui-soft-border);
  box-shadow: 0 18px 44px var(--ui-shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.arashpro-portfolio-card:hover {
  transform: translateY(-8px);
  border-color: var(--ui-accent-border);
  box-shadow: 0 24px 56px var(--ui-shadow-strong);
}

.arashpro-portfolio-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ui-soft-bg);
}

.arashpro-portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.arashpro-portfolio-card:hover .arashpro-portfolio-card__media img {
  transform: scale(1.05);
}

.arashpro-portfolio-card__body {
  padding: 1rem 1rem 1.15rem;
  text-align: center;
}

.arashpro-portfolio-card__body h3 {
  color: var(--ui-strong);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.8;
}

.arashpro-floating-contact {
  position: fixed;
  inset-inline-end: 1.25rem;
  inset-inline-start: auto;
  bottom: 1.25rem;
  z-index: 140;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.arashpro-floating-contact__bubble {
  position: relative;
  width: min(18rem, calc(100vw - 5.5rem));
  margin-bottom: 0.15rem;
  padding: 0.95rem 1rem 0.95rem 2.2rem;
  border-radius: 18px;
  background: var(--ui-surface);
  border: 1px solid var(--ui-accent-border);
  box-shadow: 0 18px 44px var(--ui-shadow-strong);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px) scale(0.96);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease;
}

.arashpro-floating-contact__bubble::after {
  content: "";
  position: absolute;
  right: calc(3.65rem / 2 - 6px);
  left: auto;
  bottom: -6px;
  width: 12px;
  height: 12px;
  background: var(--ui-surface);
  border-right: 1px solid var(--ui-accent-border);
  border-bottom: 1px solid var(--ui-accent-border);
  transform: rotate(45deg);
}

.arashpro-floating-contact__bubble.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.arashpro-floating-contact__bubble-close {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  width: 1.6rem;
  height: 1.6rem;
  border: 0;
  border-radius: 999px;
  background: var(--ui-soft-bg);
  color: var(--ui-muted-strong);
  font-size: 0.8rem;
  cursor: pointer;
}

.arashpro-floating-contact__bubble-title {
  color: var(--ui-strong);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.7;
}

.arashpro-floating-contact__bubble-text {
  margin-top: 0.35rem;
  color: var(--ui-muted-strong);
  font-size: 0.82rem;
  line-height: 1.9;
}

.arashpro-floating-contact__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.65rem;
  height: 3.65rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--c-accent), #38bdf8);
  color: #03131b;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(0, 229, 255, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.arashpro-floating-contact__btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 46px rgba(0, 229, 255, 0.34);
}

.arashpro-floating-contact__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 1.45rem;
  height: 1.45rem;
}

.arashpro-floating-contact__icon svg {
  width: 100%;
  height: 100%;
}

.arashpro-floating-contact__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 229, 255, 0.35);
  animation: arashproFabPulse 2.2s ease-out infinite;
}

@keyframes arashproFabPulse {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

.arashpro-lead-popup .popup-box {
  max-width: 430px;
}

.arashpro-lead-form .btn-submit {
  margin-top: 0.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(0, 229, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(8, 12, 22, 0.94));
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.2);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: auto 1.3rem 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.18), transparent);
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 229, 255, 0.28);
  box-shadow: 0 28px 64px rgba(2, 6, 23, 0.28);
}

.price-card-popular {
  transform: scale(1.04);
  border-color: rgba(0, 229, 255, 0.34);
  background:
    radial-gradient(circle at top right, rgba(0, 229, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(19, 29, 52, 0.98), rgba(9, 14, 28, 0.96));
  box-shadow: 0 26px 72px rgba(0, 229, 255, 0.16);
}

.price-card-popular:hover {
  transform: translateY(-10px) scale(1.04);
}

.popular-badge {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--c-accent), #38bdf8);
  color: #03131b;
  font-size: 0.74rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 229, 255, 0.22);
}

.price-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-start;
}

.price-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--c-text);
  letter-spacing: -0.03em;
}

.price-service {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: var(--c-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.price-amount {
  margin-top: 1.4rem;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.05em;
  color: var(--c-text);
}

.price-summary {
  margin-top: 0.75rem;
  color: var(--c-accent);
  font-size: 0.88rem;
  font-weight: 800;
}

.price-desc {
  margin-top: 1rem;
  min-height: 4.8rem;
  color: var(--c-muted);
  line-height: 1.95;
  font-size: 0.92rem;
}

.price-features {
  margin-top: 1.3rem;
  margin-bottom: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--ui-muted-strong);
  font-size: 0.88rem;
  line-height: 1.9;
}

.price-feature .chk {
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.14);
  color: var(--c-success);
  font-size: 0.76rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.btn-order {
  margin-top: auto;
  width: 100%;
  min-height: 3.4rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--c-text);
  font-family: "IRANYekanXVF", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.btn-order:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.08);
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.18);
}

.btn-order-primary {
  background: linear-gradient(135deg, var(--c-accent), #38bdf8);
  color: #03131b;
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(0, 229, 255, 0.2);
}

.btn-order-primary:hover {
  background: linear-gradient(135deg, #67e8f9, var(--c-accent));
  color: #03131b;
  box-shadow: 0 22px 42px rgba(0, 229, 255, 0.24);
}

@media (max-width: 780px) {
  .arashpro-nav-primary {
    gap: 0.75rem;
  }

  .arashpro-menu {
    display: none;
  }

  .nav {
    padding-inline: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .arashpro-menu-toggle {
    display: inline-flex;
  }

  .hero-home__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-home__copy .hero-actions,
  .hero-home__copy .hero-stats {
    justify-content: center;
  }

  .hero-home__image-wrap {
    width: min(100%, 340px);
  }

  .arashpro-nav-actions {
    gap: 0.5rem;
    margin-right: 0;
  }

  .arashpro-theme-toggle:not(.arashpro-theme-toggle--mobile) {
    min-height: 2.75rem;
  }

  .arashpro-theme-toggle:not(.arashpro-theme-toggle--mobile) .arashpro-theme-toggle__track {
    width: 3.45rem;
    height: 2.1rem;
  }

  .arashpro-theme-toggle:not(.arashpro-theme-toggle--mobile) .arashpro-theme-toggle__track::before {
    width: 1.66rem;
    height: 1.66rem;
  }

  [data-theme="light"] .arashpro-theme-toggle:not(.arashpro-theme-toggle--mobile) .arashpro-theme-toggle__track::before {
    transform: translateX(-1.22rem);
  }

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

  .price-card-popular,
  .price-card-popular:hover {
    transform: none;
  }

  .price-desc {
    min-height: auto;
  }

  .arashpro-site-footer {
    padding-inline: 1rem;
  }

  .arashpro-site-footer__shell {
    padding: 1.5rem;
    border-radius: 24px;
  }

  .arashpro-site-footer__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .arashpro-site-footer__bottom {
    flex-direction: column;
  }

  .arashpro-floating-contact {
    inset-inline-end: 1rem;
    inset-inline-start: auto;
    bottom: 1rem;
    align-items: flex-start;
  }

  .arashpro-floating-contact__bubble {
    display: none !important;
  }
}

:root {
  --ui-surface: rgba(17, 24, 39, 0.92);
  --ui-soft-bg: rgba(255, 255, 255, 0.04);
  --ui-chip-bg: rgba(15, 23, 42, 0.85);
  --ui-panel-bg: rgba(6, 8, 16, 0.97);
  --ui-soft-border: rgba(148, 163, 184, 0.18);
  --ui-accent-border: rgba(0, 229, 255, 0.28);
  --ui-nav-link: rgba(241, 245, 249, 0.82);
  --ui-muted-strong: rgba(226, 232, 240, 0.76);
  --ui-strong: rgba(241, 245, 249, 0.96);
  --ui-overlay: rgba(2, 6, 23, 0.72);
  --ui-shadow: rgba(2, 6, 23, 0.22);
  --ui-shadow-strong: rgba(2, 6, 23, 0.34);
}

[data-theme="light"] {
  --c-bg: #f4f7fb;
  --c-surface: #ffffff;
  --c-card: #ffffff;
  --c-border: #dbe4f0;
  --c-text: #0f172a;
  --c-muted: #475569;
  --glow-cyan: 0 18px 44px rgba(14, 165, 233, 0.18);
  --glow-purple: 0 18px 44px rgba(124, 58, 237, 0.12);
  --ui-surface: rgba(255, 255, 255, 0.94);
  --ui-soft-bg: rgba(255, 255, 255, 0.72);
  --ui-chip-bg: rgba(241, 245, 249, 0.95);
  --ui-panel-bg: rgba(250, 252, 255, 0.98);
  --ui-soft-border: rgba(148, 163, 184, 0.22);
  --ui-accent-border: rgba(14, 165, 233, 0.24);
  --ui-nav-link: rgba(15, 23, 42, 0.8);
  --ui-muted-strong: rgba(71, 85, 105, 0.88);
  --ui-strong: rgba(15, 23, 42, 0.96);
  --ui-overlay: rgba(148, 163, 184, 0.28);
  --ui-shadow: rgba(148, 163, 184, 0.18);
  --ui-shadow-strong: rgba(148, 163, 184, 0.24);
}

[data-theme="light"] body::before {
  opacity: 0.12;
}

[data-theme="light"] .grid-bg {
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.06) 1px, transparent 1px);
}

[data-theme="light"] .grid-bg::after {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(14, 165, 233, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
}

[data-theme="light"] .nav {
  background: rgba(255, 255, 255, 0.76);
  border-bottom-color: rgba(148, 163, 184, 0.16);
  box-shadow: 0 10px 30px rgba(148, 163, 184, 0.14);
}

[data-theme="light"] .nav-logo__image {
  box-shadow: 0 12px 28px rgba(148, 163, 184, 0.18);
}

[data-theme="light"] .arashpro-menu-list a {
  color: #0f172a;
  text-shadow: none;
}

[data-theme="light"] .hero-home__tagline,
[data-theme="light"] .hero-sub,
[data-theme="light"] .section-desc,
[data-theme="light"] .service-desc,
[data-theme="light"] .service-feature,
[data-theme="light"] .step-desc,
[data-theme="light"] .testimonial-text,
[data-theme="light"] .cta-desc,
[data-theme="light"] .arashpro-showcase-card p,
[data-theme="light"] .arashpro-showcase-card__meta,
[data-theme="light"] .arashpro-landing-insights__card p {
  color: var(--c-muted);
}

[data-theme="light"] .hero-home__image-wrap,
[data-theme="light"] .arashpro-showcase-card,
[data-theme="light"] .arashpro-landing-insights__card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.92));
  border-color: rgba(148, 163, 184, 0.18);
}

[data-theme="light"] .hero-home__image-wrap::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(241, 245, 249, 0.96));
}

[data-theme="light"] .service-card,
[data-theme="light"] .price-card,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .cta-box,
[data-theme="light"] .step-num,
[data-theme="light"] .popup-box,
[data-theme="light"] .order-summary,
[data-theme="light"] .payment-failed-banner {
  box-shadow: 0 20px 42px rgba(148, 163, 184, 0.14);
}

[data-theme="light"] .hero-badge,
[data-theme="light"] .service-select-btn.selected,
[data-theme="light"] .service-select-btn:hover,
[data-theme="light"] .payment-btn.selected,
[data-theme="light"] .payment-btn:hover,
[data-theme="light"] .pricing-hint {
  background: rgba(14, 165, 233, 0.08);
}

[data-theme="light"] .btn-secondary {
  background: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .arashpro-site-footer__shell {
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.96));
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 22px 52px rgba(148, 163, 184, 0.16);
}

[data-theme="light"] .arashpro-site-footer__bottom {
  border-top-color: rgba(148, 163, 184, 0.18);
}

[data-theme="light"] .arashpro-site-footer__social-link {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(148, 163, 184, 0.18);
}

[data-theme="light"] .price-card {
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.96));
  border-color: rgba(148, 163, 184, 0.18);
}

[data-theme="light"] .price-card-popular {
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(239, 246, 255, 0.98));
  border-color: rgba(14, 165, 233, 0.24);
}

[data-theme="light"] .price-service {
  background: rgba(241, 245, 249, 0.95);
  border-color: rgba(148, 163, 184, 0.18);
  color: #334155;
}

[data-theme="light"] .btn-order {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(148, 163, 184, 0.18);
}

[data-theme="light"] .arashpro-floating-contact__bubble {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(148, 163, 184, 0.2);
}

[data-theme="light"] .arashpro-floating-contact__bubble::after {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(14, 165, 233, 0.2);
}

