/* Sabiq public landing — spacious solid-color experience inspired by modern Arabic SaaS sites */
:root {
  --landing-primary: #5145dc;
  --landing-primary-dark: #312e81;
  --landing-hero: #efedff;
  --landing-section: #f7f6ff;
  --landing-surface: #ffffff;
  --landing-ink: #17143f;
  --landing-muted: #65627d;
  --landing-line: #dfdcf2;
  --landing-mint: #e9f8f2;
  --landing-mint-strong: #0f9f73;
  --landing-shadow-soft: 0 18px 48px rgba(38, 31, 111, 0.08);
  --landing-shadow-card: 0 12px 32px rgba(38, 31, 111, 0.07);
}

html:not(.light) {
  --landing-hero: #19172c;
  --landing-section: #11101e;
  --landing-surface: #211f35;
  --landing-ink: #faf9ff;
  --landing-muted: #b7b3ca;
  --landing-line: #35314d;
  --landing-mint: #15352f;
  --landing-mint-strong: #55d6ac;
  --landing-shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.2);
  --landing-shadow-card: 0 12px 32px rgba(0, 0, 0, 0.16);
}

html {
  scroll-padding-top: 92px;
}

body.landing-salla {
  background: var(--landing-surface);
  color: var(--landing-ink);
}

body.landing-salla::before,
body.landing-salla .hero-orb,
body.landing-salla #hero::after,
body.landing-salla .solution-card::after,
body.landing-salla .feature-card::before,
body.landing-salla .steps-shell::before,
body.landing-salla .cta-bg,
body.landing-salla .cta-box::before {
  display: none;
}

body.landing-salla .container {
  width: min(100%, 1320px);
  max-width: 1320px;
  padding-inline: 34px;
}

body.landing-salla .gradient-text {
  color: var(--landing-primary);
  background: none;
  -webkit-text-fill-color: currentColor;
}

body.landing-salla .btn,
body.landing-salla .nav-icon-btn,
body.landing-salla .nav-link,
body.landing-salla .pricing-toggle,
body.landing-salla .toggle-switch,
body.landing-salla .pricing-popular,
body.landing-salla .social-btn {
  background-image: none;
}

body.landing-salla .btn {
  min-height: 50px;
  padding: 12px 25px;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

body.landing-salla .btn-primary {
  color: #fff;
  background: var(--landing-primary);
  box-shadow: 0 10px 24px rgba(81, 69, 220, 0.2);
}

body.landing-salla .btn-primary:hover {
  background: var(--landing-primary-dark);
  box-shadow: 0 13px 28px rgba(81, 69, 220, 0.24);
  transform: translateY(-2px);
}

body.landing-salla .btn-ghost {
  color: var(--landing-ink);
  background: transparent;
  border-color: color-mix(in srgb, var(--landing-ink) 22%, transparent);
  backdrop-filter: none;
}

body.landing-salla .btn-ghost:hover {
  background: color-mix(in srgb, var(--landing-surface) 65%, transparent);
}

/* Header */
body.landing-salla #navbar {
  padding: 0;
  background: var(--landing-hero);
  border-bottom: 1px solid color-mix(in srgb, var(--landing-primary) 10%, transparent);
}

body.landing-salla #navbar.scrolled {
  background: var(--landing-surface);
  border-bottom: 1px solid var(--landing-line);
  box-shadow: 0 8px 28px rgba(38, 31, 111, 0.06);
}

body.landing-salla #navbar .nav-inner,
body.landing-salla #navbar.scrolled .nav-inner {
  min-height: 78px;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.landing-salla .nav-logo-icon {
  color: #fff;
  background: var(--landing-primary);
  box-shadow: none;
}

body.landing-salla .nav-logo-icon.has-site-logo {
  background: transparent;
  box-shadow: none;
}

body.landing-salla .nav-links {
  gap: 6px;
}

body.landing-salla .nav-link {
  color: var(--landing-muted);
  background: transparent;
  font-size: 0.9rem;
}

body.landing-salla .nav-link:hover {
  color: var(--landing-primary);
  background: color-mix(in srgb, var(--landing-primary) 7%, transparent);
}

body.landing-salla .nav-icon-btn {
  color: var(--landing-ink);
  background: transparent;
  border-color: color-mix(in srgb, var(--landing-ink) 16%, transparent);
  backdrop-filter: none;
}

body.landing-salla .nav-icon-btn:hover {
  color: var(--landing-primary);
  background: var(--landing-surface);
}

body.landing-salla .nav-actions #nav-login-btn {
  background: transparent;
}

/* Hero */
body.landing-salla #hero {
  min-height: auto;
  padding: 142px 0 76px;
  background: var(--landing-hero);
}

