/* Vala UI polish layer: spacing, motion, responsive refinements. */
:root {
  --ux-ease: cubic-bezier(.22, 1, .36, 1);
  --ux-fast: 180ms;
  --ux-med: 420ms;
  --ux-ring: 0 0 0 4px rgba(124, 58, 237, .18);
  --ux-card: linear-gradient(165deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  --ux-card-hover: linear-gradient(165deg, rgba(255,255,255,.075), rgba(124,58,237,.035));
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height, 72px) + 22px); }
body { text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
.container { width: min(1180px, calc(100% - 40px)); }
@media (max-width: 640px) { .container { width: min(100% - 28px, 1180px); } }

/* Header and navigation */
.header {
  transition: background var(--ux-med) var(--ux-ease), border-color var(--ux-med) var(--ux-ease), box-shadow var(--ux-med) var(--ux-ease), transform var(--ux-med) var(--ux-ease);
}
.header.scrolled,
.header.px-scrolled {
  box-shadow: 0 18px 46px -34px rgba(0,0,0,.9);
}
.header-inner { gap: 18px; }
.nav a {
  position: relative;
  isolation: isolate;
  border: 1px solid transparent;
  transition: color var(--ux-fast), background var(--ux-fast), border-color var(--ux-fast), transform var(--ux-fast);
}
.nav a:hover {
  border-color: rgba(255,255,255,.08);
  transform: translateY(-1px);
}
.nav a.active {
  border-color: rgba(124,58,237,.24);
  background: rgba(124,58,237,.12);
}
.hamburger {
  border-radius: 14px;
  transition: background var(--ux-fast), box-shadow var(--ux-fast), transform var(--ux-fast);
}
.hamburger:hover { background: rgba(255,255,255,.06); box-shadow: var(--ux-ring); }
.hamburger.active span:nth-child(1),
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2),
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(.5); }
.hamburger.active span:nth-child(3),
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
  .nav.active,
  .nav.open {
    display: flex;
    animation: ux-menu-in .28s var(--ux-ease) both;
  }
  .nav a { width: 100%; justify-content: center; padding-block: 13px; }
}
@keyframes ux-menu-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}

/* Page rhythm */
.section,
.px-section { overflow: clip; }
.page-header {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-height, 72px) + clamp(42px, 7vw, 78px));
}
.page-header::after {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,.42), rgba(34,211,238,.22), transparent);
}
.page-header h1,
.px-h2 {
  text-wrap: balance;
}
.page-header p,
.px-sub,
.section-subtitle {
  text-wrap: pretty;
}

/* Homepage hero */
.page-home .px-hero {
  min-height: min(820px, 100svh);
  display: flex;
  align-items: center;
}
.page-home .px-hero-grid { gap: clamp(34px, 6vw, 72px); }
.page-home .px-hero-copy h1 {
  max-width: 11.5em;
  letter-spacing: 0;
}
.page-home .px-hero-copy .px-lead { max-width: 620px; }
.page-home .px-hero-cta a { min-height: 52px; }
.px-hero-visual { filter: drop-shadow(0 38px 70px rgba(0,0,0,.32)); }
.px-stage {
  transform: translateZ(0);
  animation: ux-stage-settle .9s var(--ux-ease) both;
}
@keyframes ux-stage-settle {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: none; }
}
.px-card3d,
.px-pill-float,
.svc-spot-window {
  will-change: transform;
}
.px-win-body,
.ssw-body {
  background:
    radial-gradient(150px circle at 85% 0%, rgba(34,211,238,.08), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0));
}
.px-prod,
.ssw-grid span {
  transition: transform var(--ux-med) var(--ux-ease), filter var(--ux-med) var(--ux-ease);
}
.px-win:hover .px-prod:nth-child(1),
.svc-spot-window:hover .ssw-grid span:nth-child(1) { transform: translateY(-3px); }
.px-win:hover .px-prod:nth-child(2),
.svc-spot-window:hover .ssw-grid span:nth-child(2) { transform: translateY(-7px); }
.px-win:hover .px-prod:nth-child(3),
.svc-spot-window:hover .ssw-grid span:nth-child(3) { transform: translateY(-4px); }

/* Buttons and interactive controls */
.btn,
.btn-px,
.btn-ghost-px,
.pp-cta,
.v3d-pkg-cta,
.filter-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform var(--ux-fast) var(--ux-ease), box-shadow var(--ux-fast) var(--ux-ease), border-color var(--ux-fast), background var(--ux-fast), color var(--ux-fast);
}
.btn:focus-visible,
.btn-px:focus-visible,
.btn-ghost-px:focus-visible,
.pp-cta:focus-visible,
.v3d-pkg-cta:focus-visible,
.form-input:focus,
.form-textarea:focus,
.faq-question:focus-visible {
  outline: none;
  box-shadow: var(--ux-ring);
}
.btn:hover,
.btn-px:hover,
.btn-ghost-px:hover,
.pp-cta:hover,
.v3d-pkg-cta:hover,
.filter-btn:hover { transform: translateY(-2px); }
.btn:active,
.btn-px:active,
.btn-ghost-px:active,
.pp-cta:active,
.v3d-pkg-cta:active { transform: translateY(0) scale(.99); }
.btn i,
.btn-px i,
.btn-ghost-px i,
.pp-cta i,
.v3d-pkg-cta i { transition: transform var(--ux-fast) var(--ux-ease); }
.btn:hover i,
.btn-px:hover i,
.btn-ghost-px:hover i,
.pp-cta:hover i,
.v3d-pkg-cta:hover i { transform: translateX(-4px); }

/* Cards and grids */
.portfolio-card,
.blog-card,
.pp-card,
.v3d-pkg,
.svc-feat,
.svc-plat,
.faq-item,
.sidebar-widget,
.contact-grid form,
.px-trust-item,
.px-port,
.px-tst,
.client-chip,
.v3d-stat,
.info-item {
  backface-visibility: hidden;
}
.portfolio-card,
.blog-card,
.sidebar-widget,
.contact-grid form {
  background: var(--ux-card);
  border-color: rgba(255,255,255,.09);
  box-shadow: 0 18px 58px -42px rgba(0,0,0,.9);
  transition: transform var(--ux-med) var(--ux-ease), border-color var(--ux-med), box-shadow var(--ux-med), background var(--ux-med);
}
.portfolio-card:hover,
.blog-card:hover,
.sidebar-widget:hover,
.contact-grid form:hover {
  background: var(--ux-card-hover);
  border-color: rgba(124,58,237,.34);
  box-shadow: 0 28px 76px -44px rgba(124,58,237,.55);
}
.portfolio-card:hover,
.blog-card:hover { transform: translateY(-7px); }
.portfolio-img img,
.blog-img img {
  transition: transform .7s var(--ux-ease), filter .7s var(--ux-ease);
}
.portfolio-card:hover .portfolio-img img,
.blog-card:hover .blog-img img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}
.portfolio-grid,
.blog-grid,
.svc-feat-grid,
.pp-cards,
.px-port-grid,
.px-flow,
.v3d-pkg-grid {
  align-items: stretch;
}
.portfolio-card,
.blog-card,
.pp-card,
.v3d-pkg {
  height: 100%;
}

/* Forms */
.form-group { position: relative; }
.form-label { margin-bottom: 9px; color: rgba(244,244,251,.88); }
.form-input,
.form-textarea,
select.form-input {
  transition: border-color var(--ux-fast), box-shadow var(--ux-fast), background var(--ux-fast), transform var(--ux-fast);
}
.form-input:hover,
.form-textarea:hover,
select.form-input:hover {
  border-color: rgba(167,139,250,.32);
  background-color: rgba(255,255,255,.045);
}
.form-input:focus,
.form-textarea:focus,
select.form-input:focus {
  border-color: rgba(167,139,250,.62);
  background-color: rgba(255,255,255,.055);
}
.form-input.ux-has-value,
.form-textarea.ux-has-value { border-color: rgba(16,185,129,.36); }

/* FAQ and filters */
.filter-bar {
  gap: 10px;
  align-items: center;
}
.filter-btn,
.blog-category,
.portfolio-tag,
.port-cat {
  transition: transform var(--ux-fast), background var(--ux-fast), color var(--ux-fast), border-color var(--ux-fast);
}
.filter-btn:hover,
.blog-category:hover,
.portfolio-tag:hover { transform: translateY(-1px); }
.faq-question { min-height: 64px; }
.faq-answer { will-change: max-height; }

/* Footer and mobile CTA */
.footer {
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,.42), rgba(34,211,238,.24), transparent);
}
.footer-social a,
.m-cta a {
  transition: transform var(--ux-fast) var(--ux-ease), background var(--ux-fast), box-shadow var(--ux-fast), border-color var(--ux-fast);
}
.footer-social a:hover { transform: translateY(-3px); }
.m-cta a:active { transform: scale(.985); }

/* Scroll reveal used by main.js */
.ux-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .68s var(--ux-ease), transform .68s var(--ux-ease);
}
.ux-reveal.ux-in {
  opacity: 1;
  transform: none;
}
.ux-reveal.ux-delay-1 { transition-delay: .06s; }
.ux-reveal.ux-delay-2 { transition-delay: .12s; }
.ux-reveal.ux-delay-3 { transition-delay: .18s; }

