:root {
  --bg: #030712;
  --panel: rgba(8, 15, 30, 0.78);
  --panel-soft: rgba(15, 23, 42, 0.58);
  --card: rgba(15, 23, 42, 0.72);
  --card-strong: rgba(15, 23, 42, 0.92);
  --border: rgba(148, 163, 184, 0.18);
  --border-strong: rgba(148, 163, 184, 0.34);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-light: rgba(226, 232, 240, 0.76);
  --blue: #38bdf8;
  --blue-2: #2563eb;
  --violet: #8b5cf6;
  --purple: #c084fc;
  --green: #34d399;
  --yellow: #facc15;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --gradient: linear-gradient(135deg, #38bdf8 0%, #2563eb 45%, #8b5cf6 100%);
  --gradient-text: linear-gradient(135deg, #7dd3fc 0%, #60a5fa 30%, #a78bfa 70%, #e879f9 100%);
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 5%, rgba(139, 92, 246, 0.30), transparent 28%),
    radial-gradient(circle at 16% 14%, rgba(37, 99, 235, 0.28), transparent 26%),
    radial-gradient(circle at 45% 62%, rgba(56, 189, 248, 0.10), transparent 30%),
    #030712;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html[lang="fa"] body {
  font-family: Vazirmatn, Inter, system-ui, sans-serif;
}

html[lang="fa"] { direction: rtl; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 78%);
  opacity: 0.42;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 34%);
  z-index: -1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}

.icon-sm { width: 16px; height: 16px; }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: orb-drift 22s ease-in-out infinite;
}

.orb-a {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -40px;
  background: rgba(139, 92, 246, 0.28);
}

.orb-b {
  width: 340px;
  height: 340px;
  top: 18%;
  left: -80px;
  background: rgba(37, 99, 235, 0.26);
  animation-delay: -7s;
}

.orb-c {
  width: 280px;
  height: 280px;
  bottom: 8%;
  right: 18%;
  background: rgba(56, 189, 248, 0.16);
  animation-delay: -13s;
}

@keyframes orb-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(24px, -30px, 0) scale(1.08); }
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 64px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: rgba(3, 7, 18, 0.78);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  margin: 0 auto;
  padding: 0;
}

.nav.is-scrolled {
  box-shadow: 0 18px 50px rgba(0,0,0,0.38);
  border-color: var(--border-strong);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.34);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(248,250,252,0.76);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a:hover { color: #fff; }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 99px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

html[lang="fa"] .nav-links a::after { transform-origin: right; }

.nav-links a:hover::after { transform: scaleX(1); }

.nav-drawer-cta { display: none; }

.nav-end {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  border-color: var(--border-strong);
  background: rgba(255,255,255,0.11);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle .icon-close { display: none; }
.nav.is-open .nav-toggle .icon-menu { display: none; }
.nav.is-open .nav-toggle .icon-close { display: block; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 56px;
  align-items: center;
  padding: 86px 28px 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(15,23,42,0.60);
  color: rgba(226,232,240,0.86);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(52,211,153,0.75);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.078em;
  font-weight: 900;
}

html[lang="fa"] .hero h1 { letter-spacing: -0.04em; line-height: 1.12; }

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  margin: 24px 0 0;
  max-width: 610px;
  color: var(--muted-light);
  font-size: 19px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gradient); box-shadow: 0 18px 52px rgba(37,99,235,.34); }
.btn-primary:hover { box-shadow: 0 22px 60px rgba(37,99,235,.46); }
.btn-secondary { background: rgba(15,23,42,.68); border-color: var(--border-strong); }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(15,23,42,0.55);
  color: rgba(226,232,240,0.82);
  font-size: 13px;
  font-weight: 700;
}

.chip-mark { color: var(--green); }

.trust-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: rgba(226,232,240,.76);
  font-size: 15px;
  font-weight: 650;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(15,23,42,.72);
  color: #c4b5fd;
}

.phone-wrap {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
}