body.landing-salla .hero-content {
  display: flex;
  flex-direction: column;
  gap: 56px;
  text-align: center;
}

body.landing-salla .hero-copy {
  width: min(100%, 940px);
  margin-inline: auto;
}

body.landing-salla .hero-badge {
  margin-bottom: 27px;
}

body.landing-salla .hero-badge .badge {
  padding: 9px 16px;
  color: var(--landing-primary-dark);
  background: var(--landing-surface);
  border: 1px solid color-mix(in srgb, var(--landing-primary) 18%, transparent);
  box-shadow: none;
  backdrop-filter: none;
}

body.landing-salla .hero-badge .badge::before {
  background: var(--landing-mint-strong);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--landing-mint-strong) 12%, transparent);
}

body.landing-salla .hero-title {
  max-width: 980px;
  margin: 0 auto 22px;
  color: var(--landing-ink);
  font-size: clamp(3.25rem, 7vw, 6.1rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

body.landing-salla .hero-sub {
  max-width: 820px;
  margin: 0 auto 31px;
  color: var(--landing-muted);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.95;
}

body.landing-salla .hero-cta {
  justify-content: center;
}

body.landing-salla .hero-cta .btn {
  min-width: 180px;
  justify-content: center;
}

body.landing-salla .hero-proof {
  justify-content: center;
  color: var(--landing-muted);
}

body.landing-salla .hero-proof-icons span {
  background: var(--landing-primary);
  border-color: var(--landing-hero);
}

body.landing-salla .hero-stats {
  justify-content: center;
  gap: 10px;
  margin-top: 31px;
}

body.landing-salla .hero-stats > div {
  min-width: 132px;
  padding: 12px 16px;
  background: color-mix(in srgb, var(--landing-surface) 80%, transparent);
  border: 1px solid color-mix(in srgb, var(--landing-primary) 12%, transparent);
  border-radius: 12px;
}

body.landing-salla .hero-visual {
  width: min(100%, 1040px);
  min-height: auto;
  margin-inline: auto;
}

body.landing-salla .product-stage {
  width: 100%;
  max-width: 1040px;
  padding: 15px;
  background: #dcd8ff;
  border: 1px solid #c9c3ff;
  border-radius: 26px;
  box-shadow: 0 28px 60px rgba(49, 46, 129, 0.15);
  transform: none;
}

body.landing-salla .product-stage-real {
  padding: 13px;
  overflow: hidden;
}

body.landing-salla .product-stage-real .product-window,
body.landing-salla .product-stage-real ~ .stage-float {
  display: none;
}

body.landing-salla .landing-real-interface-picture,
body.landing-salla .landing-real-interface {
  display: block;
  width: 100%;
}

body.landing-salla .landing-real-interface-picture {
  overflow: hidden;
  background: var(--landing-surface);
  border-radius: 16px;
}

body.landing-salla .landing-real-interface {
  height: auto;
  object-fit: cover;
}

html:not(.light) body.landing-salla .product-stage {
  background: #2a2742;
  border-color: #403b60;
}

body.landing-salla .product-window {
  background: var(--landing-surface);
  border-color: var(--landing-line);
  border-radius: 18px;
  box-shadow: none;
}

body.landing-salla .product-topbar {
  background: var(--landing-section);
}

body.landing-salla .product-brand-mark,
body.landing-salla .product-side-item.active,
body.landing-salla .mockup-prog-fill {
  color: #fff;
  background: var(--landing-primary);
}

body.landing-salla .product-sidebar {
  background: var(--landing-section);
}

body.landing-salla .product-metric,
body.landing-salla .product-panel {
  background: var(--landing-surface);
  border-color: var(--landing-line);
}

body.landing-salla .product-ring {
  background: var(--landing-section);
  border: 8px solid var(--landing-mint-strong);
}

body.landing-salla .product-ring::after {
  background: var(--landing-surface);
}

body.landing-salla .stage-float {
  background: var(--landing-surface);
  border-color: var(--landing-line);
  box-shadow: var(--landing-shadow-card);
  backdrop-filter: none;
}

/* Trust row */
body.landing-salla #trust-strip {
  padding: 26px 0 72px;
  background: var(--landing-surface);
}

body.landing-salla .trust-shell {
  padding: 26px 28px;
  background: var(--landing-surface);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.landing-salla .trust-label {
  color: var(--landing-ink);
}

body.landing-salla .trust-item {
  min-height: 64px;
  padding: 12px 14px;
  color: var(--landing-muted);
  background: var(--landing-section);
  border-radius: 13px;
}

body.landing-salla .trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--landing-primary);
}

