/* [project]/src/app/landing/landing.css [app-client] (css) */
.landing-shell {
  --landing-primary: #3390ec;
  --landing-primary-dark: #2a8adf;
  --landing-primary-soft: #e7f3ff;
  --landing-accent: #6366f1;
  --landing-accent-dark: #4f46e5;
  --landing-text: #0f172a;
  --landing-muted: #64748b;
  --landing-line: #94a3b838;
  --landing-card: #ffffffd1;
  --landing-card-solid: #fff;
  --landing-radius: 20px;
  --landing-radius-sm: 14px;
  --landing-shadow: 0 4px 24px #0f172a0f;
  --landing-shadow-lg: 0 20px 50px #0f172a1a;
  --panel-logo-gradient: linear-gradient(145deg, #3390ec 0%, #6366f1 55%, #4f46e5 100%);
  min-height: 100vh;
  color: var(--landing-text);
  font-family: var(--font-sans);
  font-variant-numeric: lining-nums tabular-nums;
  background: radial-gradient(90% 55% at 10% 0, #3390ec29, #0000 55%), radial-gradient(70% 45% at 95% 15%, #6366f11f, #0000 50%), radial-gradient(60% 40% at 50% 100%, #3390ec14, #0000 55%), linear-gradient(#eef4fb 0%, #f4f7fb 40%, #f8fafc 100%);
  flex: 1;
  scroll-padding-top: 88px;
  position: relative;
}

.landing-shell:before, .landing-shell:after {
  content: "";
  filter: blur(70px);
  pointer-events: none;
  border-radius: 50%;
  animation: 20s ease-in-out infinite alternate landing-float;
  position: absolute;
}

.landing-shell:before {
  top: -120px;
  background: #3390ec2e;
  width: 420px;
  height: 420px;
  inset-inline-end: 0;
}

.landing-shell:after {
  bottom: 20%;
  background: #6366f124;
  width: 360px;
  height: 360px;
  animation-delay: -8s;
  inset-inline-start: 0;
}

@keyframes landing-float {
  from {
    transform: translate(0)scale(1);
  }

  to {
    transform: translate(16px, -20px)scale(1.05);
  }
}

.landing-inner {
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  overflow-x: clip;
}

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

.landing-brand {
  color: inherit;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  display: flex;
}

.landing-shell .auth-logo {
  background: var(--panel-logo-gradient);
  color: #fff;
  border-radius: 14px;
  place-items: center;
  display: grid;
  box-shadow: 0 8px 20px #3390ec4d, inset 0 0 0 1px #fff3;
}

.landing-shell .auth-logo svg {
  width: 55%;
  height: 55%;
}

.landing-brand .auth-logo {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
}

.landing-brand-text {
  flex-direction: column;
  gap: 1px;
  display: flex;
}

.landing-brand-name {
  letter-spacing: -.02em;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

.landing-brand-sub {
  color: var(--landing-muted);
  font-size: .72rem;
  line-height: 1.3;
}

.landing-nav {
  align-items: center;
  gap: 16px;
  display: none;
}

@media (min-width: 1100px) {
  .landing-nav {
    gap: 22px;
    display: flex;
  }
}

.landing-nav a {
  color: var(--landing-muted);
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s;
}

@media (min-width: 1100px) {
  .landing-nav a {
    font-size: .875rem;
  }
}

.landing-nav a:hover, .landing-nav a.is-active {
  color: var(--landing-primary);
}

.landing-nav a.is-active {
  font-weight: 700;
}

.landing-header-actions {
  align-items: center;
  gap: 8px;
  display: flex;
}

.landing-lang-toggle {
  border: 1px solid var(--landing-line);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #ffffffb3;
  border-radius: 999px;
  align-items: center;
  padding: 2px;
  display: inline-flex;
}

.landing-lang-btn {
  color: var(--landing-muted);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .75rem;
  font-weight: 600;
  transition: background .15s, color .15s;
}

.landing-lang-btn.is-active {
  background: var(--landing-primary);
  color: #fff;
}

.landing-btn {
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
  display: inline-flex;
}

.landing-btn:active {
  transform: scale(.98);
}

.landing-btn--ghost {
  color: var(--landing-text);
  background: none;
  padding: 9px 14px;
}

.landing-btn--ghost:hover {
  background: #fff9;
}

.landing-btn--primary {
  background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-accent) 100%);
  color: #fff;
  padding: 10px 18px;
  box-shadow: 0 4px 14px #3390ec59;
}

.landing-btn--primary:hover {
  box-shadow: 0 6px 20px #3390ec73;
}

.landing-btn--outline {
  color: var(--landing-primary-dark);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #ffffffbf;
  border: 1px solid #3390ec40;
  padding: 10px 18px;
}

.landing-btn--outline:hover {
  background: #fff;
  border-color: #3390ec66;
}

.landing-btn--lg {
  border-radius: 14px;
  padding: 14px 24px;
  font-size: .95rem;
}

.landing-header .landing-btn--ghost {
  display: none;
}

@media (min-width: 640px) {
  .landing-header .landing-btn--ghost {
    display: inline-flex;
  }
}

.landing-hero {
  align-items: center;
  gap: 40px;
  padding: 32px 0 56px;
  display: grid;
}

@media (min-width: 900px) {
  .landing-hero {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 48px 0 72px;
  }
}

.landing-hero-content {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.landing-badge {
  color: var(--landing-primary-dark);
  background: var(--landing-primary-soft);
  border: 1px solid #3390ec2e;
  border-radius: 999px;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 600;
  display: inline-flex;
}

.landing-badge-dot {
  background: var(--landing-primary);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 2s ease-in-out infinite landing-pulse;
}

@keyframes landing-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(.85);
  }
}

.landing-hero-title {
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #0f172a 0%, #334155 60%, var(--landing-primary-dark) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
}

.landing-hero-subtitle {
  color: var(--landing-muted);
  max-width: 520px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.landing-hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
  display: flex;
}

.landing-hero-visual {
  position: relative;
}