/* Responsive tightening */
@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr !important; gap: 28px !important; }
  .blog-sidebar { position: static !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 760px) {
  .page-home .px-hero {
    min-height: auto;
    padding-bottom: 58px;
  }
  .page-home .px-hero-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 12vw, 3rem);
    line-height: 1.14;
  }
  .px-hero-cta,
  .svc-spot-cta,
  .px-cta-panel .row {
    width: 100%;
  }
  .px-hero-cta > a,
  .svc-spot-cta > a,
  .px-cta-panel .row > a {
    flex: 1 1 100%;
    justify-content: center;
  }
  .px-stage { height: min(360px, 82vw); }
  .px-chip { font-size: .78rem; }
  .contact-grid form { padding: 24px !important; }
  .form-row { grid-template-columns: 1fr !important; gap: 0 !important; }
  .filter-bar form,
  .filter-bar {
    justify-content: stretch !important;
  }
  .filter-bar select,
  .filter-bar .form-input,
  .filter-btn {
    width: 100% !important;
  }
  .portfolio-card,
  .blog-card {
    border-radius: 18px;
  }
  .footer { padding-bottom: 90px; }
}
@media (max-width: 420px) {
  .page-header h1 { font-size: 1.75rem !important; }
  .px-h2 { font-size: 1.65rem !important; }
  .px-eyebrow { max-width: 100%; white-space: normal; }
  .v3d-stats { grid-template-columns: 1fr !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .ux-reveal,
  .px-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Requested page refinements: services, about, contact, portfolio only. */
.ux-page-hero {
  isolation: isolate;
  padding-bottom: clamp(44px, 6vw, 72px);
  background:
    radial-gradient(600px circle at 18% 16%, rgba(34, 211, 238, .09), transparent 60%),
    linear-gradient(180deg, rgba(124,58,237,.075), rgba(10,10,15,0));
}
.ux-page-hero h1 { letter-spacing: 0; }
.ux-page-section,
.ux-page-band { position: relative; }
.ux-page-band {
  border-block: 1px solid rgba(255,255,255,.045);
}
.ux-feature-card,
.ux-info-card,
.about-page .team-card,
.about-page + .ux-page-band .testimonial-card,
.ux-contact-info,
.ux-contact-form,
.ux-portfolio-grid .portfolio-card,
.ux-service-grid .svc-feat,
.ux-platform-grid .svc-plat,
.ux-service-spotlight {
  background: var(--ux-card) !important;
  border-color: rgba(255,255,255,.095) !important;
  box-shadow: 0 18px 58px -46px rgba(0,0,0,.9);
}
.ux-feature-card,
.ux-info-card,
.about-page .team-card,
.about-page + .ux-page-band .testimonial-card,
.ux-contact-form,
.ux-contact-info .info-item,
.ux-portfolio-grid .portfolio-card,
.ux-service-grid .svc-feat,
.ux-platform-grid .svc-plat,
.ux-service-spotlight {
  transition: transform var(--ux-med) var(--ux-ease), border-color var(--ux-med), box-shadow var(--ux-med), background var(--ux-med);
}
.ux-feature-card:hover,
.ux-info-card:hover,
.about-page .team-card:hover,
.about-page + .ux-page-band .testimonial-card:hover,
.ux-contact-info .info-item:hover,
.ux-portfolio-grid .portfolio-card:hover,
.ux-service-grid .svc-feat:hover,
.ux-platform-grid .svc-plat:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,.36) !important;
  box-shadow: 0 28px 76px -48px rgba(124,58,237,.6);
}
.ux-about-intro { gap: clamp(32px, 6vw, 72px) !important; }
.ux-about-aside { align-self: stretch; }
.ux-about-aside .ux-feature-card { height: 100%; }
.ux-split-cards { align-items: stretch; }
.ux-info-card { min-height: 100%; }
.ux-info-card p,
.ux-feature-card p { text-wrap: pretty; }
.ux-contact-grid {
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr) !important;
  align-items: start;
  gap: clamp(28px, 5vw, 64px) !important;
}
.ux-contact-info {
  border: 1px solid rgba(255,255,255,.095);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  position: sticky;
  top: calc(var(--nav-height, 72px) + 24px);
}
.ux-contact-info .info-item {
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  background: rgba(255,255,255,.025);
}
.ux-contact-form { position: relative; overflow: hidden; }
.ux-contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #22d3ee, #10b981);
}
.ux-contact-form .btn,
.ux-contact-form button[type="submit"] { min-height: 54px; }
.ux-contact-form-wrap .success-msg,
.ux-contact-form-wrap .error-msg {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.ux-contact-form-wrap .success-msg { background: var(--success-bg); color: var(--success); border: 1px solid rgba(16,185,129,.22); }
.ux-contact-form-wrap .error-msg { background: var(--danger-bg); color: var(--danger); border: 1px solid rgba(239,68,68,.22); }
.ux-filter-bar {
  display: flex;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.025);
}
.ux-filter-bar form { justify-content: center; }
.ux-filter-bar select.form-input { min-height: 46px; }
.ux-portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr)) !important;
  gap: clamp(18px, 3vw, 28px) !important;
}
.ux-portfolio-grid .portfolio-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ux-portfolio-grid .portfolio-img {
  height: auto;
  aspect-ratio: 16 / 10;
}
.ux-portfolio-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
}
.ux-portfolio-body h3,
.ux-portfolio-body p { margin-bottom: 0 !important; }
.ux-portfolio-body .btn { margin-top: auto; align-self: flex-start; }
.ux-service-spotlight { border-radius: var(--radius-xl); }
.ux-service-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)) !important;
  gap: clamp(16px, 3vw, 24px) !important;
}
.ux-service-grid .svc-feat,
.ux-platform-grid .svc-plat { height: 100%; }
.ux-platform-grid { gap: clamp(16px, 3vw, 26px) !important; }
.ux-bottom-cta .flex-between,
.ux-bottom-cta .px-cta-panel .row {
  align-items: center;
}
@media (max-width: 1024px) {
  .ux-contact-grid { grid-template-columns: 1fr !important; }
  .ux-contact-info { position: static; }
  .ux-split-cards { grid-template-columns: 1fr !important; }
}
@media (max-width: 760px) {
  .ux-page-hero { padding-inline: 18px; }
  .ux-page-hero p { font-size: .98rem; }
  .ux-feature-card,
  .ux-info-card,
  .ux-contact-info,
  .ux-contact-form { border-radius: 16px !important; }
  .ux-contact-info { padding: 20px; }
  .ux-contact-info .info-item { align-items: center; }
  .ux-filter-bar { padding: 12px; }
  .ux-portfolio-body .btn,
  .ux-bottom-cta .btn,
  .ux-bottom-cta .btn-px,
  .ux-bottom-cta .btn-ghost-px { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .ux-contact-info .info-item { gap: 12px; padding: 12px; }
  .ux-contact-info .info-icon { width: 42px; height: 42px; }
  .ux-portfolio-grid .portfolio-img { aspect-ratio: 4 / 3; }
}

/* Mobile-first refinements for packages, portfolio, about, and contact. */
.pp-tax-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: var(--px-mut);
  font-size: .88rem;
  line-height: 1.7;
  margin: 22px auto 0;
  max-width: 760px;
}
.pp-tax-note i { color: #10b981; }
.pp-compare-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto 22px;
  max-width: 980px;
}
.pp-compare-pill {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(255,255,255,.055), rgba(34,211,238,.025));
  box-shadow: 0 18px 54px -44px rgba(0,0,0,.9);
}
.pp-compare-pill span {
  color: var(--px-mut);
  font-weight: 800;
  font-size: .86rem;
}
.pp-compare-pill strong {
  color: var(--px-text);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  line-height: 1.2;
}
.pp-compare-pill small {
  color: var(--px-dim);
  line-height: 1.55;
}
.pp-compare-pill.popular {
  border-color: rgba(16,185,129,.32);
  background: linear-gradient(165deg, rgba(16,185,129,.12), rgba(124,58,237,.05));
}
.pp-compare-wrap {
  box-shadow: 0 26px 80px -58px rgba(34,211,238,.55);
}
.pp-compare thead th {
  background: rgba(255,255,255,.025);
}
.pp-compare tbody th {
  color: var(--px-text);
  font-weight: 800;
}
.pp-compare tbody tr:nth-child(even) td,
.pp-compare tbody tr:nth-child(even) th {
  background: rgba(255,255,255,.015);
}
.portfolio-focus-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 11px 16px;
  border: 1px solid rgba(34,211,238,.18);
  border-radius: 999px;
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(34,211,238,.10), rgba(16,185,129,.06));
  font-weight: 800;
}
.portfolio-focus-note i { color: #22d3ee; }
.portfolio-page .container { text-align: center; }
.portfolio-page .portfolio-grid { text-align: start; }
.about-hero .px-eyebrow {
  margin-bottom: 14px;
}
.about-refresh {
  overflow: hidden;
}
.about-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, .94fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(34px, 6vw, 72px);
}
.about-showcase-copy h2 {
  color: var(--text-primary);
  font-size: clamp(1.75rem, 1.15rem + 2.2vw, 2.65rem);
  font-weight: 900;
  line-height: 1.35;
  margin: 10px 0 18px;
}
.about-showcase-copy p {
  color: var(--text-secondary);
  line-height: 1.95;
  margin-bottom: 14px;
}
.about-mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.about-mini-metrics div,
.about-value-card,
.about-process-step,
.about-store-panel {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: 0 22px 66px -52px rgba(0,0,0,.95);
}
.about-mini-metrics div {
  padding: 16px;
}
.about-mini-metrics strong {
  display: block;
  color: #22d3ee;
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 8px;
}
.about-mini-metrics span {
  color: var(--text-primary);
  font-weight: 800;
  font-size: .88rem;
}
.about-store-panel {
  overflow: hidden;
  background:
    radial-gradient(520px circle at 10% 0%, rgba(34,211,238,.12), transparent 58%),
    linear-gradient(165deg, rgba(16,185,129,.08), rgba(124,58,237,.05));
}
.about-store-top {
  display: flex;
  gap: 6px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
}
.about-store-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.24);
}
.about-store-top span:first-child { background: #22d3ee; }
.about-store-top span:nth-child(2) { background: #10b981; }
.about-store-top span:nth-child(3) { background: #f59e0b; }
.about-store-body {
  padding: clamp(20px, 4vw, 34px);
}
.about-store-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.about-store-row i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #061014;
  background: linear-gradient(135deg, #22d3ee, #10b981);
  font-size: 1.35rem;
}
.about-store-row b {
  display: block;
  color: var(--text-primary);
  font-size: 1.1rem;
}
.about-store-row small {
  color: var(--text-muted);
}
.about-store-preview {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 10px;
  margin-bottom: 18px;
}
.about-store-preview span {
  min-height: 76px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,58,237,.42), rgba(34,211,238,.2));
}
.about-store-preview span:first-child {
  grid-row: span 2;
  min-height: 162px;
  background: linear-gradient(135deg, rgba(16,185,129,.34), rgba(59,130,246,.24));
}
.about-store-preview span:nth-child(4) {
  background: linear-gradient(135deg, rgba(245,158,11,.26), rgba(124,58,237,.24));
}
.about-store-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.about-store-body li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-weight: 700;
}
.about-store-body li i { color: #10b981; }
.about-value-grid,
.about-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 24px);
}
.about-value-card {
  padding: 24px;
}
.about-value-card i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.about-value-card:nth-child(2) i { background: linear-gradient(135deg, #10b981, #22d3ee); color: #061014; }
.about-value-card:nth-child(3) i { background: linear-gradient(135deg, #f59e0b, #7c3aed); }
.about-value-card h3,
.about-process-step h3 {
  color: var(--text-primary);
  font-size: 1.12rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.about-value-card p,
.about-process-step p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}
.about-process-band {
  background:
    linear-gradient(180deg, rgba(18,18,26,.74), rgba(10,10,15,.92)),
    radial-gradient(700px circle at 85% 0%, rgba(16,185,129,.08), transparent 60%);
}
.about-process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.about-process-step {
  padding: 22px;
  position: relative;
}
.about-process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 13px;
  color: #061014;
  background: linear-gradient(135deg, #22d3ee, #10b981);
  font-weight: 900;
}
.about-team-section,
.about-proof-section {
  position: relative;
}
.about-final-cta {
  background: var(--bg-secondary);
}
.contact-page .ux-contact-info {
  background:
    radial-gradient(520px circle at 12% 0%, rgba(34,211,238,.14), transparent 62%),
    linear-gradient(165deg, rgba(16,185,129,.08), rgba(59,130,246,.045)) !important;
  border-color: rgba(34,211,238,.16) !important;
}
.contact-page .ux-contact-info h2 {
  color: var(--text-primary);
}
.contact-page .info-icon {
  color: #061014;
  background: linear-gradient(135deg, #22d3ee, #10b981);
}
.contact-page .ux-contact-info .info-item {
  background: rgba(255,255,255,.035);
  border-color: rgba(34,211,238,.10);
}
.contact-page .ux-contact-form {
  background:
    linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.018)) !important;
  border-color: rgba(255,255,255,.11) !important;
}
.contact-page .ux-contact-form::before {
  background: linear-gradient(90deg, #22d3ee, #10b981, #7c3aed);
}
.contact-page .form-input:focus,
.contact-page .form-textarea:focus,
.contact-page select.form-input:focus {
  border-color: rgba(34,211,238,.55) !important;
  box-shadow: 0 0 0 4px rgba(34,211,238,.12) !important;
}
.contact-page .btn-primary {
  background: linear-gradient(135deg, #10b981, #3b82f6);
  box-shadow: 0 14px 34px -18px rgba(34,211,238,.8);
}

@media (max-width: 920px) {
  .pp-compare-summary,
  .about-showcase,
  .about-value-grid,
  .about-process-grid {
    grid-template-columns: 1fr;
  }
  .about-store-panel {
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .pp-tax-note {
    align-items: flex-start;
    text-align: start;
    justify-content: flex-start;
    padding-inline: 4px;
  }
  .pp-compare-pill {
    padding: 16px;
  }
  .portfolio-focus-note {
    width: 100%;
    justify-content: center;
    border-radius: 14px;
    line-height: 1.5;
  }
  .about-showcase-copy h2 {
    font-size: 1.65rem;
  }
  .about-mini-metrics {
    grid-template-columns: 1fr;
  }
  .about-value-card,
  .about-process-step {
    padding: 20px;
  }
  .about-store-preview {
    grid-template-columns: 1fr 1fr;
  }
  .about-store-preview span:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 120px;
  }
  .contact-page .ux-contact-info,
  .contact-page .ux-contact-form {
    box-shadow: 0 18px 52px -44px rgba(0,0,0,.9);
  }
}

/* Packages, about, contact — refined public-page pass. */
:root {
  --vala-page-bg: #080910;
  --vala-panel: #11131d;
  --vala-panel-soft: #151827;
  --vala-line: rgba(255,255,255,.10);
  --vala-line-soft: rgba(255,255,255,.065);
  --vala-text: #f3f4fb;
  --vala-muted: #a4a7ba;
  --vala-dim: #767a92;
  --vala-violet: #8b5cf6;
  --vala-indigo: #4f46e5;
  --vala-teal: #2dd4bf;
  --vala-brand-grad: linear-gradient(135deg, #8b5cf6 0%, #635bff 48%, #3b82f6 100%);
  --vala-brand-soft: linear-gradient(165deg, rgba(139,92,246,.14), rgba(59,130,246,.055));
  --vala-shadow: 0 24px 70px -48px rgba(0,0,0,.95);
  --vala-shadow-hover: 0 30px 82px -50px rgba(99,91,255,.72);
}

.packages-page-hero,
.about-page-hero,
.contact-page-hero {
  background:
    linear-gradient(180deg, rgba(139,92,246,.10), rgba(8,9,16,.16) 48%, rgba(8,9,16,0)),
    linear-gradient(135deg, rgba(255,255,255,.035), rgba(255,255,255,0) 38%);
}
.packages-page-hero::before,
.about-page-hero::before,
.contact-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask: linear-gradient(180deg, rgba(0,0,0,.75), transparent 78%);
          mask: linear-gradient(180deg, rgba(0,0,0,.75), transparent 78%);
}
.packages-page-hero > *,
.about-page-hero > *,
.contact-page-hero > * {
  position: relative;
  z-index: 1;
}
.packages-page-hero .px-eyebrow,
.about-page-hero .px-eyebrow,
.contact-page-hero .px-eyebrow {
  color: #c4b5fd;
  background: rgba(139,92,246,.12);
  border-color: rgba(139,92,246,.26);
}
.packages-page-hero h1,
.about-page-hero h1,
.contact-page-hero h1 {
  color: var(--vala-text);
  text-shadow: 0 16px 52px rgba(0,0,0,.36);
}
.packages-page-hero p,
.about-page-hero p,
.contact-page-hero p {
  color: var(--vala-muted);
}

.packages-page-hero .px-eyebrow,
.packages-page-hero h1,
.packages-page-hero p,
.about-page-hero .px-eyebrow,
.about-page-hero h1,
.about-page-hero p,
.contact-page-hero h1,
.contact-page-hero p {
  animation: vala-page-rise .72s var(--ux-ease) both;
}
.packages-page-hero h1,
.about-page-hero h1,
.contact-page-hero h1 { animation-delay: .08s; }
.packages-page-hero p,
.about-page-hero p,
.contact-page-hero p { animation-delay: .16s; }

@keyframes vala-page-rise {
  from { opacity: 0; transform: translateY(18px); filter: blur(4px); }
  to { opacity: 1; transform: none; filter: none; }
}
@keyframes vala-soft-in {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: none; }
}

.pp-cards.salla {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin-inline: auto;
  gap: clamp(18px, 3vw, 28px);
}
.pp-card {
  min-width: 0;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    var(--vala-panel);
  border-color: var(--vala-line);
  box-shadow: var(--vala-shadow);
  transform-origin: center bottom;
  overflow: hidden;
}
.pp-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--vala-brand-grad);
  opacity: .72;
}
.pp-card:hover {
  transform: translateY(-7px);
  border-color: rgba(139,92,246,.42);
  box-shadow: var(--vala-shadow-hover);
}
.pp-card.popular {
  background:
    linear-gradient(180deg, rgba(139,92,246,.13), rgba(59,130,246,.045)),
    var(--vala-panel);
  border-color: rgba(139,92,246,.52);
  box-shadow: 0 0 0 1px rgba(139,92,246,.08), var(--vala-shadow-hover);
}
@media (min-width: 921px) {
  .pp-card.popular,
  .pp-card.popular:hover {
    transform: none;
  }
  .pp-card.popular:hover { transform: translateY(-7px); }
}
.pp-badge {
  background: var(--vala-brand-grad);
  box-shadow: 0 14px 26px -14px rgba(139,92,246,.9);
}
.pp-name {
  color: var(--vala-text);
  letter-spacing: 0;
}
.pp-tag {
  color: var(--vala-muted);
  min-height: auto;
}
.pp-price .num {
  letter-spacing: 0;
}
.pp-from,
.pp-price .cur {
  color: var(--vala-dim);
}
.pp-delivery {
  color: #c4b5fd;
  background: rgba(139,92,246,.11);
  border-color: rgba(139,92,246,.24);
}
.pp-feats {
  gap: 10px;
}
.pp-feats li {
  min-width: 0;
  color: rgba(243,244,251,.93);
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.pp-feats li i {
  color: var(--vala-teal);
}
.pp-feats-muted {
  margin-top: -8px;
  padding-top: 14px;
  border-top: 1px solid var(--vala-line-soft);
}
.pp-feats-muted li {
  color: var(--vala-dim);
  font-size: .86rem;
}
.pp-feats-muted li i {
  color: #9aa0b8;
}
.pp-cta {
  min-height: 50px;
  border-color: var(--vala-line);
  background: rgba(255,255,255,.045);
}
.pp-cta.primary,
.contact-page .btn-primary {
  background: var(--vala-brand-grad);
  box-shadow: 0 16px 38px -20px rgba(139,92,246,.88);
}
.pp-cta.primary:hover,
.contact-page .btn-primary:hover {
  box-shadow: 0 22px 46px -22px rgba(99,91,255,.92);
}
.pp-tax-note {
  color: var(--vala-muted);
}
.pp-tax-note i,
.pp-compare .yes {
  color: var(--vala-teal);
}
.pp-compare-summary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}
.pp-compare-pill {
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018)),
    var(--vala-panel);
  border-color: var(--vala-line);
  box-shadow: var(--vala-shadow);
  transition: transform var(--ux-med) var(--ux-ease), border-color var(--ux-med), box-shadow var(--ux-med);
}
.pp-compare-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(139,92,246,.34);
  box-shadow: var(--vala-shadow-hover);
}
.pp-compare-pill.popular {
  border-color: rgba(139,92,246,.44);
  background: var(--vala-brand-soft), var(--vala-panel);
}
.pp-compare-pill span,
.pp-compare-pill small {
  color: var(--vala-muted);
}
.pp-compare-wrap {
  border-color: var(--vala-line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    var(--vala-panel);
  box-shadow: 0 28px 86px -60px rgba(99,91,255,.62);
}
.pp-compare {
  min-width: 0;
}
.pp-compare thead th {
  background: rgba(255,255,255,.03);
  white-space: normal;
}
.pp-compare thead th.pop {
  color: #c4b5fd;
  background: rgba(139,92,246,.10);
}
.pp-compare tbody th,
.pp-compare tbody td {
  white-space: normal;
  line-height: 1.65;
}
.pp-compare tbody td.pop {
  background: rgba(139,92,246,.06);
}
.pp-compare .no {
  color: #7f849b;
}

.about-page,
.about-process-band,
.about-team-section,
.about-proof-section,
.about-final-cta,
.contact-page {
  color: var(--vala-text);
}
.about-showcase-copy p,
.about-value-card p,
.about-process-step p,
.contact-page .ux-contact-info p {
  color: var(--vala-muted);
}
.about-mini-metrics div,
.about-value-card,
.about-process-step,
.about-store-panel,
.contact-page .ux-contact-info,
.contact-page .ux-contact-form {
  background:
    linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.018)),
    var(--vala-panel) !important;
  border-color: var(--vala-line) !important;
  box-shadow: var(--vala-shadow);
}
.about-mini-metrics strong {
  color: #c4b5fd;
}
.about-store-panel {
  background:
    linear-gradient(145deg, rgba(139,92,246,.12), rgba(59,130,246,.045)),
    var(--vala-panel) !important;
}
.about-store-top span:first-child { background: #8b5cf6; }
.about-store-top span:nth-child(2) { background: #3b82f6; }
.about-store-top span:nth-child(3) { background: #2dd4bf; }
.about-store-row i,
.about-process-step span,
.contact-page .info-icon {
  color: #fff;
  background: var(--vala-brand-grad);
}
.about-store-preview span {
  background: linear-gradient(135deg, rgba(139,92,246,.34), rgba(59,130,246,.20));
}
.about-store-preview span:first-child {
  background: linear-gradient(135deg, rgba(99,91,255,.30), rgba(45,212,191,.13));
}
.about-store-preview span:nth-child(4) {
  background: linear-gradient(135deg, rgba(45,212,191,.16), rgba(139,92,246,.18));
}
.about-store-body li i {
  color: var(--vala-teal);
}
.about-value-card i {
  background: var(--vala-brand-grad);
}
.about-value-card:nth-child(2) i {
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #2dd4bf);
}
.about-value-card:nth-child(3) i {
  background: linear-gradient(135deg, #8b5cf6, #2dd4bf);
}
.about-process-band {
  background:
    linear-gradient(180deg, rgba(14,15,24,.92), rgba(8,9,16,.98));
}
.about-final-cta {
  background: linear-gradient(180deg, rgba(17,19,29,.78), rgba(8,9,16,.98));
}
.contact-page .ux-contact-info {
  background:
    linear-gradient(145deg, rgba(139,92,246,.115), rgba(59,130,246,.052)),
    var(--vala-panel) !important;
}
.contact-page .ux-contact-info .info-item {
  background: rgba(255,255,255,.035);
  border-color: var(--vala-line-soft);
}
.contact-page .ux-contact-info .info-item > div:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}
.contact-page .ux-contact-form::before {
  background: var(--vala-brand-grad);
}
.contact-page .form-label {
  color: rgba(243,244,251,.86);
}
.contact-page .form-input,
.contact-page .form-textarea,
.contact-page select.form-input {
  background-color: rgba(8,9,16,.55);
  border-color: var(--vala-line);
}
.contact-page .form-input:focus,
.contact-page .form-textarea:focus,
.contact-page select.form-input:focus {
  border-color: rgba(139,92,246,.64) !important;
  box-shadow: 0 0 0 4px rgba(139,92,246,.16) !important;
}
.contact-page .form-input.ux-has-value,
.contact-page .form-textarea.ux-has-value {
  border-color: rgba(45,212,191,.38);
}
.contact-page .form-input:focus-visible,
.contact-page .form-textarea:focus-visible {
  transform: translateY(-1px);
}
.ux-contact-form-wrap > div[style*="rgba(124,58,237"] {
  background: rgba(139,92,246,.10) !important;
  border-color: rgba(139,92,246,.26) !important;
}

.about-page .animate.fadeInUp,
.about-process-band .animate.fadeInUp,
.about-team-section .animate.fadeInUp,
.about-proof-section .animate.fadeInUp,
.contact-page .animate.fadeInUp {
  animation-duration: .72s;
  animation-timing-function: var(--ux-ease);
}
.about-value-card,
.about-process-step,
.contact-page .ux-contact-info .info-item {
  will-change: transform;
}
.about-value-card:hover,
.about-process-step:hover,
.about-store-panel:hover,
.contact-page .ux-contact-info .info-item:hover,
.contact-page .ux-contact-form:hover {
  border-color: rgba(139,92,246,.34) !important;
  box-shadow: var(--vala-shadow-hover);
}
.about-store-panel:hover {
  transform: translateY(-5px);
}
.about-value-card:nth-child(2).fadeInUp,
.about-process-step:nth-child(2).fadeInUp { animation-delay: .08s; }
.about-value-card:nth-child(3).fadeInUp,
.about-process-step:nth-child(3).fadeInUp { animation-delay: .16s; }
.about-process-step:nth-child(4).fadeInUp { animation-delay: .24s; }
.contact-page .ux-contact-form-wrap.fadeInUp { animation-delay: .08s; }

.pp-compare-wrap.shown .pp-compare tbody tr {
  animation: vala-soft-in .56s var(--ux-ease) both;
}
.pp-compare-wrap.shown .pp-compare tbody tr:nth-child(2) { animation-delay: .035s; }
.pp-compare-wrap.shown .pp-compare tbody tr:nth-child(3) { animation-delay: .07s; }
.pp-compare-wrap.shown .pp-compare tbody tr:nth-child(4) { animation-delay: .105s; }
.pp-compare-wrap.shown .pp-compare tbody tr:nth-child(5) { animation-delay: .14s; }
.pp-compare-wrap.shown .pp-compare tbody tr:nth-child(6) { animation-delay: .175s; }
.pp-compare-wrap.shown .pp-compare tbody tr:nth-child(7) { animation-delay: .21s; }
.pp-compare-wrap.shown .pp-compare tbody tr:nth-child(8) { animation-delay: .245s; }
.pp-compare-wrap.shown .pp-compare tbody tr:nth-child(9) { animation-delay: .28s; }
.pp-compare-wrap.shown .pp-compare tbody tr:nth-child(10) { animation-delay: .315s; }
.pp-compare-wrap.shown .pp-compare tbody tr:nth-child(11) { animation-delay: .35s; }
.pp-compare-wrap.shown .pp-compare tbody tr:nth-child(12) { animation-delay: .385s; }
.pp-compare-wrap.shown .pp-compare tbody tr:nth-child(13) { animation-delay: .42s; }
.pp-compare-wrap.shown .pp-compare tbody tr:nth-child(14) { animation-delay: .455s; }

@media (max-width: 920px) {
  .pp-cards.salla,
  .pp-compare-summary {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
  .pp-card {
    padding: 28px 22px;
  }
}
@media (max-width: 720px) {
  .pp-compare tbody tr {
    background:
      linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.016)),
      var(--vala-panel);
    border-color: var(--vala-line);
    box-shadow: var(--vala-shadow);
  }
  .pp-compare tbody tr > th {
    color: var(--vala-text);
    line-height: 1.55;
  }
  .pp-compare tbody td {
    align-items: flex-start;
    white-space: normal;
    text-align: end;
  }
  .pp-compare tbody td::before {
    flex: 0 0 auto;
    color: var(--vala-muted);
  }
  .pp-compare tbody td.pop {
    background: rgba(139,92,246,.09);
  }
  .pp-compare tbody td.pop::before {
    color: #c4b5fd;
  }
}
@media (max-width: 640px) {
  .packages-page-hero,
  .about-page-hero,
  .contact-page-hero {
    padding-inline: 18px;
  }
  .pp-cards.salla,
  .pp-compare-summary {
    max-width: none;
  }
  .pp-card {
    border-radius: 18px;
    padding: 24px 18px;
  }
  .pp-price .num {
    font-size: 2.35rem;
  }
  .pp-feats li,
  .pp-compare tbody td {
    font-size: .88rem;
  }
  .about-store-row,
  .contact-page .ux-contact-info .info-item {
    align-items: flex-start;
  }
  .contact-page .ux-contact-form {
    padding: 24px !important;
  }
}
@media (max-width: 420px) {
  .pp-card {
    padding: 22px 16px;
  }
  .pp-badge {
    font-size: .68rem;
    padding-inline: 12px;
  }
  .pp-compare tbody td {
    gap: 10px;
    padding-inline: 12px;
  }
  .contact-page .ux-contact-info {
    padding: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .packages-page-hero .px-eyebrow,
  .packages-page-hero h1,
  .packages-page-hero p,
  .about-page-hero .px-eyebrow,
  .about-page-hero h1,
  .about-page-hero p,
  .contact-page-hero h1,
  .contact-page-hero p,
  .pp-compare-wrap.shown .pp-compare tbody tr {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Final guard for the two screenshot regressions. Keep this at EOF. */
.pp-cards.salla {
  padding-top: 18px !important;
}
.pp-card {
  overflow: visible !important;
}
.pp-card.popular {
  padding-top: 42px !important;
}
.pp-card .pp-badge {
  top: -15px !important;
  left: 50% !important;
  right: auto !important;
  inset-inline-start: auto !important;
  inset-inline-end: auto !important;
  z-index: 10 !important;
  transform: translateX(-50%) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  max-width: calc(100% - 40px);
  padding: 6px 18px !important;
  line-height: 1.2;
}

.about-showcase.animate.fadeInUp {
  animation: about-showcase-soft-in .42s var(--ux-ease) both !important;
}
.about-store-panel,
.about-store-panel:hover,
.about-store-preview span,
.about-store-row,
.about-store-body li {
  transform: none !important;
}
.about-store-panel {
  transition: border-color .22s var(--ux-ease), box-shadow .22s var(--ux-ease), background .22s var(--ux-ease) !important;
  will-change: auto !important;
}
.about-store-preview span,
.about-store-row,
.about-store-body li {
  animation: none !important;
}
@media (max-width: 640px) {
  .pp-card.popular {
    padding-top: 40px !important;
  }
  .pp-card .pp-badge {
    top: -14px !important;
    min-height: 28px;
    padding: 5px 14px !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-showcase.animate.fadeInUp {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Vala final public overrides: homepage nav + public page canvas. */
:root { --vala-public-shell: min(1180px, calc(100% - 42px)); }

body:not(.page-home):not(.dashboard) { background:#07070c !important; }
body:not(.page-home):not(.dashboard)::before {
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  pointer-events:none;
  background:
    radial-gradient(58% 42% at 84% -2%, rgba(124,58,237,.24), transparent 60%),
    radial-gradient(46% 38% at 10% 16%, rgba(79,70,229,.12), transparent 62%),
    radial-gradient(55% 45% at 80% 56%, rgba(124,58,237,.10), transparent 62%),
    radial-gradient(52% 42% at 16% 92%, rgba(34,211,238,.07), transparent 60%),
    linear-gradient(180deg,#0a0a13 0%,#08080f 55%,#07070c 100%) !important;
}
body:not(.page-home):not(.dashboard)::after {
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size:48px 48px;
  -webkit-mask:radial-gradient(140% 96% at 72% -6%, #000 0%, rgba(0,0,0,.42) 48%, transparent 82%);
          mask:radial-gradient(140% 96% at 72% -6%, #000 0%, rgba(0,0,0,.42) 48%, transparent 82%);
}

@media (min-width:769px) {
  body:not(.dashboard) .header {
    background:linear-gradient(180deg,rgba(7,7,12,.86),rgba(7,7,12,.42)) !important;
    border-bottom:1px solid rgba(255,255,255,.06) !important;
    box-shadow:0 18px 46px -38px rgba(0,0,0,.9) !important;
  }
  body:not(.dashboard) .header-inner {
    width:var(--vala-public-shell) !important;
    max-width:none !important;
    height:72px !important;
    padding-inline:0 !important;
  }
  body:not(.dashboard) .nav {
    display:flex;
    align-items:center;
    gap:6px !important;
    padding:6px !important;
    border:1px solid rgba(255,255,255,.07) !important;
    border-radius:999px !important;
    background:rgba(255,255,255,.035) !important;
    box-shadow:none !important;
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
  }
  body:not(.dashboard) .nav a {
    min-height:40px !important;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 16px !important;
    border-radius:999px !important;
    border-color:transparent !important;
    color:rgba(244,244,251,.70) !important;
    background:transparent !important;
    font-weight:800 !important;
    line-height:1.2;
  }
  body:not(.dashboard) .nav a:hover {
    color:#fff !important;
    background:rgba(255,255,255,.055) !important;
    border-color:rgba(255,255,255,.09) !important;
  }
  body:not(.dashboard) .nav a.active {
    color:#fff !important;
    background:linear-gradient(120deg,rgba(124,58,237,.34),rgba(34,211,238,.12)) !important;
    border-color:rgba(255,255,255,.07) !important;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.07) !important;
  }
}

@media (max-width:768px) {
  body:not(.dashboard) { --vala-public-shell:min(100% - 28px,1180px); }
  body:not(.dashboard)::after { background-size:34px 34px; }
  body:not(.dashboard) .header-inner {
    width:calc(100% - 28px) !important;
    padding-inline:0 !important;
  }
  body:not(.dashboard) .nav {
    inset-inline:14px !important;
    width:auto !important;
    border-radius:20px !important;
    align-items:stretch !important;
    padding:8px !important;
    border:1px solid rgba(255,255,255,.08) !important;
    background:rgba(10,10,18,.96) !important;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
  }
  body:not(.dashboard) .nav a {
    min-height:46px !important;
    border-radius:14px !important;
    font-weight:800 !important;
  }
}

.pp-card.popular { padding-top:44px !important; }
.pp-card .pp-badge,
html[dir="rtl"] .pp-card .pp-badge {
  top:-15px !important;
  left:50% !important;
  right:auto !important;
  inset-inline-start:auto !important;
  inset-inline-end:auto !important;
  width:max-content;
  max-width:calc(100% - 36px);
  transform:translateX(-50%) !important;
  margin:0 !important;
  z-index:30 !important;
  text-align:center;
  white-space:nowrap;
}

@media (max-width:420px) {
  .pp-card .pp-badge {
    top:-14px !important;
    max-width:calc(100% - 28px);
  }
}

.about-store-panel {
  border-radius:24px !important;
  background:linear-gradient(160deg,var(--px-panel-2),var(--px-panel)) !important;
  border-color:rgba(255,255,255,.09) !important;
  box-shadow:0 20px 60px -34px rgba(0,0,0,.82) !important;
}
.about-store-top { border-bottom-color:rgba(255,255,255,.06) !important; }
.about-store-row,
.about-store-body li,
.about-mini-metrics div,
.about-value-card,
.about-process-step { border-radius:14px !important; }
.about-store-row {
  background:rgba(255,255,255,.035) !important;
  border:1px solid rgba(255,255,255,.07);
}
.about-store-preview span,
.about-store-preview span:first-child,
.about-store-preview span:nth-child(4) {
  background:linear-gradient(135deg,rgba(124,58,237,.34),rgba(167,139,250,.18)) !important;
}

/* Vala final public overrides: homepage nav + public page canvas. */
:root { --vala-public-shell: min(1180px, calc(100% - 42px)); }

body:not(.page-home):not(.dashboard) { background:#07070c !important; }
body:not(.page-home):not(.dashboard)::before {
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  pointer-events:none;
  background:
    radial-gradient(58% 42% at 84% -2%, rgba(124,58,237,.24), transparent 60%),
    radial-gradient(46% 38% at 10% 16%, rgba(79,70,229,.12), transparent 62%),
    radial-gradient(55% 45% at 80% 56%, rgba(124,58,237,.10), transparent 62%),
    radial-gradient(52% 42% at 16% 92%, rgba(34,211,238,.07), transparent 60%),
    linear-gradient(180deg,#0a0a13 0%,#08080f 55%,#07070c 100%) !important;
}
body:not(.page-home):not(.dashboard)::after {
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size:48px 48px;
  -webkit-mask:radial-gradient(140% 96% at 72% -6%, #000 0%, rgba(0,0,0,.42) 48%, transparent 82%);
          mask:radial-gradient(140% 96% at 72% -6%, #000 0%, rgba(0,0,0,.42) 48%, transparent 82%);
}

@media (min-width:769px) {
  body:not(.dashboard) .header {
    background:linear-gradient(180deg,rgba(7,7,12,.86),rgba(7,7,12,.42)) !important;
    border-bottom:1px solid rgba(255,255,255,.06) !important;
    box-shadow:0 18px 46px -38px rgba(0,0,0,.9) !important;
  }
  body:not(.dashboard) .header-inner {
    width:var(--vala-public-shell) !important;
    max-width:none !important;
    height:72px !important;
    padding-inline:0 !important;
  }
  body:not(.dashboard) .nav {
    display:flex;
    align-items:center;
    gap:6px !important;
    padding:6px !important;
    border:1px solid rgba(255,255,255,.07) !important;
    border-radius:999px !important;
    background:rgba(255,255,255,.035) !important;
    box-shadow:none !important;
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
  }
  body:not(.dashboard) .nav a {
    min-height:40px !important;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 16px !important;
    border-radius:999px !important;
    border-color:transparent !important;
    color:rgba(244,244,251,.70) !important;
    background:transparent !important;
    font-weight:800 !important;
    line-height:1.2;
  }
  body:not(.dashboard) .nav a:hover {
    color:#fff !important;
    background:rgba(255,255,255,.055) !important;
    border-color:rgba(255,255,255,.09) !important;
  }
  body:not(.dashboard) .nav a.active {
    color:#fff !important;
    background:linear-gradient(120deg,rgba(124,58,237,.34),rgba(34,211,238,.12)) !important;
    border-color:rgba(255,255,255,.07) !important;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.07) !important;
  }
}

@media (max-width:768px) {
  body:not(.dashboard) { --vala-public-shell:min(100% - 28px,1180px); }
  body:not(.dashboard)::after { background-size:34px 34px; }
  body:not(.dashboard) .header-inner {
    width:calc(100% - 28px) !important;
    padding-inline:0 !important;
  }
  body:not(.dashboard) .nav {
    inset-inline:14px !important;
    width:auto !important;
    border-radius:20px !important;
    align-items:stretch !important;
    padding:8px !important;
    border:1px solid rgba(255,255,255,.08) !important;
    background:rgba(10,10,18,.96) !important;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
  }
  body:not(.dashboard) .nav a {
    min-height:46px !important;
    border-radius:14px !important;
    font-weight:800 !important;
  }
}

.pp-card.popular { padding-top:44px !important; }
.pp-card .pp-badge,
html[dir="rtl"] .pp-card .pp-badge {
  top:-15px !important;
  left:50% !important;
  right:auto !important;
  inset-inline-start:auto !important;
  inset-inline-end:auto !important;
  width:max-content;
  max-width:calc(100% - 36px);
  transform:translateX(-50%) !important;
  margin:0 !important;
  z-index:30 !important;
  text-align:center;
  white-space:nowrap;
}

@media (max-width:420px) {
  .pp-card .pp-badge {
    top:-14px !important;
    max-width:calc(100% - 28px);
  }
}

.about-store-panel {
  border-radius:24px !important;
  background:linear-gradient(160deg,var(--px-panel-2),var(--px-panel)) !important;
  border-color:rgba(255,255,255,.09) !important;
  box-shadow:0 20px 60px -34px rgba(0,0,0,.82) !important;
}
.about-store-top { border-bottom-color:rgba(255,255,255,.06) !important; }
.about-store-row,
.about-store-body li,
.about-mini-metrics div,
.about-value-card,
.about-process-step { border-radius:14px !important; }
.about-store-row {
  background:rgba(255,255,255,.035) !important;
  border:1px solid rgba(255,255,255,.07);
}
.about-store-preview span,
.about-store-preview span:first-child,
.about-store-preview span:nth-child(4) {
  background:linear-gradient(135deg,rgba(124,58,237,.34),rgba(167,139,250,.18)) !important;
}

/* Final public UI sync: use the homepage shell across public pages. */
:root {
  --vala-public-shell: min(1180px, calc(100% - 42px));
}

body:not(.page-home):not(.dashboard) {
  background: #07070c !important;
}

body:not(.page-home):not(.dashboard)::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(58% 42% at 84% -2%, rgba(124,58,237,.24), transparent 60%),
    radial-gradient(46% 38% at 10% 16%, rgba(79,70,229,.12), transparent 62%),
    radial-gradient(55% 45% at 80% 56%, rgba(124,58,237,.10), transparent 62%),
    radial-gradient(52% 42% at 16% 92%, rgba(34,211,238,.07), transparent 60%),
    linear-gradient(180deg,#0a0a13 0%,#08080f 55%,#07070c 100%);
}

body:not(.page-home):not(.dashboard)::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask: radial-gradient(140% 96% at 72% -6%, #000 0%, rgba(0,0,0,.42) 48%, transparent 82%);
          mask: radial-gradient(140% 96% at 72% -6%, #000 0%, rgba(0,0,0,.42) 48%, transparent 82%);
}

@media (min-width: 769px) {
  body:not(.dashboard) .header {
    background: linear-gradient(180deg,rgba(7,7,12,.86),rgba(7,7,12,.42)) !important;
    border-bottom: 1px solid rgba(255,255,255,.06) !important;
    box-shadow: 0 18px 46px -38px rgba(0,0,0,.9) !important;
  }

  body:not(.dashboard) .header-inner {
    width: var(--vala-public-shell) !important;
    max-width: none !important;
    height: 72px !important;
    padding-inline: 0 !important;
  }

  body:not(.dashboard) .nav {
    display: flex;
    align-items: center;
    gap: 6px !important;
    padding: 6px !important;
    border: 1px solid rgba(255,255,255,.07) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.035) !important;
    box-shadow: none !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  body:not(.dashboard) .nav a {
    min-height: 40px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px !important;
    border-radius: 999px !important;
    border-color: transparent !important;
    color: rgba(244,244,251,.70) !important;
    background: transparent !important;
    font-weight: 800 !important;
    line-height: 1.2;
  }

  body:not(.dashboard) .nav a:hover {
    color: #fff !important;
    background: rgba(255,255,255,.055) !important;
    border-color: rgba(255,255,255,.09) !important;
  }

  body:not(.dashboard) .nav a.active {
    color: #fff !important;
    background: linear-gradient(120deg,rgba(124,58,237,.34),rgba(34,211,238,.12)) !important;
    border-color: rgba(255,255,255,.07) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.07) !important;
  }
}

@media (max-width: 768px) {
  body:not(.dashboard) {
    --vala-public-shell: min(100% - 28px, 1180px);
  }

  body:not(.dashboard)::after {
    background-size: 34px 34px;
  }

  body:not(.dashboard) .header-inner {
    width: calc(100% - 28px) !important;
    padding-inline: 0 !important;
  }

  body:not(.dashboard) .nav {
    inset-inline: 14px !important;
    width: auto !important;
    border-radius: 20px !important;
    align-items: stretch !important;
    padding: 8px !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    background: rgba(10,10,18,.96) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  body:not(.dashboard) .nav a {
    min-height: 46px !important;
    border-radius: 14px !important;
    font-weight: 800 !important;
  }
}

/* Center the Pro package badge regardless of RTL/LTR inline positioning. */
.pp-card.popular {
  padding-top: 44px !important;
}

.pp-card .pp-badge {
  top: -15px !important;
  left: 50% !important;
  right: auto !important;
  inset-inline-start: auto !important;
  inset-inline-end: auto !important;
  width: max-content;
  max-width: calc(100% - 36px);
  transform: translateX(-50%) !important;
  margin: 0 !important;
  z-index: 30 !important;
  text-align: center;
  white-space: nowrap;
}

html[dir="rtl"] .pp-card .pp-badge {
  transform: translateX(-50%) !important;
}

@media (max-width: 420px) {
  .pp-card .pp-badge {
    top: -14px !important;
    max-width: calc(100% - 28px);
  }
}

/* Restore the About page visual to the same modern store-card language. */
.about-store-panel {
  border-radius: 24px !important;
  background: linear-gradient(160deg,var(--px-panel-2),var(--px-panel)) !important;
  border-color: rgba(255,255,255,.09) !important;
  box-shadow: 0 20px 60px -34px rgba(0,0,0,.82) !important;
}

.about-store-top {
  border-bottom-color: rgba(255,255,255,.06) !important;
}

.about-store-row,
.about-store-body li,
.about-mini-metrics div,
.about-value-card,
.about-process-step {
  border-radius: 14px !important;
}

.about-store-row {
  background: rgba(255,255,255,.035) !important;
  border: 1px solid rgba(255,255,255,.07);
}

.about-store-preview span,
.about-store-preview span:first-child,
.about-store-preview span:nth-child(4) {
  background: linear-gradient(135deg, rgba(124,58,237,.34), rgba(167,139,250,.18)) !important;
}

/* Public pages alignment with the homepage premium shell. */
body:not(.page-home) {
  background:
    radial-gradient(62% 42% at 82% -8%, rgba(124,58,237,.18), transparent 60%),
    radial-gradient(46% 36% at 8% 8%, rgba(79,70,229,.10), transparent 62%),
    linear-gradient(180deg, #080810 0%, #07070c 100%);
}
body:not(.page-home)::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask: radial-gradient(120% 80% at 76% -8%, rgba(0,0,0,.76), transparent 74%);
          mask: radial-gradient(120% 80% at 76% -8%, rgba(0,0,0,.76), transparent 74%);
}

@media (min-width: 769px) {
  .header {
    background:
      linear-gradient(180deg, rgba(12,8,25,.94), rgba(7,7,12,.86)) !important;
    border-bottom: 1px solid rgba(124,58,237,.48) !important;
    box-shadow: 0 18px 46px -38px rgba(0,0,0,.9);
  }
  .header-inner {
    max-width: 1180px;
    height: 68px;
    padding-inline: 22px;
  }
  .nav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 16px 34px -30px rgba(0,0,0,.9);
  }
  .nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    color: rgba(244,244,251,.68);
    font-weight: 800;
    line-height: 1.2;
    background: transparent;
  }
  .nav a:hover {
    color: var(--px-text);
    background: rgba(255,255,255,.055);
    border-color: rgba(255,255,255,.09);
    transform: translateY(-1px);
  }
  .nav a.active {
    color: #fff;
    background: linear-gradient(180deg, rgba(124,58,237,.42), rgba(124,58,237,.22));
    border-color: rgba(167,139,250,.38);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 12px 26px -18px rgba(124,58,237,.85);
  }
  .nav a.active::after {
    bottom: 5px;
    width: 18px;
    height: 2px;
    background: #a78bfa;
  }
  .brand-logo {
    height: 34px;
  }
}

.page-header,
.ux-page-hero,
.packages-page-hero,
.about-page-hero,
.contact-page-hero {
  background:
    radial-gradient(60% 70% at 78% 0%, rgba(124,58,237,.12), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,0)) !important;
}

/* Correct Pro badge centering independently from RTL inline positioning. */
.pp-card.popular {
  padding-top: 46px !important;
}
.pp-card .pp-badge {
  top: 0 !important;
  left: 50% !important;
  right: auto !important;
  inset-inline-start: auto !important;
  inset-inline-end: auto !important;
  transform: translate(-50%, -50%) !important;
  z-index: 20 !important;
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
}

/* Keep the About visual card modern and stable, not dated or jumpy. */
.about-store-panel {
  border-radius: 22px;
  background:
    radial-gradient(440px circle at 82% 0%, rgba(124,58,237,.16), transparent 58%),
    linear-gradient(165deg, rgba(21,21,42,.78), rgba(12,12,20,.74)) !important;
}
.about-store-top {
  background: rgba(255,255,255,.025);
}
.about-store-preview span,
.about-store-preview span:first-child,
.about-store-preview span:nth-child(4) {
  background: linear-gradient(135deg, rgba(124,58,237,.28), rgba(79,70,229,.16));
}
.about-store-preview span:first-child {
  min-height: 156px;
}
.about-store-panel,
.about-store-panel:hover {
  transform: none !important;
}

@media (max-width: 640px) {
  .pp-card.popular {
    padding-top: 44px !important;
  }
  .pp-card .pp-badge {
    max-width: calc(100% - 28px);
  }
}

/* Targeted regression fixes: package badge + About visual stability. */
.pp-cards.salla {
  padding-top: 18px;
}
.pp-card {
  overflow: visible !important;
}
.pp-card.popular {
  padding-top: 42px;
}
.pp-card .pp-badge {
  top: -15px;
  left: 50%;
  right: auto;
  inset-inline-start: auto;
  inset-inline-end: auto;
  z-index: 6;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 12px 26px -18px rgba(124,58,237,.8);
}

.about-showcase.animate.fadeInUp {
  animation: about-showcase-soft-in .42s var(--ux-ease) both !important;
}
.about-store-panel,
.about-store-panel:hover {
  transform: none !important;
}
.about-store-panel {
  transition: border-color .22s var(--ux-ease), box-shadow .22s var(--ux-ease), background .22s var(--ux-ease);
  will-change: auto;
}
.about-store-preview span,
.about-store-row,
.about-store-body li {
  animation: none !important;
  transform: none !important;
}
@keyframes about-showcase-soft-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 920px) {
  .pp-cards.salla {
    padding-top: 16px;
  }
  .pp-card.popular {
    padding-top: 40px;
  }
}
@media (max-width: 420px) {
  .pp-card .pp-badge {
    top: -14px;
    min-height: 28px;
    padding: 5px 14px;
    max-width: calc(100% - 32px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-showcase.animate.fadeInUp {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Regression repair: restore Vala's calm premium Arabic UI. */
.packages-page-hero,
.about-page-hero,
.contact-page-hero {
  background: linear-gradient(180deg, rgba(124,58,237,.055), rgba(10,10,15,0)) !important;
}
.packages-page-hero::before,
.about-page-hero::before,
.contact-page-hero::before {
  content: none !important;
}
.packages-page-hero .px-eyebrow,
.packages-page-hero h1,
.packages-page-hero p,
.about-page-hero .px-eyebrow,
.about-page-hero h1,
.about-page-hero p,
.contact-page-hero h1,
.contact-page-hero p {
  animation: none !important;
  filter: none !important;
  text-shadow: none !important;
}
.packages-page-hero h1,
.about-page-hero h1,
.contact-page-hero h1 {
  color: var(--text-primary);
  line-height: 1.28;
  letter-spacing: 0;
}
.packages-page-hero p,
.about-page-hero p,
.contact-page-hero p {
  color: var(--text-secondary);
  line-height: 1.8;
}
.packages-page-hero .px-eyebrow,
.about-page-hero .px-eyebrow {
  color: var(--accent-secondary);
  background: rgba(124,58,237,.10);
  border-color: rgba(124,58,237,.22);
}

.pp-cards.salla {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 940px;
  gap: 22px;
}
.pp-card {
  border-radius: 22px;
  padding: 30px 24px;
  background: linear-gradient(170deg, rgba(255,255,255,.045), rgba(255,255,255,.014)) !important;
  border-color: rgba(255,255,255,.09) !important;
  box-shadow: 0 18px 54px -44px rgba(0,0,0,.9) !important;
  transform: none;
}
.pp-card::before {
  opacity: .45;
  background: var(--px-grad);
}
.pp-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124,58,237,.32) !important;
  box-shadow: 0 22px 58px -46px rgba(124,58,237,.46) !important;
}
.pp-card.popular,
.pp-card.popular:hover {
  background: linear-gradient(170deg, rgba(124,58,237,.10), rgba(255,255,255,.018)) !important;
  border-color: rgba(124,58,237,.38) !important;
  transform: translateY(0);
}
.pp-card.popular:hover { transform: translateY(-3px); }
.pp-badge {
  background: var(--px-grad);
  box-shadow: 0 10px 24px -16px rgba(124,58,237,.75);
}
.pp-name {
  color: var(--px-text);
  font-size: 1.28rem;
  line-height: 1.35;
  letter-spacing: 0;
}
.pp-tag,
.pp-from,
.pp-price .cur {
  color: var(--px-mut);
  line-height: 1.65;
}
.pp-price .num {
  letter-spacing: 0;
}
.pp-delivery {
  color: var(--px-violet-2);
  background: rgba(124,58,237,.10);
  border-color: rgba(124,58,237,.20);
}
.pp-feats {
  gap: 10px;
  margin: 20px 0 22px;
}
.pp-feats li {
  color: rgba(244,244,251,.94);
  font-size: .9rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.pp-feats li i,
.pp-tax-note i,
.pp-compare .yes {
  color: var(--success);
}
.pp-feats-muted {
  margin-top: -6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.pp-feats-muted li {
  color: var(--px-dim);
  font-size: .86rem;
}
.pp-feats-muted li i {
  color: var(--px-dim);
}
.pp-cta {
  min-height: 50px;
  border-color: rgba(255,255,255,.09);
  background: rgba(255,255,255,.045);
  box-shadow: none;
}
.pp-cta.primary,
.contact-page .btn-primary {
  background: var(--px-grad);
  box-shadow: 0 12px 28px -18px rgba(124,58,237,.72);
}
.pp-cta:hover,
.pp-cta.primary:hover,
.contact-page .btn-primary:hover {
  box-shadow: 0 16px 34px -22px rgba(124,58,237,.65);
}

.pp-compare-summary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 740px;
}
.pp-compare-pill,
.pp-compare-pill.popular {
  background: linear-gradient(170deg, rgba(255,255,255,.045), rgba(255,255,255,.014));
  border-color: rgba(255,255,255,.09);
  box-shadow: 0 16px 46px -40px rgba(0,0,0,.9);
}
.pp-compare-pill.popular {
  border-color: rgba(124,58,237,.28);
}
.pp-compare-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px -42px rgba(124,58,237,.45);
}
.pp-compare-wrap {
  background: var(--px-panel);
  border-color: rgba(255,255,255,.09);
  box-shadow: 0 18px 56px -48px rgba(0,0,0,.9);
}
.pp-compare-wrap.shown .pp-compare tbody tr {
  animation: none !important;
}
.pp-compare thead th,
.pp-compare tbody th,
.pp-compare tbody td {
  line-height: 1.65;
  white-space: normal;
}
.pp-compare thead th.pop,
.pp-compare tbody td.pop {
  background: rgba(124,58,237,.07);
  color: var(--px-text);
}

.about-mini-metrics div,
.about-value-card,
.about-process-step,
.about-store-panel,
.contact-page .ux-contact-info,
.contact-page .ux-contact-form {
  background: linear-gradient(165deg, rgba(255,255,255,.045), rgba(255,255,255,.015)) !important;
  border-color: rgba(255,255,255,.09) !important;
  box-shadow: 0 18px 54px -44px rgba(0,0,0,.9) !important;
}
.about-mini-metrics strong,
.about-store-row small {
  color: var(--accent-secondary);
}
.about-showcase-copy h2,
.about-value-card h3,
.about-process-step h3,
.contact-page .ux-contact-info h2 {
  color: var(--text-primary);
  line-height: 1.4;
  letter-spacing: 0;
}
.about-showcase-copy p,
.about-value-card p,
.about-process-step p,
.contact-page .ux-contact-info p {
  color: var(--text-secondary);
  line-height: 1.85;
}
.about-store-panel {
  background: linear-gradient(165deg, rgba(124,58,237,.08), rgba(255,255,255,.015)) !important;
}
.about-store-top span:first-child { background: var(--accent-primary); }
.about-store-top span:nth-child(2) { background: var(--accent-secondary); }
.about-store-top span:nth-child(3) { background: rgba(255,255,255,.28); }
.about-store-row i,
.about-value-card i,
.about-value-card:nth-child(2) i,
.about-value-card:nth-child(3) i,
.about-process-step span,
.contact-page .info-icon {
  color: #fff;
  background: var(--accent-gradient-2);
}
.about-store-preview span,
.about-store-preview span:first-child,
.about-store-preview span:nth-child(4) {
  background: linear-gradient(135deg, rgba(124,58,237,.24), rgba(59,130,246,.14));
}
.about-store-body li i {
  color: var(--success);
}
.about-process-band {
  background: linear-gradient(180deg, rgba(18,18,26,.72), rgba(10,10,15,.92));
}
.about-final-cta {
  background: var(--bg-secondary);
}
.about-value-card:hover,
.about-process-step:hover,
.about-store-panel:hover,
.contact-page .ux-contact-info .info-item:hover,
.contact-page .ux-contact-form:hover {
  transform: translateY(-2px);
  border-color: rgba(124,58,237,.28) !important;
  box-shadow: 0 18px 54px -44px rgba(124,58,237,.45) !important;
}

.contact-page .ux-contact-info {
  background: linear-gradient(165deg, rgba(124,58,237,.075), rgba(255,255,255,.015)) !important;
}
.contact-page .ux-contact-info .info-item {
  background: rgba(255,255,255,.025);
  border-color: rgba(255,255,255,.07);
}
.contact-page .ux-contact-info .info-item > div:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}
.contact-page .ux-contact-form::before {
  background: var(--px-grad);
  height: 2px;
}
.contact-page .form-label {
  color: rgba(244,244,251,.86);
  line-height: 1.5;
}
.contact-page .form-input,
.contact-page .form-textarea,
.contact-page select.form-input {
  background-color: rgba(255,255,255,.035);
  border-color: rgba(255,255,255,.10);
}
.contact-page .form-input:focus,
.contact-page .form-textarea:focus,
.contact-page select.form-input:focus {
  border-color: rgba(124,58,237,.55) !important;
  box-shadow: 0 0 0 4px rgba(124,58,237,.14) !important;
  transform: none;
}
.contact-page .form-input.ux-has-value,
.contact-page .form-textarea.ux-has-value {
  border-color: rgba(167,139,250,.34);
}
.ux-contact-form-wrap > div[style*="rgba(124,58,237"] {
  background: rgba(124,58,237,.08) !important;
  border-color: rgba(124,58,237,.20) !important;
}

.about-page .animate.fadeInUp,
.about-process-band .animate.fadeInUp,
.about-team-section .animate.fadeInUp,
.about-proof-section .animate.fadeInUp,
.contact-page .animate.fadeInUp {
  animation-duration: .5s;
  animation-timing-function: var(--ux-ease);
}
.about-value-card:nth-child(2).fadeInUp,
.about-process-step:nth-child(2).fadeInUp,
.about-value-card:nth-child(3).fadeInUp,
.about-process-step:nth-child(3).fadeInUp,
.about-process-step:nth-child(4).fadeInUp,
.contact-page .ux-contact-form-wrap.fadeInUp {
  animation-delay: 0s;
}

@media (max-width: 920px) {
  .pp-cards.salla,
  .pp-compare-summary {
    grid-template-columns: 1fr;
    max-width: 540px;
  }
}
@media (max-width: 720px) {
  .pp-compare-wrap {
    box-shadow: none;
  }
  .pp-compare tbody tr {
    background: var(--px-panel);
    border-color: rgba(255,255,255,.09);
    box-shadow: 0 14px 42px -36px rgba(0,0,0,.9);
  }
  .pp-compare tbody td {
    align-items: flex-start;
    gap: 12px;
    text-align: end;
  }
  .pp-compare tbody td::before {
    color: var(--px-mut);
    line-height: 1.5;
  }
}
@media (max-width: 640px) {
  .pp-card {
    padding: 24px 18px;
    border-radius: 18px;
  }
  .pp-name { font-size: 1.18rem; }
  .pp-price .num { font-size: 2.25rem; }
  .pp-feats li,
  .pp-compare tbody td {
    font-size: .88rem;
  }
  .pp-cta,
  .contact-page .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .contact-page .ux-contact-form {
    padding: 24px !important;
  }
  .contact-page .ux-contact-info .info-item,
  .about-store-row {
    align-items: flex-start;
  }
}
@media (max-width: 420px) {
  .pp-card { padding: 22px 16px; }
  .pp-badge {
    font-size: .68rem;
    padding-inline: 12px;
  }
  .pp-compare tbody td {
    padding-inline: 12px;
  }
  .contact-page .ux-contact-info {
    padding: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .packages-page-hero .px-eyebrow,
  .packages-page-hero h1,
  .packages-page-hero p,
  .about-page-hero .px-eyebrow,
  .about-page-hero h1,
  .about-page-hero p,
  .contact-page-hero h1,
  .contact-page-hero p,
  .about-page .animate.fadeInUp,
  .about-process-band .animate.fadeInUp,
  .about-team-section .animate.fadeInUp,
  .about-proof-section .animate.fadeInUp,
  .contact-page .animate.fadeInUp,
  .pp-compare-wrap.shown .pp-compare tbody tr {
    animation: none !important;
    transition-duration: .001ms !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Final guard for the two screenshot regressions. Keep this at EOF. */
.pp-cards.salla {
  padding-top: 18px !important;
}
.pp-card {
  overflow: visible !important;
}
.pp-card.popular {
  padding-top: 42px !important;
}
.pp-card .pp-badge {
  top: -15px !important;
  left: 50% !important;
  right: auto !important;
  inset-inline-start: auto !important;
  inset-inline-end: auto !important;
  z-index: 10 !important;
  transform: translateX(-50%) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  max-width: calc(100% - 40px);
  padding: 6px 18px !important;
  line-height: 1.2;
}

.about-showcase.animate.fadeInUp {
  animation: about-showcase-soft-in .42s var(--ux-ease) both !important;
}
.about-store-panel,
.about-store-panel:hover,
.about-store-preview span,
.about-store-row,
.about-store-body li {
  transform: none !important;
}
.about-store-panel {
  transition: border-color .22s var(--ux-ease), box-shadow .22s var(--ux-ease), background .22s var(--ux-ease) !important;
  will-change: auto !important;
}
.about-store-preview span,
.about-store-row,
.about-store-body li {
  animation: none !important;
}
@media (max-width: 640px) {
  .pp-card.popular {
    padding-top: 40px !important;
  }
  .pp-card .pp-badge {
    top: -14px !important;
    min-height: 28px;
    padding: 5px 14px !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-showcase.animate.fadeInUp {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