/* Real product tour */
body.landing-salla #product-tour {
  padding: 118px 0;
  overflow: hidden;
  background: var(--landing-section);
}

body.landing-salla #product-tour .section-title {
  max-width: 880px;
}

body.landing-salla .product-tour-stack {
  display: grid;
  gap: 30px;
  margin-top: 64px;
}

body.landing-salla .product-tour-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  align-items: stretch;
  min-height: 650px;
  overflow: hidden;
  background: #eeecff;
  border: 1px solid color-mix(in srgb, var(--landing-primary) 12%, transparent);
  border-radius: 28px;
}

body.landing-salla .product-tour-row.tour-worship {
  background: #e9e7ff;
}

body.landing-salla .product-tour-row.tour-wallet {
  background: #e8f7f2;
  border-color: color-mix(in srgb, var(--landing-mint-strong) 16%, transparent);
}

html:not(.light) body.landing-salla .product-tour-row,
html:not(.light) body.landing-salla .product-tour-row.tour-worship {
  background: #25223b;
  border-color: #3c3758;
}

html:not(.light) body.landing-salla .product-tour-row.tour-wallet {
  background: #17332f;
  border-color: #275248;
}

body.landing-salla .product-tour-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 58px;
}

body.landing-salla .product-tour-row.is-reverse .product-tour-copy {
  order: 2;
}

body.landing-salla .product-tour-row.is-reverse .product-tour-media {
  order: 1;
}

body.landing-salla .product-tour-number {
  position: absolute;
  inset-inline-end: 34px;
  top: 26px;
  color: color-mix(in srgb, var(--landing-primary) 18%, transparent);
  font-size: 5.4rem;
  font-weight: 800;
  line-height: 1;
}

body.landing-salla .product-tour-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--landing-primary);
  border-radius: 16px;
  place-items: center;
}

body.landing-salla .tour-wallet .product-tour-icon {
  background: var(--landing-mint-strong);
}

body.landing-salla .product-tour-icon svg {
  width: 25px;
  height: 25px;
}

body.landing-salla .product-tour-kicker {
  margin-bottom: 10px;
  color: var(--landing-primary);
  font-size: 0.88rem;
  font-weight: 750;
}

body.landing-salla .tour-wallet .product-tour-kicker {
  color: var(--landing-mint-strong);
}

body.landing-salla .product-tour-copy h3 {
  max-width: 520px;
  margin: 0 0 18px;
  color: var(--landing-ink);
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

body.landing-salla .product-tour-copy > p {
  max-width: 540px;
  margin: 0;
  color: var(--landing-muted);
  font-size: 1rem;
  line-height: 1.95;
}

body.landing-salla .product-tour-points {
  display: grid;
  gap: 11px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

body.landing-salla .product-tour-points li {
  position: relative;
  padding-inline-start: 25px;
  color: var(--landing-ink);
  font-size: 0.88rem;
  font-weight: 650;
}

body.landing-salla .product-tour-points li::before {
  position: absolute;
  inset-inline-start: 0;
  top: 0.34em;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--landing-primary);
  border: 4px solid color-mix(in srgb, var(--landing-primary) 18%, var(--landing-surface));
  border-radius: 50%;
}

body.landing-salla .tour-wallet .product-tour-points li::before {
  background: var(--landing-mint-strong);
  border-color: color-mix(in srgb, var(--landing-mint-strong) 18%, var(--landing-surface));
}

body.landing-salla .product-tour-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 18px;
  color: #fff;
  background: var(--landing-primary);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 750;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

body.landing-salla .tour-wallet .product-tour-cta {
  background: var(--landing-mint-strong);
}

body.landing-salla .product-tour-cta:hover {
  color: #fff;
  background: var(--landing-primary-dark);
  transform: translateY(-2px);
}

body.landing-salla .product-tour-media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
  padding: 46px 52px 0;
  overflow: hidden;
  background: color-mix(in srgb, var(--landing-surface) 68%, transparent);
  border-inline-start: 1px solid color-mix(in srgb, var(--landing-primary) 10%, transparent);
}

body.landing-salla .product-tour-row.is-reverse .product-tour-media {
  border-inline: 0 1px solid color-mix(in srgb, var(--landing-primary) 10%, transparent);
}

body.landing-salla .tour-wallet .product-tour-media {
  border-color: color-mix(in srgb, var(--landing-mint-strong) 12%, transparent);
}

body.landing-salla .product-tour-device {
  position: relative;
  z-index: 2;
  width: min(100%, 385px);
  height: 600px;
  overflow: hidden;
  background: #fff;
  border: 9px solid #fff;
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 26px 54px rgba(34, 28, 96, 0.17);
}