.phone-glow {
  position: absolute;
  width: 390px;
  height: 520px;
  border-radius: 45%;
  background: radial-gradient(circle, rgba(139,92,246,.42), rgba(37,99,235,.18), transparent 66%);
  filter: blur(9px);
  animation: glow-breathe 6s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.float-card {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  width: 220px;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background: rgba(8, 15, 30, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.32);
  animation: float-y 5.6s ease-in-out infinite;
}

.float-card strong { display: block; font-size: 13px; margin-bottom: 2px; }
.float-card span:last-child { color: rgba(226,232,240,.66); font-size: 12px; line-height: 1.4; }
.float-a { top: 54px; left: -8px; animation-delay: 0s; }
.float-b { top: 210px; right: -18px; animation-delay: -1.8s; }
.float-c { bottom: 72px; left: -4px; animation-delay: -3.2s; }

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.phone {
  position: relative;
  width: 336px;
  min-height: 652px;
  padding: 14px;
  border: 1px solid rgba(148,163,184,.45);
  border-radius: 48px;
  background: linear-gradient(145deg, rgba(148,163,184,.22), rgba(15,23,42,.88));
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.04);
}

.phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 92px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #050816;
  z-index: 2;
}

.phone-home {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 92px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: rgba(248,250,252,0.22);
}

.phone-screen {
  min-height: 622px;
  padding: 22px 18px 28px;
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 38px;
  background: radial-gradient(circle at 70% 0%, rgba(139,92,246,.22), transparent 34%), linear-gradient(180deg, #09111f, #050816);
  overflow: hidden;
}

html[lang="fa"] .phone-screen { direction: rtl; text-align: right; }

.status {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 750;
}

.appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.mini-logo {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  object-fit: cover;
}

.hamburger {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  color: var(--muted);
}

.phone-label {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 750;
  color: rgba(226,232,240,.92);
}

.input-card {
  min-height: 128px;
  padding: 14px;
  border: 1px solid rgba(148,163,184,.25);
  border-radius: 16px;
  background: rgba(15,23,42,.76);
  color: rgba(248,250,252,.9);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 12px;
}

.caret {
  display: inline-block;
  width: 1px;
  height: 0.95em;
  margin-inline-start: 1px;
  background: #7dd3fc;
  vertical-align: text-bottom;
  animation: blink 1s steps(1) infinite;
}

.caret.is-off { display: none; }

@keyframes blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

.char-count { margin-top: 6px; text-align: right; color: #64748b; font-size: 11px; }
html[lang="fa"] .char-count { text-align: left; }

.phone-button {
  width: 100%;
  min-height: 48px;
  margin-bottom: 16px;
  border: none;
  border-radius: 14px;
  background: var(--gradient);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 36px rgba(37,99,235,.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.phone-button.is-busy {
  animation: btn-pulse 1.1s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.18); }
}

.result-card {
  display: grid;
  grid-template-columns: 36px 1fr 20px;
  gap: 12px;
  align-items: start;
  padding: 13px;
  margin-top: 10px;
  border: 1px solid rgba(148,163,184,.16);
  border-radius: 16px;
  background: rgba(15,23,42,.72);
  opacity: 1;
  transform: translateY(0);
  transition: opacity .45s ease, transform .45s ease;
}

.result-card.is-hidden {
  opacity: 0;
  transform: translateY(10px);
}

.result-icon,
.card-icon,
.flow-circle {
  display: grid;
  place-items: center;
}

.result-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(96,165,250,.16);
  color: #93c5fd;
}

.result-icon .icon { width: 18px; height: 18px; }
.result-icon.green { background: rgba(52,211,153,.13); color: #86efac; }
.result-icon.purple { background: rgba(168,85,247,.16); color: #d8b4fe; }
.result-card strong { display: block; margin-bottom: 4px; font-size: 13px; }
.result-card span { color: rgba(226,232,240,.68); font-size: 11.5px; line-height: 1.45; }
.copy-icon { color: rgba(226,232,240,.42); }

.landing-section {
  margin-top: 28px;
  padding: 52px 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(15,23,42,.70), rgba(15,23,42,.34));
  box-shadow: 0 28px 110px rgba(0,0,0,.18);
  position: relative;
  overflow: hidden;
}

.landing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 0%, rgba(139,92,246,.14), transparent 34%), radial-gradient(circle at 100% 60%, rgba(56,189,248,.08), transparent 34%);
  pointer-events: none;
}

.landing-section > * { position: relative; z-index: 1; }

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.6fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-number {
  color: #a78bfa;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 10px;
}

.section-header h2,
.split-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.065em;
  font-weight: 900;
}