.landing-dashboard-preview {
  background: var(--landing-card);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: var(--landing-shadow-lg);
  border: 1px solid #fffc;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.landing-dashboard-topbar {
  background: linear-gradient(#17212b 0%, #1a2734 100%);
  border-bottom: 1px solid #ffffff0f;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  display: flex;
}

.landing-dashboard-dot {
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.landing-dashboard-dot--red {
  background: #ff5f57;
}

.landing-dashboard-dot--yellow {
  background: #febc2e;
}

.landing-dashboard-dot--green {
  background: #28c840;
}

.landing-dashboard-body {
  grid-template-columns: 72px 1fr;
  min-height: 280px;
  display: grid;
}

.landing-dashboard-sidebar {
  background: #17212b;
  flex-direction: column;
  gap: 10px;
  padding: 16px 10px;
  display: flex;
}

.landing-dashboard-nav-item {
  color: #ffffffb8;
  background: #ffffff0f;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: 36px;
  transition: background .25s, box-shadow .25s;
  display: flex;
  position: relative;
}

.landing-dashboard-nav-item.has-notify {
  box-shadow: 0 0 0 2px #ffffff24;
}

.landing-dashboard-nav-badge {
  top: -4px;
  color: #fff;
  text-align: center;
  background: #ef4444;
  border-radius: 999px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: .55rem;
  font-weight: 700;
  line-height: 16px;
  animation: .35s ease-out both landing-badge-pop;
  position: absolute;
  inset-inline-end: -4px;
}

.landing-dashboard-nav-item svg {
  width: 18px;
  height: 18px;
}

.landing-dashboard-nav-item.is-active {
  color: #fff;
  background: #3390ec59;
}

.landing-dashboard-nav-item--instagram.is-active {
  background: #e1306c59;
}

.landing-dashboard-nav-item--whatsapp.is-active {
  background: #25d36647;
}

.landing-dashboard-main {
  background: #e8eef3;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  display: flex;
}

.landing-dashboard-cards {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  display: grid;
}

.landing-dashboard-card {
  background: #fff;
  border: 1px solid #94a3b826;
  border-radius: 14px;
  padding: 14px;
  transition: border-color .25s, box-shadow .25s;
}

.landing-dashboard-card--bump {
  border-color: #3390ec59;
  animation: .45s ease-out landing-card-bump;
  box-shadow: 0 0 0 3px #3390ec1a;
}

.landing-dashboard-card-value {
  color: var(--landing-primary);
  font-size: 1.1rem;
  font-weight: 700;
  transition: color .2s;
}

.landing-dashboard-card--bump .landing-dashboard-card-value {
  color: var(--landing-accent);
}

.landing-dashboard-card-head {
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  display: flex;
}

.landing-dashboard-card-icon {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.landing-dashboard-card-icon svg {
  width: 14px;
  height: 14px;
}

.landing-dashboard-card-icon--telegram {
  color: #3390ec;
}

.landing-dashboard-card-icon--instagram {
  color: #e1306c;
}

.landing-dashboard-card-icon--whatsapp {
  color: #25d366;
}

.landing-dashboard-card-icon--ai {
  color: #7c3aed;
}

.landing-dashboard-card-label {
  color: var(--landing-muted);
  margin-bottom: 6px;
  font-size: .65rem;
}

.landing-dashboard-activity {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  animation: .55s ease-out .35s both landing-activity-in;
  display: grid;
}

.landing-activity-row {
  background: #fff;
  border: 1px solid #94a3b826;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 10px;
  transition: border-color .25s, box-shadow .25s;
  animation: .45s ease-out both landing-activity-in;
  display: flex;
  position: relative;
}

.landing-activity-row--pulse {
  border-color: #3390ec59;
  animation: 1.4s ease-in-out infinite landing-activity-pulse;
  box-shadow: 0 0 0 3px #3390ec14;
}

.landing-activity-row--replied {
  border-color: #25d36666;
  box-shadow: 0 0 0 3px #25d3661a;
}

.landing-activity-row:first-child {
  animation-delay: .45s;
}

.landing-activity-row:nth-child(2) {
  animation-delay: .6s;
}

.landing-activity-icon {
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: flex;
}

.landing-activity-icon svg {
  width: 14px;
  height: 14px;
}

.landing-activity-icon--ig {
  color: #fff;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.landing-activity-icon--tg {
  color: #fff;
  background: #3390ec;
}

.landing-activity-icon--wa {
  color: #fff;
  background: #25d366;
}

.landing-activity-text {
  flex: 1;
  min-width: 0;
}

.landing-activity-title {
  font-size: .68rem;
  font-weight: 600;
  line-height: 1.25;
}

.landing-activity-meta {
  color: var(--landing-muted);
  font-size: .6rem;
}

.landing-activity-chip {
  color: var(--landing-primary);
  background: #e7f3ff;
  border-radius: 999px;
  flex-shrink: 0;
  padding: 2px 7px;
  font-size: .58rem;
  font-weight: 700;
  animation: .35s ease-out both landing-badge-pop;
}

.landing-activity-chip--sent {
  color: #16a34a;
  background: #dcfce7;
}

.landing-activity-typing {
  align-items: center;
  gap: 3px;
  margin-top: 4px;
  display: flex;
}

.landing-activity-typing span {
  background: var(--landing-primary);
  border-radius: 50%;
  width: 4px;
  height: 4px;
  animation: 1.1s ease-in-out infinite landing-typing;
}

.landing-activity-typing span:nth-child(2) {
  animation-delay: .15s;
}

.landing-activity-typing span:nth-child(3) {
  animation-delay: .3s;
}

.landing-dashboard-toast {
  top: 52px;
  z-index: 3;
  max-width: calc(100% - 28px);
  color: var(--landing-text);
  background: #fffffff5;
  border: 1px solid #94a3b833;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: .68rem;
  font-weight: 600;
  animation: .45s cubic-bezier(.22, 1, .36, 1) both landing-toast-in;
  display: inline-flex;
  position: absolute;
  inset-inline-end: 14px;
  box-shadow: 0 10px 28px #0f172a1f;
}

.landing-dashboard-toast-dot {
  background: #ef4444;
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  animation: 1.4s ease-in-out infinite landing-pulse;
}

.landing-activity-bar {
  background: #f1f5f9;
  border-radius: 999px;
  grid-column: 1 / -1;
  height: 5px;
  overflow: hidden;
}

.landing-activity-bar-fill {
  background: linear-gradient(90deg, var(--landing-primary), var(--landing-accent));
  border-radius: 999px;
  width: 72%;
  height: 100%;
  transition: width .6s, filter .3s;
  animation: 1.1s cubic-bezier(.22, 1, .36, 1) .85s both landing-bar-grow;
}

.landing-activity-bar-fill.is-active {
  filter: brightness(1.05);
  width: 84%;
}

@keyframes landing-activity-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landing-bar-grow {
  from {
    width: 0;
  }

  to {
    width: 72%;
  }
}

@keyframes landing-toast-in {
  from {
    opacity: 0;
    transform: translateY(-8px)scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

@keyframes landing-badge-pop {
  from {
    opacity: 0;
    transform: scale(.6);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes landing-card-bump {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes landing-activity-pulse {
  0%, 100% {
    box-shadow: 0 0 0 3px #3390ec14;
  }

  50% {
    box-shadow: 0 0 0 5px #3390ec24;
  }
}

@keyframes landing-typing {
  0%, 80%, 100% {
    opacity: .35;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-dashboard-preview--wa-new .landing-activity-row--pulse, .landing-dashboard-preview--wa-typing .landing-activity-row--pulse, .landing-activity-row--pulse, .landing-dashboard-toast, .landing-dashboard-nav-badge, .landing-activity-chip, .landing-dashboard-card--bump {
    animation: none;
  }
}

.landing-highlights {
  background: linear-gradient(135deg, #17212b 0%, #1e3a5f 55%, #243b55 100%);
  border-radius: 20px;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 64px;
  display: grid;
  overflow: hidden;
  box-shadow: 0 20px 50px #17212b40, inset 0 0 0 1px #ffffff0f;
}

@media (min-width: 768px) {
  .landing-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

.landing-highlight-item {
  color: #fff;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px;
  transition: background .2s;
  display: flex;
  position: relative;
}

.landing-highlight-item:hover {
  background: #ffffff0a;
}

@media (min-width: 768px) {
  .landing-highlight-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 26px 22px;
  }
}

.landing-highlight-icon {
  color: #7ec8ff;
  background: #3390ec2e;
  border: 1px solid #7ec8ff26;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.landing-highlight-icon svg {
  width: 20px;
  height: 20px;
}

.landing-highlight-text {
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  display: flex;
}

.landing-highlight-text strong {
  color: #f1f5f9;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.35;
}

.landing-highlight-text span {
  color: #ffffff8c;
  font-size: .78rem;
  line-height: 1.45;
}

.landing-highlight-divider {
  display: none;
}

@media (min-width: 768px) {
  .landing-highlight-divider {
    top: 22px;
    bottom: 22px;
    background: #ffffff14;
    width: 1px;
    display: block;
    position: absolute;
    inset-inline-end: 0;
  }
}

@media (max-width: 767px) {
  .landing-highlight-item:not(:last-child) {
    border-bottom: 1px solid #ffffff14;
  }
}

.landing-section {
  margin-bottom: 72px;
}

.landing-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.landing-section-title {
  letter-spacing: -.02em;
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
}

.landing-section-subtitle {
  color: var(--landing-muted);
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
}

.landing-platforms {
  gap: 16px;
  display: grid;
}

@media (min-width: 768px) {
  .landing-platforms {
    grid-template-columns: repeat(3, 1fr);
  }
}

.landing-platform-card {
  border-radius: var(--landing-radius);
  background: var(--landing-card-solid);
  border: 1px solid var(--landing-line);
  box-shadow: var(--landing-shadow);
  padding: 24px;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}

.landing-platform-card:hover {
  box-shadow: var(--landing-shadow-lg);
  transform: translateY(-3px);
}

.landing-platform-card.is-soon {
  opacity: .75;
}

.landing-platform-icon {
  color: #fff;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: flex;
}

.landing-platform-icon--telegram {
  background: #3390ec;
}

.landing-platform-icon--instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.landing-platform-icon--whatsapp {
  background: #25d366;
}

.landing-platform-name {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.landing-platform-desc {
  color: var(--landing-muted);
  margin: 0 0 16px;
  font-size: .85rem;
  line-height: 1.55;
}

.landing-platform-tags {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.landing-platform-tag {
  background: var(--landing-primary-soft);
  color: var(--landing-primary-dark);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: .72rem;
  font-weight: 600;
}

.landing-platform-badge {
  top: 16px;
  color: #b45309;
  background: #fef3c7;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: .68rem;
  font-weight: 700;
  position: absolute;
  inset-inline-end: 16px;
}

.landing-features {
  gap: 14px;
  display: grid;
}

@media (min-width: 640px) {
  .landing-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .landing-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.landing-feature-card {
  border-radius: var(--landing-radius-sm);
  background: var(--landing-card-solid);
  border: 1px solid var(--landing-line);
  padding: 22px;
  transition: border-color .2s, box-shadow .2s;
}

.landing-feature-card:hover {
  box-shadow: var(--landing-shadow);
  border-color: #3390ec4d;
}

.landing-feature-icon {
  background: var(--landing-primary-soft);
  width: 40px;
  height: 40px;
  color: var(--landing-primary);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
  display: flex;
}

.landing-feature-icon svg {
  width: 20px;
  height: 20px;
}

.landing-feature-title {
  margin: 0 0 8px;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.35;
}

.landing-feature-desc {
  color: var(--landing-muted);
  margin: 0;
  font-size: .8rem;
  line-height: 1.55;
}

.landing-steps {
  gap: 16px;
  display: grid;
}

@media (min-width: 768px) {
  .landing-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.landing-step {
  border-radius: var(--landing-radius);
  background: var(--landing-card);
  border: 1px solid var(--landing-line);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 28px 24px;
  position: relative;
}

.landing-step-num {
  color: #fff;
  background: linear-gradient(135deg, var(--landing-primary), var(--landing-accent));
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  font-size: .95rem;
  font-weight: 800;
  display: inline-flex;
}

.landing-step-title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
}

.landing-step-desc {
  color: var(--landing-muted);
  margin: 0;
  font-size: .85rem;
  line-height: 1.55;
}

.landing-pricing-ai-note {
  padding-top: 0;
  padding-bottom: 8px;
}

.landing-pricing-ai-note__card {
  background: var(--landing-card-solid);
  max-width: 820px;
  box-shadow: var(--landing-shadow);
  border: 2px solid #7c3aed29;
  border-radius: 20px;
  margin: 0 auto;
  padding: 22px 24px;
}

.landing-pricing-ai-note__card h2 {
  color: var(--landing-text);
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
}

.landing-pricing-ai-note__card p {
  color: var(--landing-muted);
  margin: 0;
  font-size: .88rem;
  line-height: 1.6;
}

.landing-pricing-ai-note__example {
  font-weight: 600;
  color: var(--landing-primary-dark) !important;
  margin-top: 10px !important;
  font-size: .82rem !important;
}

.landing-pricing-ai-note--bottom {
  padding-top: 8px;
}

.landing-pricing-compare--bottom {
  padding-top: 0;
}

.landing-pricing-compare-wrap {
  max-width: 760px;
  margin: 0 auto;
  overflow-x: auto;
}

.landing-pricing-compare-table {
  border-collapse: collapse;
  background: var(--landing-card-solid);
  width: 100%;
  box-shadow: var(--landing-shadow);
  border: 2px solid #3390ec29;
  border-radius: 20px;
  overflow: hidden;
}

.landing-pricing-compare-table th, .landing-pricing-compare-table td {
  text-align: center;
  border-bottom: 1px solid var(--landing-line);
  padding: 12px 14px;
  font-size: .86rem;
}

.landing-pricing-compare-table thead th {
  background: #3390ec14;
  font-weight: 800;
}

.landing-pricing-compare-table th[scope="row"] {
  text-align: start;
  color: var(--landing-text);
  font-weight: 700;
}

.landing-pricing-compare-table td.is-featured, .landing-pricing-compare-table th.is-featured {
  color: #c2410c;
  background: #ea580c14;
  font-weight: 800;
}

.landing-pricing-compare-table tr:last-child th, .landing-pricing-compare-table tr:last-child td {
  border-bottom: none;
}

.landing-pricing-name-extra {
  color: var(--landing-muted);
  font-size: .82em;
  font-weight: 700;
}

.landing-pricing-value-prop {
  color: var(--landing-primary-dark);
  margin: 0 0 8px;
  font-size: .78rem;
  font-weight: 700;
}

.landing-pricing-social-proof {
  color: #c2410c;
  background: #fff7ed;
  border-radius: 999px;
  margin: 0 0 12px;
  padding: 6px 10px;
  font-size: .72rem;
  font-weight: 800;
}

.landing-pricing-case-study {
  color: var(--landing-muted);
  text-align: start;
  background: #3390ec0f;
  border-radius: 12px;
  margin: 0 0 14px;
  padding: 10px 12px;
  font-size: .78rem;
  line-height: 1.5;
}

.landing-pricing-toman {
  color: var(--landing-muted);
  margin: -2px 0 4px;
  font-size: .78rem;
  font-weight: 600;
}

.landing-pricing-toman-note {
  text-align: center;
  color: var(--landing-muted);
  margin: 18px 0 0;
  font-size: .78rem;
}

.landing-pricing-card--compact {
  padding: 24px 18px 20px;
}

.landing-pricing-features--compact li {
  padding: 6px 0;
  font-size: .82rem;
}

.landing-home-pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
}

.landing-home-pricing-cta {
  max-width: 1080px;
  margin: 40px auto 0;
  padding-top: 4px;
}

.landing-home-pricing-link {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  color: var(--landing-text);
  background: linear-gradient(#fff 0%, #f8fafc 100%);
  border: 1px solid #94a3b847;
  border-radius: 18px;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  box-shadow: inset 0 1px #ffffffe6, 0 8px 24px #0f172a0f;
}

.landing-home-pricing-link:hover {
  border-color: #3390ec59;
  transform: translateY(-1px);
  box-shadow: inset 0 1px #fffffff2, 0 12px 32px #3390ec1f;
}

.landing-home-pricing-link__label {
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.4;
}

.landing-home-pricing-link__icon {
  color: #fff;
  background: linear-gradient(145deg, var(--landing-primary) 0%, var(--landing-accent) 100%);
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  box-shadow: 0 4px 12px #3390ec47;
}

.landing-home-pricing-link__icon svg {
  width: 18px;
  height: 18px;
}

.landing-home-pricing-link:hover .landing-home-pricing-link__icon {
  transform: translateX(2px);
  box-shadow: 0 6px 16px #3390ec57;
}

[dir="rtl"] .landing-home-pricing-link:hover .landing-home-pricing-link__icon {
  transform: translateX(-2px);
}

[dir="rtl"] .landing-home-pricing-link__icon svg {
  transform: scaleX(-1);
}

.landing-scenario-showcase {
  position: relative;
}

.landing-scenario-showcase:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(at 30% 20%, #e1306c1a, #0000 55%), radial-gradient(at 80% 40%, #3390ec1a, #0000 50%);
  border-radius: 32px;
  height: 55%;
  position: absolute;
  inset: 8% 4% auto;
}

.landing-scenario-showcase__grid {
  align-items: center;
  gap: 28px;
  min-width: 0;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  position: relative;
}

@media (min-width: 1024px) {
  .landing-scenario-showcase__grid {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 40px;
  }
}

.landing-scenario-showcase__badge {
  color: var(--landing-primary-dark);
  background: linear-gradient(135deg, #3390ec1f, #6366f11a);
  border: 1px solid #3390ec33;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 12px;
  font-size: .72rem;
  font-weight: 700;
  display: inline-flex;
}

.landing-scenario-showcase__platforms {
  gap: 8px;
  margin-bottom: 16px;
  display: grid;
}

.landing-scenario-showcase__platforms-label {
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--landing-muted);
  font-size: .68rem;
  font-weight: 700;
}

.landing-scenario-showcase__platform-chips {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.landing-scenario-showcase__platform-chip {
  color: var(--landing-text);
  background: #ffffffe0;
  border: 1px solid #94a3b847;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 6px 8px;
  font-size: .68rem;
  font-weight: 600;
  display: inline-flex;
}

.landing-scenario-showcase__platform-chip svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.landing-scenario-showcase__platform-chip--instagram svg {
  color: #e1306c;
}

.landing-scenario-showcase__platform-chip--telegram svg {
  color: #3390ec;
}

.landing-scenario-showcase__platform-chip--whatsapp svg {
  color: #25d366;
}

.landing-scenario-showcase__platform-chip.is-live {
  background: linear-gradient(135deg, #3390ec1a 0%, #6366f114 100%);
  border-color: #3390ec52;
}

.landing-scenario-showcase__platform-chip.is-soon {
  opacity: .82;
}

.landing-scenario-showcase__platform-chip-status {
  border-radius: 999px;
  padding: 2px 7px;
  font-size: .58rem;
  font-weight: 700;
  line-height: 1.2;
}

.landing-scenario-showcase__platform-chip.is-live .landing-scenario-showcase__platform-chip-status {
  color: #15803d;
  background: #dcfce7;
}

.landing-scenario-showcase__platform-chip.is-soon .landing-scenario-showcase__platform-chip-status {
  color: #64748b;
  background: #f1f5f9;
}

.landing-scenario-showcase__roadmap {
  color: var(--landing-primary-dark);
  text-align: start;
  background: #3390ec0f;
  border: 1px dashed #3390ec47;
  border-radius: 12px;
  margin: 12px 0 0;
  padding: 10px 12px;
  font-size: .82rem;
  line-height: 1.55;
}

.landing-scenario-showcase__title, .landing-scenario-showcase__subtitle {
  text-align: start;
}

.landing-scenario-showcase__points {
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.landing-scenario-showcase__points li {
  color: var(--landing-muted);
  padding-inline-start: 22px;
  font-size: .9rem;
  line-height: 1.55;
  position: relative;
}

.landing-scenario-showcase__points li:before {
  content: "";
  inset-inline-start: 0;
  background: linear-gradient(135deg, #e1306c, #3390ec);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: .55em;
}

.landing-scenario-showcase__actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  display: flex;
}

.landing-scenario-flow {
  gap: 14px;
  min-width: 0;
  display: grid;
  position: relative;
}

@media (min-width: 720px) {
  .landing-scenario-flow {
    grid-template-columns: 168px minmax(0, 1fr);
    align-items: stretch;
  }
}

.landing-scenario-flow__phone {
  background: linear-gradient(#1a1f26 0%, #111827 100%);
  border: 1px solid #ffffff14;
  border-radius: 18px;
  min-height: 220px;
  overflow: hidden;
  box-shadow: 0 16px 40px #0f172a2e;
}

.landing-scenario-flow__phone-head {
  color: #fff;
  border-bottom: 1px solid #ffffff14;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  display: flex;
}

.landing-scenario-flow__phone-head strong {
  font-size: .72rem;
  display: block;
}

.landing-scenario-flow__phone-head span {
  color: #86efac;
  font-size: .58rem;
}

.landing-scenario-flow__avatar {
  color: #fff;
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: inline-flex;
}

.landing-scenario-flow__avatar svg {
  width: 16px;
  height: 16px;
}

.landing-scenario-flow__chat {
  gap: 8px;
  padding: 14px 12px 16px;
  display: grid;
}

.landing-scenario-flow__bubble {
  border-radius: 14px;
  max-width: 92%;
  padding: 8px 10px;
  font-size: .66rem;
  line-height: 1.45;
  animation: .45s ease-out both landing-scenario-bubble-in;
}

.landing-scenario-flow__bubble--user {
  color: #fff;
  background: #3390ec;
  border-end-end-radius: 4px;
  justify-self: end;
}

.landing-scenario-flow__bubble--bot {
  color: #e2e8f0;
  opacity: 0;
  background: #2a3440;
  border-end-start-radius: 4px;
  justify-self: start;
  transform: translateY(6px);
}

.landing-scenario-flow__bubble--bot.is-visible {
  opacity: 1;
  transition: opacity .35s, transform .35s;
  transform: translateY(0);
}

.landing-scenario-flow__board {
  background: linear-gradient(#fff 0%, #f8fbff 100%);
  border: 1px solid #dbeafe;
  border-radius: 18px;
  min-height: 320px;
  overflow: hidden;
  box-shadow: 0 14px 36px #3390ec1a;
}

.landing-scenario-flow__board-head {
  color: #1a1f26;
  border-bottom: 1px solid #e8f0fa;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: .72rem;
  font-weight: 700;
  display: flex;
}

.landing-scenario-flow__live {
  color: #059669;
  background: #ecfdf5;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: .62rem;
  font-weight: 700;
  animation: 2s ease-in-out infinite landing-pulse;
}

.landing-scenario-flow__canvas {
  background-color: #f8fafc;
  background-image: radial-gradient(circle, #d8e2ec 1px, #0000 1px);
  background-size: 16px 16px;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.landing-scenario-flow__wires {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.landing-scenario-wire {
  fill: none;
  stroke: #cbd5e1;
  stroke-width: 2.5px;
  stroke-linecap: round;
  stroke-dasharray: 6 8;
  transition: stroke .3s;
}

.landing-scenario-wire.is-on {
  stroke: #3390ec;
  animation: 1.2s linear infinite landing-scenario-wire-flow;
}

.landing-scenario-wire--branch.is-on {
  stroke: #f59e0b;
}

.landing-scenario-node {
  background: #fff;
  border-radius: 14px;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 8px;
  width: min(220px, 42%);
  padding: 10px 12px;
  transition: box-shadow .25s, transform .25s;
  display: grid;
  position: absolute;
  box-shadow: 0 4px 16px #0f172a14, 0 0 0 1px #0f172a0d;
}

.landing-scenario-node strong {
  color: #1a1f26;
  font-size: .68rem;
  display: block;
}

.landing-scenario-node p {
  color: #64748b;
  margin: 2px 0 0;
  font-size: .6rem;
  line-height: 1.35;
}

.landing-scenario-node--start {
  background: linear-gradient(135deg, #f1f5f9 0%, #e8edf2 100%);
  align-items: center;
  gap: 10px;
  width: min(210px, 46%);
  display: flex;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 2px #cbd5e1, 0 6px 18px #0f172a0f;
}

.landing-scenario-node--messages {
  border-top: 4px solid #3390ec;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
}

.landing-scenario-node--choice {
  border-top: 4px solid #f59e0b;
  top: 178px;
  left: 50%;
  transform: translateX(-50%);
}

.landing-scenario-node--shop {
  border-top: 4px solid #10b981;
  width: min(190px, 38%);
  top: 214px;
  right: 8%;
}

[dir="rtl"] .landing-scenario-node--shop {
  left: 8%;
  right: auto;
}

.landing-scenario-node.is-active {
  z-index: 2;
  transform: translateX(-50%)scale(1.02);
  box-shadow: 0 10px 32px #3390ec33, 0 0 0 2px #3390ec;
}

.landing-scenario-node--shop.is-active {
  transform: scale(1.02);
}

.landing-scenario-node__icon {
  color: #475569;
  background: #f1f5f9;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: .72rem;
  display: inline-flex;
}

.landing-scenario-node__icon--messages {
  color: #3390ec;
  background: #e7f3ff;
}

.landing-scenario-node__icon--choice {
  color: #d97706;
  background: #fffbeb;
}

.landing-scenario-node__icon--shop {
  color: #059669;
  background: #ecfdf5;
}

.landing-scenario-node__branches {
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 6px;
  margin-top: 2px;
  display: flex;
}

.landing-scenario-node__branches span {
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: .58rem;
  font-weight: 700;
}

.landing-scenario-node__branches span.is-hot {
  color: #c2410c;
  background: #fff7ed;
  border-color: #fdba74;
  animation: .35s ease-out both landing-badge-pop;
}

@keyframes landing-scenario-bubble-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landing-scenario-wire-flow {
  to {
    stroke-dashoffset: -28px;
  }
}

@media (max-width: 719px) {
  .landing-scenario-flow__canvas {
    height: 340px;
  }

  .landing-scenario-node {
    width: min(200px, 44%);
  }

  .landing-scenario-node--shop {
    width: min(170px, 40%);
    top: 228px;
    right: 4%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-scenario-flow__live, .landing-scenario-wire.is-on, .landing-scenario-node__branches span.is-hot {
    animation: none;
  }
}

.landing-pricing-addons-paid {
  text-align: center;
  max-width: 720px;
  color: var(--landing-primary-dark);
  margin: 0 auto 16px;
  font-size: .84rem;
  font-weight: 600;
}

.landing-pricing-addon-desc {
  color: var(--landing-muted);
  margin: 8px 0 0;
  font-size: .78rem;
  line-height: 1.45;
}

.landing-pricing-billing {
  justify-content: center;
  margin: -8px 0 28px;
  display: flex;
}

.landing-pricing-billing-toggle {
  background: var(--landing-card-solid);
  box-shadow: var(--landing-shadow);
  border: 2px solid #3390ec24;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 6px;
  display: inline-flex;
}

.landing-pricing-billing-option {
  color: var(--landing-muted);
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: .92rem;
  font-weight: 700;
  transition: background .2s, color .2s, box-shadow .2s;
  display: inline-flex;
}

.landing-pricing-billing-option:hover {
  color: var(--landing-text);
}

.landing-pricing-billing-option--active {
  background: linear-gradient(135deg, var(--landing-primary), var(--landing-accent));
  color: #fff;
  box-shadow: 0 8px 20px #3390ec47;
}

.landing-pricing-billing-save {
  letter-spacing: .01em;
  color: #b45309;
  background: #fef3c7;
  border-radius: 999px;
  align-items: center;
  padding: 3px 8px;
  font-size: .68rem;
  font-weight: 800;
  display: inline-flex;
}

.landing-pricing-billing-option--active .landing-pricing-billing-save {
  color: #fff;
  background: #ffffff38;
}

@media (max-width: 520px) {
  .landing-pricing-billing-toggle {
    justify-content: center;
    width: 100%;
  }

  .landing-pricing-billing-option {
    flex: 1;
    justify-content: center;
    padding: 10px 12px;
    font-size: .84rem;
  }

  .landing-pricing-billing-save {
    display: none;
  }
}

.landing-section--pricing {
  padding-top: 0;
}

.landing-pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
  gap: 20px;
  display: grid;
}

@media (min-width: 1200px) {
  .landing-pricing-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }

  .landing-pricing-grid > .landing-pricing-card {
    grid-column: span 2;
  }

  .landing-pricing-grid--remainder-1 > .landing-pricing-card:last-child {
    grid-column: 1 / -1;
  }

  .landing-pricing-grid--remainder-2 > .landing-pricing-card:nth-last-child(-n+2) {
    grid-column: span 3;
  }
}

@media (min-width: 1400px) {
  .landing-pricing-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.landing-pricing-wrap {
  justify-content: center;
  display: flex;
}

.landing-pricing-card {
  background: var(--landing-card-solid);
  width: 100%;
  box-shadow: var(--landing-shadow);
  text-align: center;
  border: 2px solid #3390ec29;
  border-radius: 20px;
  flex-direction: column;
  height: 100%;
  padding: 22px 18px 18px;
  display: flex;
  position: relative;
}

.landing-pricing-card--popular {
  box-shadow: var(--landing-shadow);
  border-color: #ea580c6b;
  padding-top: 26px;
}

.landing-pricing-card--horizontal {
  text-align: start;
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr) auto;
  align-items: start;
  gap: 20px 28px;
  padding: 28px 28px 24px;
  display: grid;
}

.landing-pricing-card--horizontal .landing-pricing-popular {
  inset-inline-start: 28px;
  transform: none;
}

.landing-pricing-card--horizontal .landing-pricing-name {
  text-align: start;
}

.landing-pricing-card--horizontal .landing-pricing-price {
  justify-content: flex-start;
}

.landing-pricing-card--horizontal .landing-pricing-card__aside {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.landing-pricing-card--horizontal .landing-pricing-card__main {
  min-width: 0;
}

.landing-pricing-card--horizontal .landing-pricing-card__action {
  align-self: stretch;
  align-items: flex-end;
  padding-bottom: 4px;
  display: flex;
}

.landing-pricing-card--horizontal .landing-pricing-card__action .landing-btn {
  white-space: nowrap;
  width: auto;
  min-width: 160px;
}

.landing-pricing-features--horizontal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  display: grid;
}

@media (max-width: 1199px) {
  .landing-pricing-card--horizontal {
    text-align: center;
    flex-direction: column;
    display: flex;
  }

  .landing-pricing-card--horizontal .landing-pricing-name, .landing-pricing-card--horizontal .landing-pricing-price {
    text-align: center;
    justify-content: center;
    align-self: center;
  }

  .landing-pricing-card--horizontal .landing-pricing-card__action {
    align-self: stretch;
    padding-bottom: 0;
  }

  .landing-pricing-card--horizontal .landing-pricing-card__action .landing-btn {
    width: 100%;
  }

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

.landing-pricing-popular {
  top: -12px;
  color: #fff;
  background: linear-gradient(135deg, var(--landing-primary), var(--landing-accent));
  white-space: nowrap;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: .72rem;
  font-weight: 700;
  position: absolute;
  inset-inline-start: 50%;
  transform: translateX(-50%);
}

.landing-pricing-savings {
  color: #b45309;
  background: #fef3c7;
  border-radius: 999px;
  margin-bottom: 10px;
  padding: 4px 12px;
  font-size: .72rem;
  font-weight: 700;
  display: inline-block;
}

.landing-pricing-name {
  color: var(--landing-text);
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 800;
}

.landing-pricing-tagline {
  color: var(--landing-muted);
  margin: 0 0 10px;
  font-size: .8rem;
  line-height: 1.4;
}

.landing-pricing-plan {
  color: var(--landing-primary-dark);
  background: var(--landing-primary-soft);
  border-radius: 999px;
  margin-bottom: 16px;
  padding: 5px 14px;
  font-size: .78rem;
  font-weight: 700;
  display: inline-block;
}

.landing-pricing-price {
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
  display: flex;
}

.landing-pricing-amount {
  letter-spacing: -.03em;
  color: var(--landing-text);
  font-size: clamp(1.75rem, 4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.1;
}

.landing-pricing-currency {
  color: var(--landing-muted);
  font-size: .9rem;
  font-weight: 600;
}

.landing-pricing-equivalent {
  min-height: 1.1rem;
  color: var(--landing-primary-dark);
  margin: 0 0 12px;
  font-size: .76rem;
  font-weight: 600;
}

.landing-pricing-equivalent--spacer {
  visibility: hidden;
}

.landing-pricing-features {
  text-align: start;
  flex: 1;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.landing-pricing-features--cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  column-gap: 12px;
  display: grid;
}

.landing-pricing-features li {
  border-bottom: none;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  font-size: .8rem;
  line-height: 1.35;
  display: flex;
}

.landing-pricing-features li:last-child {
  border-bottom: none;
}

.landing-pricing-check {
  background: var(--landing-primary-soft);
  width: 18px;
  height: 18px;
  color: var(--landing-primary);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  margin-top: 1px;
  display: flex;
}

.landing-pricing-check svg {
  width: 11px;
  height: 11px;
}

.landing-pricing-card .landing-btn {
  width: 100%;
  margin-top: auto;
}

.landing-pricing-limitations {
  text-align: start;
  margin-bottom: 16px;
}

.landing-pricing-limitations__label {
  color: var(--landing-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 8px;
  font-size: .75rem;
  font-weight: 700;
}

.landing-pricing-features--limits li {
  color: var(--landing-muted);
}

.landing-pricing-x {
  color: #dc2626;
  background: #fee2e2;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  display: flex;
}

.landing-pricing-x svg {
  width: 10px;
  height: 10px;
}

.landing-pricing-card--contact {
  border-style: dashed;
  border-color: #3390ec59;
}

.landing-pricing-addons {
  padding-top: 8px;
}

.landing-pricing-addons-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
}

@media (min-width: 900px) {
  .landing-pricing-addons-grid {
    grid-template-columns: repeat(6, 1fr);
    max-width: 1080px;
  }

  .landing-pricing-addons-grid > .landing-pricing-addon-card {
    grid-column: span 2;
  }

  .landing-pricing-addons-grid--remainder-1 > .landing-pricing-addon-card:last-child {
    grid-column: 1 / -1;
  }

  .landing-pricing-addons-grid--remainder-2 > .landing-pricing-addon-card:nth-last-child(-n+2) {
    grid-column: span 3;
  }
}

.landing-pricing-addon-card {
  background: var(--landing-card-solid);
  box-shadow: var(--landing-shadow);
  text-align: center;
  border: 2px solid #3390ec29;
  border-radius: 20px;
  padding: 22px 18px;
}

.landing-pricing-addon-price {
  color: var(--landing-text);
  font-size: clamp(1.75rem, 4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.1;
}

.landing-pricing-addon-arrow {
  color: var(--landing-primary);
  margin: 8px 0 12px;
  font-size: 1.25rem;
  font-weight: 700;
}

.landing-pricing-addon-title {
  color: var(--landing-text);
  margin: 0;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.45;
}

.landing-pricing-features__label {
  color: var(--landing-muted);
  text-align: start;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 10px;
  font-size: .75rem;
  font-weight: 700;
}

.landing-pricing-post-trial {
  text-align: start;
  background: #3390ec14;
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 12px 14px;
}

.landing-pricing-post-trial__title {
  color: var(--landing-primary-dark);
  margin: 0 0 8px;
  font-size: .78rem;
  font-weight: 700;
}

.landing-pricing-post-trial ul {
  color: var(--landing-muted);
  margin: 0;
  padding: 0 0 0 16px;
  font-size: .82rem;
  line-height: 1.55;
}

.landing-pricing-card--trial {
  border-color: #10b98159;
}

.landing-cta-band {
  text-align: center;
  color: #fff;
  box-shadow: var(--landing-shadow-lg);
  background: linear-gradient(135deg, #17212b 0%, #1e3a5f 50%, #2a4a7a 100%);
  border-radius: 28px;
  margin-bottom: 56px;
  padding: 48px 32px;
}

.landing-cta-band h2 {
  letter-spacing: -.02em;
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 800;
}

.landing-cta-band p {
  color: #ffffffbf;
  margin: 0 0 24px;
  font-size: .95rem;
  line-height: 1.6;
}

.landing-cta-band .landing-btn--primary {
  color: var(--landing-primary-dark);
  background: #fff;
  box-shadow: 0 4px 20px #0003;
}

.landing-cta-band .landing-btn--primary:hover {
  background: #f8fafc;
}

.landing-footer {
  border-top: 1px solid var(--landing-line);
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 0 40px;
  display: flex;
}

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

.landing-footer-brand .auth-logo {
  width: 32px;
  height: 32px;
}

.landing-footer-tagline {
  font-size: .85rem;
  font-weight: 600;
}

.landing-footer-meta {
  color: var(--landing-muted);
  font-size: .78rem;
}

.landing-footer-meta a {
  color: var(--landing-primary);
  text-decoration: none;
}

.landing-footer-meta a:hover {
  text-decoration: underline;
}

.landing-menu-btn {
  border: 1px solid var(--landing-line);
  cursor: pointer;
  background: #ffffffbf;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0 10px;
  display: flex;
}

.landing-menu-btn span {
  background: var(--landing-text);
  border-radius: 999px;
  height: 2px;
  display: block;
}

@media (min-width: 900px) {
  .landing-menu-btn {
    display: none;
  }
}

.landing-mobile-nav {
  border: 1px solid var(--landing-line);
  box-shadow: var(--landing-shadow);
  background: #ffffffe0;
  border-radius: 16px;
  flex-direction: column;
  gap: 4px;
  margin: -8px 0 24px;
  padding: 12px;
  display: flex;
}

@media (min-width: 900px) {
  .landing-mobile-nav {
    display: none;
  }
}

.landing-mobile-nav a {
  color: var(--landing-text);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
}

.landing-mobile-nav a:hover, .landing-mobile-nav a.is-active {
  background: var(--landing-primary-soft);
  color: var(--landing-primary-dark);
}

.landing-page-header {
  margin-bottom: 40px;
  padding-top: 8px;
}

.landing-page-header h1 {
  letter-spacing: -.03em;
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
}

.landing-page-header p {
  max-width: 640px;
  color: var(--landing-muted);
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.landing-page-meta {
  margin-top: 10px !important;
  font-size: .82rem !important;
}

.landing-section-cta {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  display: flex;
}

.landing-contact-grid {
  gap: 16px;
  display: grid;
}

@media (min-width: 768px) {
  .landing-contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.landing-contact-layout {
  align-items: start;
  gap: 24px;
  display: grid;
}

@media (min-width: 960px) {
  .landing-contact-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 28px;
  }
}

.landing-contact-form-card {
  border-radius: var(--landing-radius);
  background: var(--landing-card-solid);
  border: 1px solid var(--landing-line);
  box-shadow: var(--landing-shadow);
  padding: 28px 24px;
}

.landing-contact-form-title, .landing-contact-card-title {
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-weight: 800;
}

.landing-contact-form {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.landing-contact-form-row {
  gap: 16px;
  display: grid;
}

@media (min-width: 640px) {
  .landing-contact-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.landing-field {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.landing-field span {
  color: var(--landing-text);
  font-size: .82rem;
  font-weight: 600;
}

.landing-field input, .landing-field textarea {
  border: 1px solid var(--landing-line);
  width: 100%;
  color: var(--landing-text);
  font: inherit;
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color .15s, box-shadow .15s;
}

.landing-field input:focus, .landing-field textarea:focus {
  border-color: #3390ec73;
  outline: none;
  box-shadow: 0 0 0 3px #3390ec1f;
}

.landing-field textarea {
  resize: vertical;
  min-height: 140px;
}

.landing-contact-notice {
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 12px 14px;
  font-size: .88rem;
  line-height: 1.55;
}

.landing-contact-notice--success {
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.landing-contact-notice--error {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.landing-contact-aside {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.landing-contact-card--company {
  padding-top: 22px;
}

.landing-contact-details {
  flex-direction: column;
  gap: 16px;
  margin: 0;
  display: flex;
}

.landing-contact-details div {
  margin: 0;
}

.landing-contact-details dt {
  color: var(--landing-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 4px;
  font-size: .72rem;
  font-weight: 700;
}

.landing-contact-details dd {
  color: var(--landing-text);
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
}

.landing-contact-muted {
  color: var(--landing-muted) !important;
  margin-top: 4px !important;
  font-size: .8rem !important;
}

.landing-contact-card--social {
  padding-top: 22px;
}

.landing-contact-social-desc {
  color: var(--landing-muted);
  margin: -8px 0 16px;
  font-size: .85rem;
  line-height: 1.55;
}

.landing-contact-social-list {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.landing-contact-social-link {
  border: 1px solid var(--landing-line);
  color: inherit;
  background: #fff;
  border-radius: 14px;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  display: flex;
}

.landing-contact-social-link:hover {
  box-shadow: var(--landing-shadow);
  border-color: #3390ec47;
  transform: translateY(-1px);
}

.landing-contact-social-icon {
  color: #fff;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: flex;
}

.landing-contact-social-icon--telegram {
  background: #3390ec;
}

.landing-contact-social-icon--instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.landing-contact-social-icon--whatsapp {
  background: #25d366;
}

.landing-contact-social-text {
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.landing-contact-social-text strong {
  color: var(--landing-text);
  font-size: .92rem;
  font-weight: 700;
}

.landing-contact-social-text span {
  color: var(--landing-muted);
  font-size: .8rem;
}

.landing-contact-social-link--static {
  cursor: default;
  opacity: .88;
}

.landing-contact-social-link--static:hover {
  border-color: var(--landing-line);
  box-shadow: none;
  transform: none;
}

.landing-contact-card {
  border-radius: var(--landing-radius);
  background: var(--landing-card-solid);
  border: 1px solid var(--landing-line);
  box-shadow: var(--landing-shadow);
  padding: 24px;
}

.landing-contact-label {
  color: var(--landing-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
  font-size: .78rem;
  font-weight: 700;
  display: block;
}

.landing-contact-value {
  color: var(--landing-primary-dark);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.landing-contact-value:hover {
  text-decoration: underline;
}

.landing-contact-note, .landing-contact-response {
  color: var(--landing-muted);
  margin: 10px 0 0;
  font-size: .85rem;
  line-height: 1.55;
}

.landing-contact-response {
  text-align: center;
  margin-top: 24px;
}

.landing-prose {
  border-radius: var(--landing-radius);
  background: var(--landing-card-solid);
  border: 1px solid var(--landing-line);
  max-width: 760px;
  box-shadow: var(--landing-shadow);
  margin: 0 auto 64px;
  padding: 28px 24px;
}

.landing-prose section + section {
  border-top: 1px solid var(--landing-line);
  margin-top: 24px;
  padding-top: 24px;
}

.landing-prose h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
}

.landing-prose p {
  color: var(--landing-muted);
  margin: 0;
  font-size: .92rem;
  line-height: 1.75;
}

.landing-prose--legal h3 {
  color: var(--landing-text);
  margin: 16px 0 8px;
  font-size: .95rem;
  font-weight: 700;
}

.landing-prose--legal p + p, .landing-prose--legal p + ul, .landing-prose--legal p + ol, .landing-prose--legal ul + p, .landing-prose--legal ol + p, .landing-prose--legal h3 + ul, .landing-prose--legal h3 + ol {
  margin-top: 10px;
}

.landing-prose--legal ul, .landing-prose--legal ol {
  color: var(--landing-muted);
  margin: 0;
  padding-left: 1.25rem;
  font-size: .92rem;
  line-height: 1.75;
}

.landing-prose--legal li + li {
  margin-top: 6px;
}

.landing-prose--legal a {
  color: var(--landing-accent);
  text-underline-offset: 2px;
  text-decoration: underline;
}

.landing-prose--legal a:hover {
  opacity: .85;
}

.landing-empty-state {
  text-align: center;
  border-radius: var(--landing-radius);
  background: var(--landing-card-solid);
  border: 1px solid var(--landing-line);
  max-width: 520px;
  box-shadow: var(--landing-shadow);
  margin: 0 auto;
  padding: 48px 24px;
}

.landing-empty-icon {
  background: var(--landing-primary-soft);
  width: 56px;
  height: 56px;
  color: var(--landing-primary);
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
  display: flex;
}

.landing-empty-icon svg {
  width: 26px;
  height: 26px;
}

.landing-empty-state h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
}

.landing-empty-state p {
  color: var(--landing-muted);
  margin: 0 0 20px;
  font-size: .92rem;
  line-height: 1.6;
}

.landing-footer-grid {
  gap: 24px;
  width: 100%;
  margin-bottom: 16px;
  display: grid;
}

@media (min-width: 640px) {
  .landing-footer-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.landing-footer-links strong {
  margin-bottom: 10px;
  font-size: .82rem;
  display: block;
}

.landing-footer-link-list {
  flex-wrap: wrap;
  gap: 8px 16px;
  display: flex;
}

.landing-footer-link-list a {
  color: var(--landing-muted);
  font-size: .85rem;
  text-decoration: none;
}

.landing-footer-link-list a:hover {
  color: var(--landing-primary);
}

.landing-blog-grid {
  gap: 24px;
  display: grid;
}

@media (min-width: 700px) {
  .landing-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .landing-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

.landing-blog-card {
  border-radius: var(--landing-radius);
  background: var(--landing-card-solid);
  border: 1px solid var(--landing-line);
  box-shadow: var(--landing-shadow);
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
}

.landing-blog-card:hover {
  box-shadow: var(--landing-shadow-lg);
  transform: translateY(-3px);
}

.landing-blog-card__link {
  height: 100%;
  color: inherit;
  flex-direction: column;
  text-decoration: none;
  display: flex;
}

.landing-blog-card__cover {
  justify-content: center;
  align-items: center;
  min-height: 148px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.landing-blog-card__cover:after {
  content: "";
  background: linear-gradient(#0000 40%, #0f172a14);
  position: absolute;
  inset: 0;
}

.landing-blog-card__cover--telegram {
  color: #2a8adf;
  background: linear-gradient(135deg, #e7f3ff 0%, #d4ebff 55%, #b9dcff 100%);
}

.landing-blog-card__cover--instagram {
  color: #db2777;
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 55%, #f9a8d4 100%);
}

.landing-blog-card__cover--whatsapp {
  color: #16a34a;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 55%, #86efac 100%);
}

.landing-blog-card__cover--general {
  color: var(--landing-accent);
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 55%, #c7d2fe 100%);
}

.landing-blog-card__cover-icon {
  background: #ffffffb8;
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
  box-shadow: 0 8px 24px #0f172a14;
}

.landing-blog-card__cover-icon svg {
  width: 30px;
  height: 30px;
}

.landing-blog-card__body {
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 22px 22px 24px;
  display: flex;
}

.landing-blog-card__meta {
  color: var(--landing-muted);
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  display: flex;
}

.landing-blog-card__category {
  background: var(--landing-primary-soft);
  color: var(--landing-primary-dark);
  border-radius: 999px;
  align-items: center;
  padding: 4px 10px;
  font-weight: 600;
  display: inline-flex;
}

.landing-blog-card__category--telegram {
  color: #2a8adf;
  background: #e7f3ff;
}

.landing-blog-card__category--instagram {
  color: #db2777;
  background: #fce7f3;
}

.landing-blog-card__category--whatsapp {
  color: #16a34a;
  background: #dcfce7;
}

.landing-blog-card__category--general {
  color: var(--landing-accent-dark);
  background: #eef2ff;
}

.landing-blog-card__dot {
  opacity: .55;
}

.landing-blog-card__title {
  color: var(--landing-text);
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
}

.landing-blog-card__excerpt {
  color: var(--landing-muted);
  flex: 1;
  margin: 0;
  font-size: .9rem;
  line-height: 1.65;
}

.landing-blog-card__more {
  color: var(--landing-primary-dark);
  margin-top: 4px;
  font-size: .86rem;
  font-weight: 600;
}

.landing-blog-back-wrap {
  max-width: 760px;
  margin: 0 auto 8px;
}

.landing-blog-back {
  color: var(--landing-muted);
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.landing-blog-back svg {
  width: 18px;
  height: 18px;
}

.landing-blog-back:hover {
  color: var(--landing-primary);
}

.landing-blog-post-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.landing-blog-post-header h1 {
  color: var(--landing-text);
  margin: 14px 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.35;
}

.landing-blog-post-meta {
  color: var(--landing-muted);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  display: flex;
}

.landing-blog-post-excerpt {
  color: var(--landing-muted);
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.landing-blog-article {
  border-radius: var(--landing-radius);
  background: var(--landing-card-solid);
  border: 1px solid var(--landing-line);
  max-width: 760px;
  box-shadow: var(--landing-shadow);
  margin: 0 auto 48px;
  padding: 32px 28px;
}

.landing-blog-article section + section {
  border-top: 1px solid var(--landing-line);
  margin-top: 28px;
  padding-top: 28px;
}

.landing-blog-article h2 {
  color: var(--landing-text);
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

.landing-blog-article p {
  color: var(--landing-muted);
  margin: 0 0 14px;
  font-size: .95rem;
  line-height: 1.8;
}

.landing-blog-article p:last-child {
  margin-bottom: 0;
}

.landing-blog-post-cta {
  margin-bottom: 64px;
}

/* [project]/src/app/landing/marketing-chrome.css [app-client] (css) */
.marketing-header-sticky {
  --header-pad-y: 20px;
  --header-brand-size: 42px;
  z-index: 240;
  isolation: isolate;
  width: 100%;
  position: sticky;
  top: 0;
}

.marketing-header-sticky__backdrop {
  pointer-events: none;
  opacity: 0;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  background: none;
  border-bottom: 1px solid #0000;
  transition: opacity .3s cubic-bezier(.22, 1, .36, 1), background .3s cubic-bezier(.22, 1, .36, 1), -webkit-backdrop-filter .3s cubic-bezier(.22, 1, .36, 1), backdrop-filter .3s cubic-bezier(.22, 1, .36, 1), border-color .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s cubic-bezier(.22, 1, .36, 1);
  position: absolute;
  inset: 0;
}

.marketing-header-sticky.is-scrolled .marketing-header-sticky__backdrop {
  opacity: 1;
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  background: #ffffffd1;
  border-bottom-color: #94a3b840;
  box-shadow: 0 8px 32px #0f172a12;
}

.marketing-header-sticky.is-menu-open .marketing-header-sticky__backdrop {
  opacity: 0;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-bottom-color: #0000;
}

.marketing-header-sticky.is-scrolled {
  --header-pad-y: 12px;
  --header-brand-size: 38px;
}

.marketing-header-sticky.is-menu-open {
  z-index: 200;
}

@media (max-width: 1099px) {
  .marketing-header-sticky.is-menu-open .marketing-header__brand, .marketing-header-sticky.is-menu-open .marketing-header__actions .landing-btn, .marketing-header-sticky.is-menu-open .marketing-header__menu-btn {
    visibility: hidden;
    pointer-events: none;
  }
}

.marketing-header-sticky__inner {
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.marketing-header {
  padding: var(--header-pad-y) 0;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: padding .3s cubic-bezier(.22, 1, .36, 1);
  display: flex;
}

.marketing-header__brand {
  color: inherit;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  display: flex;
}

.marketing-header__brand .auth-logo {
  width: var(--header-brand-size);
  height: var(--header-brand-size);
  flex-shrink: 0;
  transition: width .35s cubic-bezier(.22, 1, .36, 1), height .35s cubic-bezier(.22, 1, .36, 1);
}

.marketing-header__brand-text {
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  display: flex;
}

.marketing-header__brand-name {
  letter-spacing: -.02em;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

.marketing-header__brand-sub {
  color: var(--landing-muted);
  opacity: 1;
  max-height: 2.6em;
  font-size: .72rem;
  line-height: 1.3;
  transition: max-height .35s cubic-bezier(.22, 1, .36, 1), opacity .28s, margin .35s cubic-bezier(.22, 1, .36, 1);
  overflow: hidden;
}

.marketing-header-sticky.is-scrolled .marketing-header__brand-sub {
  opacity: 0;
  max-height: 0;
  margin-top: -2px;
}

@media (min-width: 900px) {
  .marketing-header-sticky.is-scrolled .marketing-header__brand-sub {
    opacity: 1;
    max-height: 2.6em;
    margin-top: 0;
  }
}

.marketing-header__nav {
  align-items: center;
  gap: 16px;
  display: none;
}

@media (min-width: 1100px) {
  .marketing-header__nav {
    gap: 22px;
    display: flex;
  }
}

.marketing-header__nav a {
  color: var(--landing-muted);
  padding-block: 4px;
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s;
  position: relative;
}

.marketing-header__nav a:after {
  content: "";
  inset-inline: 0;
  background: linear-gradient(90deg, var(--landing-primary), var(--landing-accent));
  transform-origin: center;
  border-radius: 999px;
  height: 2px;
  transition: transform .25s cubic-bezier(.22, 1, .36, 1);
  position: absolute;
  bottom: -2px;
  transform: scaleX(0);
}

@media (min-width: 1100px) {
  .marketing-header__nav a {
    font-size: .875rem;
  }
}

.marketing-header__nav a:hover, .marketing-header__nav a.is-active {
  color: var(--landing-primary);
}

.marketing-header__nav a.is-active:after, .marketing-header__nav a:hover:after {
  transform: scaleX(1);
}

.marketing-header__nav a.is-active {
  font-weight: 700;
}

.marketing-header__actions {
  align-items: center;
  gap: 8px;
  display: flex;
}

@media (max-width: 1099px) {
  .marketing-header__actions .landing-btn--primary {
    order: 1;
  }

  .marketing-header__menu-btn {
    order: 2;
  }
}

.marketing-header__menu-btn {
  cursor: pointer;
  background: none;
  border: 1px solid #0000;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  transition: background .2s, border-color .2s, box-shadow .2s;
  display: flex;
}

.marketing-header-sticky.is-scrolled .marketing-header__menu-btn, .marketing-header-sticky.is-menu-open .marketing-header__menu-btn {
  border-color: var(--landing-line);
  background: #ffffffe0;
  box-shadow: 0 2px 10px #0f172a0d;
}

.marketing-header__menu-btn span {
  background: var(--landing-text);
  border-radius: 999px;
  width: 18px;
  height: 2px;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), opacity .2s, width .28s cubic-bezier(.22, 1, .36, 1);
  display: block;
}

.marketing-header-sticky.is-menu-open .marketing-header__menu-btn span:first-child {
  transform: translateY(7px)rotate(45deg);
}

.marketing-header-sticky.is-menu-open .marketing-header__menu-btn span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.marketing-header-sticky.is-menu-open .marketing-header__menu-btn span:nth-child(3) {
  transform: translateY(-7px)rotate(-45deg);
}

@media (min-width: 1100px) {
  .marketing-header__menu-btn {
    display: none;
  }
}

.marketing-header__actions .landing-btn--ghost {
  display: none;
}

@media (min-width: 640px) {
  .marketing-header__actions .landing-btn--ghost {
    display: inline-flex;
  }
}

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

.marketing-header__drawer.is-open {
  pointer-events: auto;
}

.marketing-header__drawer-scrim {
  z-index: 0;
  opacity: 0;
  cursor: pointer;
  background: #0f172a6b;
  border: none;
  margin: 0;
  padding: 0;
  transition: opacity .3s;
  position: absolute;
  inset: 0;
}

.marketing-header__drawer.is-open .marketing-header__drawer-scrim {
  opacity: 1;
}

.marketing-header__mobile-nav {
  top: 0;
  bottom: 0;
  z-index: 1;
  will-change: transform;
  background: linear-gradient(#f4f8fd 0%, #fff 38% 100%);
  border-inline-start: 1px solid #94a3b833;
  flex-direction: column;
  width: min(340px, 92vw);
  max-width: 100%;
  transition: transform .34s cubic-bezier(.22, 1, .36, 1);
  display: flex;
  position: absolute;
  inset-inline-end: 0;
  transform: translateX(100%);
  box-shadow: -20px 0 60px #0f172a29;
}

[dir="rtl"] .marketing-header__mobile-nav {
  transform: translateX(-100%);
  box-shadow: 16px 0 48px #0f172a24;
}

.marketing-header__drawer.is-open .marketing-header__mobile-nav {
  transform: translateX(0);
}

@media (min-width: 1100px) {
  .marketing-header__drawer {
    display: none;
  }
}

.marketing-header__mobile-nav-panel {
  height: 100%;
  padding: calc(16px + env(safe-area-inset-top, 0px))
    14px
    calc(20px + env(safe-area-inset-bottom, 0px));
  overscroll-behavior: contain;
  flex-direction: column;
  gap: 0;
  display: flex;
  overflow-y: auto;
}

.marketing-header__mobile-nav-head {
  background: linear-gradient(135deg, #3390ec1a 0%, #6366f114 100%);
  border: 1px solid #3390ec24;
  border-radius: 16px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px;
  display: flex;
}

.marketing-header__mobile-nav-brand {
  min-width: 0;
  color: inherit;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  display: flex;
}

.marketing-header__mobile-nav-brand .auth-logo {
  color: #fff;
  background: linear-gradient(145deg, #3390ec 0%, #6366f1 55%, #4f46e5 100%);
  border-radius: 12px;
  flex-shrink: 0;
  place-items: center;
  width: 40px;
  height: 40px;
  display: grid;
  box-shadow: 0 6px 16px #3390ec47, inset 0 0 0 1px #ffffff2e;
}

.marketing-header__mobile-nav-brand .auth-logo svg {
  width: 55%;
  height: 55%;
}

.marketing-header__mobile-nav-brand strong {
  letter-spacing: -.02em;
  color: var(--landing-text);
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.2;
  display: block;
}

.marketing-header__mobile-nav-brand span {
  color: var(--landing-muted);
  margin-top: 2px;
  font-size: .62rem;
  line-height: 1.35;
  display: block;
}

.marketing-header__drawer-close {
  width: 36px;
  height: 36px;
  color: var(--landing-text);
  cursor: pointer;
  background: #ffffffeb;
  border: 1px solid #94a3b847;
  border-radius: 11px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  transition: background .18s, border-color .18s, transform .18s;
  display: inline-flex;
}

.marketing-header__drawer-close svg {
  width: 18px;
  height: 18px;
}

.marketing-header__drawer-close:hover {
  background: #fff;
  border-color: #3390ec4d;
  transform: scale(1.04);
}

.marketing-header__mobile-nav-links {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.marketing-header__mobile-nav-link {
  color: var(--landing-text);
  background: #ffffffb8;
  border: 1px solid #94a3b82e;
  border-radius: 14px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  text-decoration: none;
  transition: background .2s, border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  box-shadow: inset 0 1px #ffffffd9;
}

.marketing-header__mobile-nav-link:hover {
  background: #fff;
  border-color: #3390ec47;
  transform: translateX(-2px);
  box-shadow: 0 6px 18px #3390ec1a;
}

[dir="rtl"] .marketing-header__mobile-nav-link:hover {
  transform: translateX(2px);
}

.marketing-header__mobile-nav-link.is-active {
  background: linear-gradient(135deg, #3390ec24 0%, #6366f11a 100%);
  border-color: #3390ec52;
  box-shadow: 0 8px 22px #3390ec1f;
}

.marketing-header__mobile-nav-link-icon {
  width: 36px;
  height: 36px;
  color: var(--landing-primary-dark);
  background: linear-gradient(145deg, #e7f3ff 0%, #eef2ff 100%);
  border: 1px solid #3390ec24;
  border-radius: 11px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.marketing-header__mobile-nav-link-icon svg {
  width: 17px;
  height: 17px;
}

.marketing-header__mobile-nav-link.is-active .marketing-header__mobile-nav-link-icon {
  color: #fff;
  background: linear-gradient(145deg, #3390ec 0%, #6366f1 100%);
  border-color: #0000;
}

.marketing-header__mobile-nav-link-label {
  letter-spacing: -.01em;
  flex: 1;
  min-width: 0;
  font-size: .92rem;
  font-weight: 600;
}

.marketing-header__mobile-nav-link.is-active .marketing-header__mobile-nav-link-label {
  color: var(--landing-primary-dark);
  font-weight: 800;
}

.marketing-header__mobile-nav-link-arrow {
  width: 22px;
  height: 22px;
  color: var(--landing-muted);
  opacity: .55;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  transition: opacity .2s, transform .2s;
  display: inline-flex;
}

.marketing-header__mobile-nav-link-arrow svg {
  width: 16px;
  height: 16px;
}

[dir="rtl"] .marketing-header__mobile-nav-link-arrow svg {
  transform: scaleX(-1);
}

.marketing-header__mobile-nav-link:hover .marketing-header__mobile-nav-link-arrow, .marketing-header__mobile-nav-link.is-active .marketing-header__mobile-nav-link-arrow {
  opacity: 1;
  color: var(--landing-primary);
}

.marketing-header__mobile-nav-link.is-active .marketing-header__mobile-nav-link-arrow {
  transform: translateX(2px);
}

[dir="rtl"] .marketing-header__mobile-nav-link.is-active .marketing-header__mobile-nav-link-arrow {
  transform: translateX(-2px);
}

.marketing-header__mobile-nav-cta {
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  display: flex;
}

.marketing-header__mobile-nav-cta .landing-btn {
  letter-spacing: -.01em;
  border-radius: 14px;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 14px 18px;
  font-size: .92rem;
  font-weight: 700;
}

.marketing-header__mobile-nav-cta .landing-btn--outline {
  color: var(--landing-text);
  background: linear-gradient(#fff 0%, #f8fafc 100%);
  border: 1px solid #94a3b852;
  box-shadow: inset 0 1px #ffffffe6;
}

.marketing-header__mobile-nav-cta .landing-btn--outline:hover {
  color: var(--landing-primary-dark);
  background: #fff;
  border-color: #3390ec59;
  box-shadow: 0 4px 14px #3390ec1a;
}

.marketing-header__mobile-nav-cta .landing-btn--primary {
  color: #fff;
  background: linear-gradient(145deg, #3390ec 0%, #5b6cf0 52%, #4f46e5 100%);
  border: 1px solid #ffffff2e;
  box-shadow: inset 0 1px #ffffff38, 0 10px 28px #3390ec57;
}

.marketing-header__mobile-nav-cta .landing-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px #ffffff47, 0 14px 32px #3390ec6b;
}

@media (prefers-reduced-motion: reduce) {
  .marketing-header-sticky, .marketing-header-sticky__backdrop, .marketing-header, .marketing-header__brand .auth-logo, .marketing-header__brand-sub, .marketing-header__nav a:after, .marketing-header__menu-btn, .marketing-header__menu-btn span, .marketing-header__drawer-scrim, .marketing-header__mobile-nav {
    transition: none;
  }
}

.marketing-footer {
  margin-top: 56px;
  padding-bottom: 24px;
}

.marketing-footer__shell {
  color: #f8fafc;
  background: linear-gradient(160deg, #17212b 0%, #1e3a5f 52%, #243b55 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px #17212b38, inset 0 1px #ffffff14;
}

.marketing-footer__top {
  gap: 32px;
  padding: 40px 28px 28px;
  display: grid;
}

@media (min-width: 960px) {
  .marketing-footer__top {
    grid-template-columns: minmax(220px, .9fr) minmax(0, 1.4fr);
    gap: 40px;
    padding: 44px 36px 32px;
  }
}

.marketing-footer__brand-block {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.marketing-footer__brand {
  color: inherit;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  display: flex;
}

.marketing-footer__brand .auth-logo {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.marketing-footer__brand strong {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  display: block;
}

.marketing-footer__brand span {
  color: #ffffffd1;
  margin-top: 2px;
  font-size: .78rem;
  line-height: 1.4;
  display: block;
}

.marketing-footer__desc {
  color: #ffffffe0;
  max-width: 340px;
  margin: 0;
  font-size: .88rem;
  line-height: 1.7;
}

.marketing-footer__columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
  display: grid;
}

@media (min-width: 640px) {
  .marketing-footer__columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.marketing-footer__column h3 {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #ffffffe6;
  margin: 0 0 12px;
  font-size: .72rem;
  font-weight: 700;
}

.marketing-footer__column ul {
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.marketing-footer__column a {
  color: #fff;
  font-size: .88rem;
  text-decoration: none;
  transition: opacity .15s;
}

.marketing-footer__column a:hover {
  opacity: .88;
}

.marketing-footer__column--contact a {
  color: #e8f4ff;
}

.marketing-footer__contact-row {
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.marketing-footer__social-icon {
  color: #fff;
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: inline-flex;
}

.marketing-footer__social-icon svg {
  width: 16px;
  height: 16px;
}

.marketing-footer__social-icon--telegram {
  background: #3390ec;
}

.marketing-footer__social-icon--instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.marketing-footer__social-icon--whatsapp {
  background: #25d366;
}

.marketing-footer__contact-static {
  color: #ffffffb8;
  font-size: .88rem;
}

.marketing-footer__bottom {
  text-align: center;
  border-top: 1px solid #ffffff1f;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 28px 22px;
  display: flex;
}

@media (min-width: 768px) {
  .marketing-footer__bottom {
    text-align: start;
    flex-direction: row;
    justify-content: space-between;
    padding-inline: 36px;
  }
}

.marketing-footer__copyright {
  color: #ffffffe0;
  margin: 0;
  font-size: .78rem;
}

.marketing-footer__bottom-links {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  display: flex;
}

.marketing-footer__bottom-links a {
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
}

.marketing-footer__bottom-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/*# sourceMappingURL=src_app_landing_05b583p._.css.map*/