body.landing-salla .product-tour-device img {
  display: block;
  width: 100%;
  height: auto;
}

body.landing-salla .product-tour-note {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 200px;
  padding: 15px 17px;
  color: var(--landing-ink);
  background: var(--landing-surface);
  border: 1px solid var(--landing-line);
  border-radius: 14px;
  box-shadow: var(--landing-shadow-card);
}

body.landing-salla .product-tour-note strong {
  font-size: 0.86rem;
}

body.landing-salla .product-tour-note span {
  color: var(--landing-muted);
  font-size: 0.69rem;
}

body.landing-salla .product-tour-note.note-top {
  inset-inline-end: 24px;
  top: 82px;
}

body.landing-salla .product-tour-note.note-bottom {
  inset-inline-start: 22px;
  bottom: 76px;
}

/* Sections */
body.landing-salla #solutions,
body.landing-salla #features,
body.landing-salla #how-it-works,
body.landing-salla #pricing {
  padding: 116px 0;
}

body.landing-salla #solutions,
body.landing-salla #how-it-works {
  background: var(--landing-surface);
}

body.landing-salla #features,
body.landing-salla #pricing {
  background: var(--landing-section);
}

body.landing-salla .section-label .badge {
  color: var(--landing-primary);
  background: color-mix(in srgb, var(--landing-primary) 8%, var(--landing-surface));
  border: 0;
}

body.landing-salla .section-title {
  max-width: 900px;
  margin-inline: auto;
  color: var(--landing-ink);
  font-size: clamp(2.45rem, 5vw, 4.35rem);
  line-height: 1.18;
}

body.landing-salla .section-sub {
  max-width: 760px;
  color: var(--landing-muted);
  font-size: 1.05rem;
}

body.landing-salla .solutions-grid {
  gap: 22px;
}

body.landing-salla .solutions-grid:has(.solution-card[hidden]) {
  grid-template-columns: 1fr;
}

body.landing-salla .solutions-grid:has(.solution-card[hidden]) .solution-card:not([hidden]) {
  width: min(100%, 920px);
  margin-inline: auto;
}

body.landing-salla .solution-card {
  min-height: 430px;
  padding: 38px;
  background: #f0eeff;
  border: 0;
  border-radius: 22px;
  box-shadow: none;
  backdrop-filter: none;
}

body.landing-salla .solution-card.company {
  background: var(--landing-mint);
}

html:not(.light) body.landing-salla .solution-card {
  background: #25223b;
}

html:not(.light) body.landing-salla .solution-card.company {
  background: #15352f;
}

body.landing-salla .solution-icon,
body.landing-salla .solution-card.company .solution-icon {
  color: #fff;
  background: var(--landing-primary);
  box-shadow: none;
}

body.landing-salla .solution-card.company .solution-icon {
  background: var(--landing-mint-strong);
}

body.landing-salla .solution-title {
  color: var(--landing-ink);
  font-size: 1.7rem;
}

body.landing-salla .solution-desc {
  color: var(--landing-muted);
  font-size: 0.94rem;
}

body.landing-salla .solution-list li {
  color: var(--landing-ink);
}

body.landing-salla .feature-card {
  min-height: 260px;
  padding: 30px;
  background: var(--landing-surface);
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

body.landing-salla .feature-card:hover {
  box-shadow: var(--landing-shadow-card);
  transform: translateY(-4px);
}

body.landing-salla .feature-icon {
  border-radius: 12px;
}

body.landing-salla .feature-title {
  color: var(--landing-ink);
  font-size: 1.14rem;
}

body.landing-salla .feature-desc {
  color: var(--landing-muted);
  font-size: 0.88rem;
}

body.landing-salla .steps-shell {
  gap: 18px;
}

body.landing-salla .step-card {
  min-height: 240px;
  padding: 34px 26px;
  background: var(--landing-section);
  border-radius: 18px;
}

body.landing-salla .step-number {
  color: #fff;
  background: var(--landing-primary);
  border: 0;
  box-shadow: none;
}

body.landing-salla .step-title {
  color: var(--landing-ink);
  font-size: 1.08rem;
}

body.landing-salla .step-desc {
  color: var(--landing-muted);
  font-size: 0.88rem;
}

body.landing-salla .pricing-toggle {
  background: var(--landing-surface);
  border: 1px solid var(--landing-line);
}

body.landing-salla .toggle-switch,
body.landing-salla .toggle-switch::after {
  background: var(--landing-primary);
}

body.landing-salla .pricing-card,
body.landing-salla .pricing-card.featured {
  min-height: 520px;
  padding: 36px;
  background: var(--landing-surface);
  border: 1px solid var(--landing-line);
  border-radius: 20px;
  box-shadow: none;
}

body.landing-salla .pricing-card.featured {
  border: 2px solid var(--landing-primary);
  transform: translateY(-7px);
}

body.landing-salla .pricing-card.featured:hover {
  transform: translateY(-9px);
}

body.landing-salla .pricing-popular {
  background: var(--landing-primary);
}

body.landing-salla .pricing-plan,
body.landing-salla .pricing-amount {
  color: var(--landing-ink);
}

/* CTA and footer */
body.landing-salla #cta {
  padding: 92px 0;
  background: var(--landing-surface);
}