html[lang="fa"] .section-header h2,
html[lang="fa"] .split-copy h2,
html[lang="fa"] .final-cta h2,
html[lang="fa"] .hero h1 {
  letter-spacing: -0.03em;
}

.section-header p,
.split-copy p,
.final-cta p {
  margin: 0;
  color: var(--muted-light);
  font-size: 16px;
  line-height: 1.7;
}

.cards-4,
.pricing-grid,
.steps {
  display: grid;
  gap: 16px;
}

.steps { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.pricing-grid { grid-template-columns: repeat(2, 1fr); }

.info-card,
.feature-card,
.use-card,
.price-card,
.step-card,
.compare-col {
  border: 1px solid var(--border);
  background: rgba(15,23,42,.68);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.use-card,
.price-card,
.step-card,
.feature-card {
  padding: 24px;
}

.step-card,
.use-card,
.price-card,
.feature-card {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.step-card:hover,
.use-card:hover,
.price-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,.05);
}

.step-card { position: relative; min-height: 240px; }

.step-index {
  position: absolute;
  top: 18px;
  inset-inline-end: 20px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(167, 139, 250, 0.7);
}

.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(139,92,246,.15);
  color: #c4b5fd;
}

.card-icon .icon { width: 24px; height: 24px; }

.feature-card h3,
.use-card h3,
.price-card h3,
.compare-col h3,
.step-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.feature-card p,
.use-card p,
.price-card p,
.compare-col li,
.step-card p {
  margin: 12px 0 0;
  color: rgba(226,232,240,.66);
  line-height: 1.55;
  font-size: 14px;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .8fr);
  gap: 24px;
  align-items: stretch;
}

.feature-stack {
  display: grid;
  gap: 14px;
}

.feature-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
}

.feature-card .result-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

.flow-panel {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(139,92,246,.14));
}

.flow-kicker {
  margin: 0 0 22px;
  text-align: center;
  color: rgba(226,232,240,0.7);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.flow {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.flow-node {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(226,232,240,.82);
  font-size: 13px;
  font-weight: 800;
}

.flow-circle {
  width: 64px;
  height: 64px;
  border: 1px solid var(--border-strong);
  border-radius: 99px;
  background: rgba(15,23,42,.84);
  color: #c4b5fd;
}

.flow-circle.glow {
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.35);
  border-color: rgba(192, 132, 252, 0.5);
}

.arrow {
  color: rgba(148,163,184,.62);
  display: grid;
  place-items: center;
}

html[lang="fa"] .arrow { transform: scaleX(-1); }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(360px, 1.16fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 28px;
}

.split-copy,
.split-panel {
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(15,23,42,.70), rgba(15,23,42,.34));
  position: relative;
  overflow: hidden;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 62px 1fr;
  align-items: stretch;
  margin-top: 8px;
}

.compare-col { padding: 28px; }
.compare-col:first-child { border-radius: 24px 0 0 24px; }
html[lang="fa"] .compare-col:first-child { border-radius: 0 24px 24px 0; }

.compare-col:last-child {
  border-radius: 0 24px 24px 0;
  border-color: rgba(192,132,252,.42);
  background: linear-gradient(180deg, rgba(139,92,246,.26), rgba(15,23,42,.72));
}

html[lang="fa"] .compare-col:last-child { border-radius: 24px 0 0 24px; }

.vs {
  display: grid;
  place-items: center;
  font-weight: 900;
}

.vs span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(167,139,250,.70);
  border-radius: 99px;
  background: rgba(15,23,42,.98);
  box-shadow: 0 0 34px rgba(139,92,246,.28);
}