body.landing-salla .cta-box {
  max-width: 1160px;
  padding: 70px clamp(28px, 7vw, 88px);
  color: #fff;
  background: var(--landing-primary-dark);
  border: 0;
  border-radius: 24px;
  box-shadow: none;
}

body.landing-salla .cta-sub {
  color: rgba(255, 255, 255, 0.74);
}

body.landing-salla .cta-box .btn-primary {
  color: var(--landing-primary-dark);
  background: #fff;
}

body.landing-salla .cta-box .btn-ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

body.landing-salla #footer {
  padding-top: 76px;
  color: #f5f3ff;
  background: #17143f;
}

body.landing-salla #footer .footer-col-title,
body.landing-salla #footer .nav-logo,
body.landing-salla #footer a {
  color: #fff;
}

body.landing-salla #footer p,
body.landing-salla #footer li a,
body.landing-salla #footer .footer-bottom {
  color: #b9b5d1;
}

body.landing-salla #footer .social-btn {
  color: #fff;
  background: #252153;
  border-color: #39346c;
}

/* Mobile section dock */
.landing-mobile-dock {
  display: none;
}

@media (max-width: 1040px) {
  body.landing-salla .hero-title {
    font-size: clamp(3rem, 8vw, 5.2rem);
  }

  body.landing-salla .stage-float {
    display: none;
  }

  body.landing-salla .product-tour-row {
    grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr);
  }

  body.landing-salla .product-tour-copy {
    padding: 42px;
  }

  body.landing-salla .product-tour-note {
    display: none;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  body.landing-salla {
    padding-bottom: calc(82px + env(safe-area-inset-bottom, 0px));
  }

  body.landing-salla .container {
    padding-inline: 16px;
  }

  body.landing-salla #navbar {
    padding: 0;
  }

  body.landing-salla #navbar .nav-inner,
  body.landing-salla #navbar.scrolled .nav-inner {
    min-height: 68px;
    gap: 9px;
    padding: 7px 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  body.landing-salla .nav-logo {
    order: 1;
    margin-inline-end: auto;
  }

  body.landing-salla .nav-actions {
    order: 2;
    margin: 0;
    gap: 7px;
  }

  body.landing-salla .nav-actions #landing-theme-btn,
  body.landing-salla .nav-actions #nav-login-btn,
  body.landing-salla .nav-mobile-toggle,
  body.landing-salla .nav-links {
    display: none !important;
  }

  body.landing-salla .nav-actions .nav-register-btn {
    display: inline-flex;
    min-height: 39px;
    padding: 7px 12px !important;
    font-size: 0.72rem;
  }

  body.landing-salla .nav-actions #landing-lang-btn {
    display: inline-flex;
    width: 39px;
    height: 39px;
  }

  body.landing-salla #navbar .nav-logo-icon.has-site-logo {
    width: 76px;
    height: 42px;
    flex-basis: 76px;
  }

  body.landing-salla #hero {
    padding: 103px 0 52px;
  }

  body.landing-salla .hero-content {
    gap: 38px;
  }

  body.landing-salla .hero-badge {
    margin-bottom: 19px;
  }

  body.landing-salla .hero-badge .badge {
    padding: 7px 11px;
    font-size: 0.67rem;
  }

  body.landing-salla .hero-title {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
    line-height: 1.13;
    letter-spacing: -0.045em;
  }

  body.landing-salla .hero-sub {
    margin-bottom: 25px;
    font-size: 0.92rem;
    line-height: 1.85;
  }

  body.landing-salla .hero-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  body.landing-salla .hero-cta .btn {
    width: 100%;
    min-width: 0;
    min-height: 47px;
    padding-inline: 10px;
    font-size: 0.82rem;
  }

  body.landing-salla .hero-proof {
    margin-top: 18px;
    font-size: 0.67rem;
  }

  body.landing-salla .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
  }

  body.landing-salla .hero-stats > div {
    min-width: 0;
    padding: 10px 5px;
  }

  body.landing-salla .product-stage {
    width: calc(100% + 12px);
    margin-inline: -6px;
    padding: 6px;
    border-radius: 17px;
  }

  body.landing-salla .product-stage-real {
    padding: 5px;
  }

  body.landing-salla .landing-real-interface-picture {
    aspect-ratio: 1.485 / 1;
    border-radius: 12px;
  }

  body.landing-salla .landing-real-interface {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  body.landing-salla .product-window {
    border-radius: 12px;
  }

  body.landing-salla .product-layout {
    grid-template-columns: 42px 1fr;
  }

  body.landing-salla .product-main {
    padding: 10px;
  }

  body.landing-salla .product-topbar {
    min-height: 42px;
    padding: 7px 9px;
  }

  body.landing-salla .product-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  body.landing-salla .product-grid {
    grid-template-columns: 1fr;
  }

  body.landing-salla .product-grid .product-panel:last-child {
    display: none;
  }

  body.landing-salla #trust-strip {
    padding: 18px 0 56px;
  }

  body.landing-salla .trust-shell {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0;
  }

  body.landing-salla .trust-label {
    padding: 0 4px 8px;
  }

  body.landing-salla .trust-item {
    min-height: 76px;
    padding: 12px 10px;
    justify-content: flex-start;
    font-size: 0.66rem;
  }

  body.landing-salla #product-tour {
    padding: 72px 0;
  }

  body.landing-salla .product-tour-stack {
    gap: 18px;
    margin-top: 38px;
  }

  body.landing-salla .product-tour-row,
  body.landing-salla .product-tour-row.is-reverse {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 20px;
  }

  body.landing-salla .product-tour-row.is-reverse .product-tour-copy,
  body.landing-salla .product-tour-row.is-reverse .product-tour-media {
    order: initial;
  }

  body.landing-salla .product-tour-copy {
    padding: 34px 25px 30px;
  }

  body.landing-salla .product-tour-number {
    inset-inline-end: 19px;
    top: 18px;
    font-size: 4rem;
  }

  body.landing-salla .product-tour-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 14px;
  }

  body.landing-salla .product-tour-copy h3 {
    max-width: 92%;
    margin-bottom: 14px;
    font-size: 1.86rem;
    line-height: 1.3;
  }

  body.landing-salla .product-tour-copy > p {
    font-size: 0.88rem;
    line-height: 1.85;
  }

  body.landing-salla .product-tour-points {
    gap: 9px;
    margin: 20px 0 25px;
  }

  body.landing-salla .product-tour-points li {
    font-size: 0.78rem;
  }

  body.landing-salla .product-tour-media,
  body.landing-salla .product-tour-row.is-reverse .product-tour-media {
    min-height: 510px;
    padding: 26px 22px 0;
    border: 0;
    border-top: 1px solid color-mix(in srgb, var(--landing-primary) 10%, transparent);
  }

  body.landing-salla .product-tour-device {
    width: min(100%, 330px);
    height: 490px;
    border-width: 7px;
    border-bottom: 0;
    border-radius: 26px 26px 0 0;
  }

  body.landing-salla #solutions,
  body.landing-salla #features,
  body.landing-salla #how-it-works,
  body.landing-salla #pricing {
    padding: 82px 0;
  }

  body.landing-salla .section-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  body.landing-salla .section-sub {
    margin-bottom: 34px;
    font-size: 0.9rem;
  }

  body.landing-salla .solution-card {
    min-height: 0;
    padding: 27px 21px;
    border-radius: 17px;
  }

  body.landing-salla .solution-title {
    font-size: 1.4rem;
  }

  body.landing-salla .solution-list {
    grid-template-columns: 1fr;
  }

  body.landing-salla .feature-card,
  body.landing-salla .feature-card:first-child,
  body.landing-salla .feature-card:nth-child(5),
  body.landing-salla .feature-card:nth-child(6) {
    grid-column: span 12;
    min-height: 0;
    padding: 23px;
    border-radius: 16px;
  }

  body.landing-salla .steps-shell {
    gap: 10px;
  }

  body.landing-salla .step-card {
    min-height: 0;
    grid-template-columns: 48px 1fr;
    padding: 20px;
    text-align: start;
  }

  body.landing-salla .step-number {
    width: 48px;
    height: 48px;
  }

  body.landing-salla .pricing-card,
  body.landing-salla .pricing-card.featured {
    min-height: 0;
    padding: 27px 22px;
    border-radius: 17px;
    transform: none;
  }

  body.landing-salla #cta {
    padding: 64px 0;
  }

  body.landing-salla .cta-box {
    padding: 44px 20px;
    border-radius: 18px;
  }

  body.landing-salla #footer {
    padding-top: 58px;
  }

  .landing-mobile-dock {
    position: fixed;
    z-index: 140;
    inset-inline: 10px;
    bottom: calc(9px + env(safe-area-inset-bottom, 0px));
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 66px;
    padding: 7px;
    background: var(--landing-surface);
    border: 1px solid var(--landing-line);
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(28, 23, 89, 0.18);
  }

  .landing-mobile-dock a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    color: var(--landing-muted);
    border-radius: 13px;
    font-size: 0.63rem;
    font-weight: 600;
  }

  .landing-mobile-dock a svg {
    width: 19px;
    height: 19px;
  }

  .landing-mobile-dock a.active,
  .landing-mobile-dock a[aria-current="page"] {
    color: var(--landing-primary);
    background: color-mix(in srgb, var(--landing-primary) 10%, var(--landing-surface));
  }
}

@media (max-width: 390px) {
  body.landing-salla .nav-actions #landing-lang-btn {
    display: none;
  }

  body.landing-salla .hero-title {
    font-size: 2.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.landing-salla *,
  body.landing-salla *::before,
  body.landing-salla *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* Registered user reviews */
body.landing-salla #testimonials.reviews-section {
  padding: 104px 0;
  background: var(--landing-section);
}

body.landing-salla .reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

body.landing-salla .reviews-heading .section-label,
body.landing-salla .reviews-heading .section-title,
body.landing-salla .reviews-heading .section-sub {
  margin-inline: 0;
  text-align: start;
}

body.landing-salla .reviews-heading .section-sub {
  max-width: 700px;
}

body.landing-salla .reviews-summary {
  flex: 0 0 auto;
  min-width: 168px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2px 10px;
  background: var(--landing-surface);
  border-radius: 18px;
  box-shadow: var(--landing-shadow-card);
}

body.landing-salla .reviews-summary[hidden] { display: none; }
body.landing-salla .reviews-summary strong { grid-row: span 2; font-size: 2rem; line-height: 1; color: var(--landing-ink); }
body.landing-salla .reviews-summary-stars { color: #e8a916; letter-spacing: 1px; font-size: .8rem; }
body.landing-salla .reviews-summary small { color: var(--landing-muted); font-size: .78rem; }

body.landing-salla .reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 24px;
}