.compare-col ul {
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.compare-col li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.bad { color: #fda4af; font-weight: 900; }
.good { color: #86efac; font-weight: 900; }

.price-card { position: relative; min-height: 230px; }
.price-card.featured {
  border-color: rgba(192,132,252,.62);
  background: linear-gradient(180deg, rgba(139,92,246,.30), rgba(15,23,42,.74));
  box-shadow: 0 0 52px rgba(139,92,246,.13);
}

.tag {
  position: absolute;
  left: 50%;
  top: -13px;
  transform: translateX(-50%);
  padding: 6px 13px;
  border-radius: 999px;
  background: #93c5fd;
  color: #172554;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.price-icon {
  margin-bottom: 16px;
  color: #93c5fd;
}

.price-icon .icon { width: 28px; height: 28px; }

.price-amount {
  margin: 10px 0 0 !important;
  color: #7dd3fc !important;
  font-size: 28px !important;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.price-request {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(192,132,252,.5);
  border-radius: 12px;
  background: rgba(15,23,42,.45);
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 800;
}

.legal {
  max-width: 720px;
  margin: 36px auto 0;
  padding: 48px 40px;
}

.legal h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.06em;
  font-weight: 900;
}

.legal h2 {
  margin: 28px 0 10px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.legal p,
.legal li {
  color: var(--muted-light);
  font-size: 16px;
  line-height: 1.7;
}

.legal ul {
  padding-inline-start: 1.2em;
}

.legal a { text-decoration: underline; text-underline-offset: 3px; }

.vision-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, .72fr);
  gap: 24px;
  align-items: stretch;
}

.quote-box {
  min-height: 260px;
  display: grid;
  align-content: center;
  padding: 34px;
  border: 1px solid rgba(167,139,250,.34);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 10% 100%, rgba(56,189,248,.28), transparent 24%), linear-gradient(135deg, rgba(37,99,235,.18), rgba(139,92,246,.20));
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.final-cta {
  text-align: center;
  padding: 64px 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 50% 100%, rgba(37,99,235,.24), transparent 42%), linear-gradient(180deg, rgba(15,23,42,.74), rgba(15,23,42,.40));
  margin-top: 28px;
}

.final-cta p {
  max-width: 580px;
  margin: 16px auto 0;
}

.final-cta .btn {
  margin-top: 28px;
  min-width: 280px;
}

.final-note {
  margin-top: 18px !important;
  font-size: 13px !important;
  color: rgba(226,232,240,0.5) !important;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 8px 0;
  color: rgba(226,232,240,.50);
  font-size: 13px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-cta { color: rgba(248,250,252,0.82); font-weight: 800; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-in { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1080px) {
  .hero,
  .feature-layout,
  .split-section,
  .vision-layout {
    grid-template-columns: 1fr;
  }

  .phone-wrap { min-height: auto; padding: 24px 0 8px; }
  .float-card { display: none; }
  .section-header { grid-template-columns: 1fr; }
  .steps, .pricing-grid { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .page { width: min(100% - 20px, 1180px); padding-top: 0; }
  .nav { position: sticky; top: 0; margin: 0; }
  .nav-inner { width: min(100% - 20px, 1180px); min-height: 56px; }
  .brand { font-size: 21px; }
  .nav-cta { display: none; }
  .nav-toggle { display: grid; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(3, 7, 18, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 60px rgba(0,0,0,0.4);
  }
  .nav.is-open .nav-links { display: flex; }
  .nav-links a {
    padding: 12px 14px;
    border-radius: 12px;
  }
  .nav-links a::after { display: none; }
  .nav-drawer-cta {
    display: flex;
    justify-content: center;
    margin-top: 6px;
    background: var(--gradient);
    font-weight: 800;
  }
  .hero { padding: 46px 8px 30px; gap: 36px; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 16px; }
  .hero-actions { align-items: stretch; }
  .btn { width: 100%; }
  .phone { width: min(100%, 336px); }
  .landing-section, .split-copy, .split-panel, .final-cta, .legal { padding: 28px 20px; border-radius: 24px; }
  .section-header h2, .split-copy h2, .final-cta h2 { font-size: 32px; }
  .cards-4 { grid-template-columns: 1fr; }
  .comparison { grid-template-columns: 1fr; gap: 12px; }
  .compare-col:first-child,
  .compare-col:last-child,
  html[lang="fa"] .compare-col:first-child,
  html[lang="fa"] .compare-col:last-child { border-radius: 22px; }
  .vs { height: 46px; }
  .flow { grid-template-columns: 1fr; }
  .arrow { transform: rotate(90deg); }
  html[lang="fa"] .arrow { transform: rotate(-90deg); }
  .feature-card { grid-template-columns: 1fr; }
  .quote-box { font-size: 30px; min-height: 220px; }
  .final-cta .btn { min-width: 0; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orb,
  .phone-glow,
  .float-card,
  .eyebrow-dot,
  .caret,
  .phone-button.is-busy {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