body.landing-salla .reviews-public-panel,
body.landing-salla .review-compose-card {
  background: var(--landing-surface);
  border-radius: 24px;
  box-shadow: var(--landing-shadow-card);
}

body.landing-salla .reviews-public-panel { padding: 22px; min-height: 350px; }
body.landing-salla .reviews-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }

body.landing-salla .review-card {
  min-width: 0;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: var(--landing-ink);
  background: color-mix(in srgb, var(--landing-section) 74%, var(--landing-surface));
  border-radius: 18px;
}

body.landing-salla .review-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
body.landing-salla .review-stars { direction: ltr; display: inline-flex; white-space: nowrap; letter-spacing: 2px; font-style: normal; }
body.landing-salla .review-stars b { color: #e8a916; font-weight: 400; }
body.landing-salla .review-stars i { color: color-mix(in srgb, var(--landing-muted) 24%, transparent); font-style: normal; }
body.landing-salla .review-verified { padding: 6px 9px; color: var(--landing-mint-strong); background: var(--landing-mint); border-radius: 20px; font-size: .68rem; font-weight: 700; }
body.landing-salla .review-card blockquote { margin: 22px 0; color: var(--landing-ink); line-height: 1.9; font-size: .95rem; white-space: pre-wrap; overflow-wrap: anywhere; }
body.landing-salla .review-author { margin-top: auto; padding-top: 14px; color: var(--landing-muted); font-size: .88rem; }
body.landing-salla .review-author::before { content: '— '; color: var(--landing-primary); }

body.landing-salla .reviews-loading,
body.landing-salla .reviews-empty {
  grid-column: 1 / -1;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--landing-muted);
}

body.landing-salla .reviews-empty { flex-direction: column; gap: 12px; }
body.landing-salla .reviews-empty span { width: 54px; height: 54px; display: grid; place-items: center; color: var(--landing-primary); background: color-mix(in srgb, var(--landing-primary) 10%, transparent); border-radius: 18px; font-size: 1.8rem; }

body.landing-salla .review-compose-card {
  position: sticky;
  top: 100px;
  padding: 30px;
}

body.landing-salla .review-compose-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
  background: var(--landing-primary);
  border-radius: 16px;
}

body.landing-salla .review-compose-icon svg { width: 25px; height: 25px; }
body.landing-salla .review-compose-kicker { color: var(--landing-primary); font-size: .78rem; font-weight: 800; }
body.landing-salla .review-compose-card h3 { margin: 8px 0 9px; font-size: 1.35rem; color: var(--landing-ink); }
body.landing-salla .review-compose-card > p { margin: 0 0 24px; color: var(--landing-muted); line-height: 1.75; font-size: .86rem; }

body.landing-salla .landing-review-form { display: grid; gap: 18px; }
body.landing-salla .review-rating-field { margin: 0; padding: 0; border: 0; }
body.landing-salla .review-rating-field legend,
body.landing-salla .review-text-field > span { margin-bottom: 9px; color: var(--landing-ink); font-size: .82rem; font-weight: 700; }
body.landing-salla .review-star-picker { direction: ltr; display: flex; justify-content: space-between; gap: 6px; }
body.landing-salla .review-star-picker button {
  width: 48px;
  height: 48px;
  padding: 0;
  color: color-mix(in srgb, var(--landing-muted) 25%, transparent);
  background: color-mix(in srgb, var(--landing-section) 80%, var(--landing-surface));
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  font-size: 1.45rem;
  transition: transform .18s ease, color .18s ease, background .18s ease;
}
body.landing-salla .review-star-picker button:hover { transform: translateY(-2px); }
body.landing-salla .review-star-picker button.active { color: #e8a916; background: #fff7dc; }
html:not(.light) body.landing-salla .review-star-picker button.active { background: #3c3521; }
body.landing-salla .review-text-field { display: grid; }
body.landing-salla .review-text-field textarea {
  width: 100%;
  min-height: 122px;
  resize: vertical;
  padding: 14px 15px;
  color: var(--landing-ink);
  background: color-mix(in srgb, var(--landing-section) 80%, var(--landing-surface));
  border: 0;
  border-radius: 14px;
  outline: 2px solid transparent;
  font: inherit;
  line-height: 1.7;
}
body.landing-salla .review-text-field textarea:focus { outline-color: color-mix(in srgb, var(--landing-primary) 45%, transparent); }
body.landing-salla .review-text-field small { margin-top: 7px; color: var(--landing-muted); font-size: .7rem; text-align: end; }
body.landing-salla .review-form-error { min-height: 18px; color: #dc4c64; font-size: .78rem; }
body.landing-salla .review-submit-btn { width: 100%; justify-content: center; border: 0; cursor: pointer; }
body.landing-salla .review-submit-btn:disabled { opacity: .65; cursor: wait; }

body.landing-salla .review-login-state,
body.landing-salla .review-submitted-state { display: flex; flex-direction: column; align-items: stretch; gap: 12px; padding: 20px; background: color-mix(in srgb, var(--landing-section) 78%, var(--landing-surface)); border-radius: 16px; }
body.landing-salla .review-login-state strong,
body.landing-salla .review-submitted-state strong { color: var(--landing-ink); }
body.landing-salla .review-login-state span,
body.landing-salla .review-submitted-state small { color: var(--landing-muted); font-size: .78rem; line-height: 1.7; }
body.landing-salla .review-login-state .btn { margin-top: 5px; justify-content: center; }
body.landing-salla .review-status-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--landing-primary); background: color-mix(in srgb, var(--landing-primary) 10%, transparent); border-radius: 13px; font-size: 1.1rem; font-weight: 800; }
body.landing-salla .review-submitted-state.status-published .review-status-icon { color: var(--landing-mint-strong); background: var(--landing-mint); }
body.landing-salla .review-submitted-state.status-rejected .review-status-icon { color: #dc4c64; background: color-mix(in srgb, #dc4c64 10%, transparent); }
body.landing-salla .review-submitted-state blockquote { margin: 2px 0; color: var(--landing-muted); line-height: 1.75; white-space: pre-wrap; overflow-wrap: anywhere; }

@media (max-width: 980px) {
  body.landing-salla .reviews-layout { grid-template-columns: 1fr; }
  body.landing-salla .review-compose-card { position: static; }
}

@media (max-width: 680px) {
  body.landing-salla #testimonials.reviews-section { padding: 66px 0; }
  body.landing-salla .reviews-heading { align-items: stretch; flex-direction: column; margin-bottom: 24px; }
  body.landing-salla .reviews-summary { width: 100%; }
  body.landing-salla .reviews-public-panel { padding: 10px; border-radius: 18px; }
  body.landing-salla .reviews-grid { grid-template-columns: 1fr; gap: 10px; }
  body.landing-salla .review-card { min-height: 170px; padding: 20px; }
  body.landing-salla .review-compose-card { padding: 24px 20px; border-radius: 18px; }
  body.landing-salla .review-star-picker button { width: 44px; height: 44px; }
}
