html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ─── Landing page & site chrome ─── */

.landing-page {
  --landing-radius: 1.25rem;
  --landing-radius-lg: 1.75rem;
  --landing-shadow: 0 4px 24px rgba(0, 23, 31, 0.06);
  --landing-shadow-lg: 0 20px 60px rgba(0, 23, 31, 0.1);
  background: linear-gradient(180deg, #f8fbfd 0%, #f3f6f8 40%, #eef2f5 100%);
  overflow-x: hidden;
  overflow-y: visible;
  overflow-anchor: none;
}
.landing-page #app {
  max-width: 100%;
  overflow-x: hidden;
}

/* ─── Hero ─── */
.landing-hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  margin-top: var(--site-header-height, 4rem);
  padding: 2.75rem 1.5rem 4rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 15%, rgba(0, 168, 232, 0.14) 0%, transparent 28rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 250, 255, 0.82) 52%, rgba(255, 248, 240, 0.72) 100%);
}
@media (min-width: 768px) {
  .landing-hero {
    grid-template-columns: 1fr 1fr;
    padding: 3.25rem max(1.5rem, calc((100vw - 80rem) / 2 + 1.5rem)) 5.5rem;
    gap: 3rem;
  }
}
.landing-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.landing-hero__blob-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.landing-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}
.landing-hero__blob--1 {
  width: 28rem;
  height: 28rem;
  background: rgba(0, 168, 232, 0.18);
  top: -6rem;
  right: -8rem;
  animation: landingBlobDrift1 14s ease-in-out infinite;
}
.landing-hero__blob--2 {
  width: 20rem;
  height: 20rem;
  background: rgba(255, 210, 158, 0.35);
  bottom: 0;
  left: -4rem;
  animation: landingBlobDrift2 11s ease-in-out infinite;
}
@keyframes landingBlobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-2rem, 1.5rem) scale(1.06); }
}
@keyframes landingBlobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(1.5rem, -1rem) scale(1.08); }
}
.landing-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 168, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 232, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 70%);
  will-change: transform;
}
.landing-hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.landing-particle {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 140, 200, 0.48);
  filter: drop-shadow(0 3px 10px rgba(0, 168, 232, 0.2));
  animation: landingParticleDrift var(--particle-duration, 22s) ease-in-out infinite;
  animation-delay: var(--particle-delay, 0s);
  will-change: transform;
}
.landing-particle--warm {
  color: rgba(230, 130, 50, 0.45);
  filter: drop-shadow(0 3px 10px rgba(255, 170, 90, 0.22));
}
.landing-particle svg,
.landing-particle .particle-icon {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.landing-particle .particle-icon {
  shape-rendering: geometricPrecision;
}
@keyframes landingParticleDrift {
  0%, 100% {
    transform: translate(0, 0) rotate(var(--particle-rotate, 0deg));
    opacity: var(--particle-opacity, 0.35);
  }
  33% {
    transform: translate(var(--particle-dx, 12px), calc(var(--particle-dy, -18px) * -0.5)) rotate(calc(var(--particle-rotate, 0deg) + 6deg));
    opacity: calc(var(--particle-opacity, 0.35) * 1.15);
  }
  66% {
    transform: translate(calc(var(--particle-dx, 12px) * -0.6), var(--particle-dy, -18px)) rotate(calc(var(--particle-rotate, 0deg) - 4deg));
    opacity: calc(var(--particle-opacity, 0.35) * 0.85);
  }
}
.landing-hero__parallax-layer {
  will-change: transform;
}
.landing-hero__content,
.landing-hero__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.landing-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: rgba(0, 168, 232, 0.1);
  border: 1px solid rgba(0, 168, 232, 0.2);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.landing-hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  animation: landingPulse 2s ease-in-out infinite;
}
@keyframes landingPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.landing-hero__title {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--secondary);
  margin: 0 0 1rem;
}
.landing-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary) 0%, #0090c8 50%, #38bdf8 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: landingTitleShimmer 5s ease-in-out infinite;
}
@keyframes landingTitleShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
.landing-hero__desc {
  font-size: 1rem;
  font-weight: 600;
  color: #4b5563;
  line-height: 1.9;
  max-width: 26rem;
  margin: 0 0 2rem;
}
.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.landing-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, var(--primary) 0%, #0090c8 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0, 168, 232, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.landing-hero__cta--ghost {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 168, 232, 0.22);
  box-shadow: 0 8px 24px rgba(0, 23, 31, 0.06);
}
.landing-hero__cta--ghost:hover {
  color: #fff;
  background: var(--secondary);
  box-shadow: 0 12px 32px rgba(0, 23, 31, 0.16);
}
.landing-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 168, 232, 0.45);
  color: #fff;
}
.landing-hero__cta-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}
.landing-hero__cta:hover .landing-hero__cta-icon {
  transform: translateX(-4px);
}
.landing-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.5rem;
}
.landing-hero__chips span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 168, 232, 0.12);
  color: #4b5563;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 23, 31, 0.05);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.landing-hero__chips span:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 168, 232, 0.28);
  box-shadow: 0 10px 22px rgba(0, 168, 232, 0.12);
}
.landing-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.landing-stat {
  flex: 1 1 calc(33% - 1rem);
  min-width: 5.5rem;
  padding: 1rem 0.875rem;
  border-radius: var(--landing-radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 168, 232, 0.12);
  backdrop-filter: blur(8px);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.landing-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--landing-shadow);
}
.landing-stat__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
}
.landing-stat__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b7280;
  margin-top: 0.25rem;
}
.landing-hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
  min-height: 17.5rem;
}
@media (min-width: 768px) {
  .landing-hero__visual {
    min-height: 25rem;
  }
}
.landing-hero__ring {
  position: absolute;
  width: min(22rem, 80vw);
  height: min(22rem, 80vw);
  border-radius: 50%;
  border: 2px dashed rgba(0, 168, 232, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: landingSpin 40s linear infinite;
}
@keyframes landingSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.landing-justice-orb {
  position: relative;
  width: min(27rem, 88vw);
  aspect-ratio: 1;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 26px 44px rgba(0, 23, 31, 0.14));
}
.landing-justice-orb__halo {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.95) 0%, rgba(240, 250, 255, 0.75) 42%, rgba(0, 168, 232, 0.08) 100%);
  border: 1px solid rgba(0, 168, 232, 0.16);
  box-shadow:
    inset 0 0 40px rgba(255, 255, 255, 0.85),
    0 20px 60px rgba(0, 168, 232, 0.12);
}
.landing-justice-scale {
  position: relative;
  z-index: 2;
  width: 82%;
  height: 82%;
  animation: scaleFloat 5s ease-in-out infinite;
}
.scale-bg-circle {
  fill: rgba(0, 168, 232, 0.05);
  stroke: rgba(0, 168, 232, 0.14);
}
.scale-column,
.scale-beam,
.scale-chain {
  stroke: var(--secondary);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.scale-beam {
  animation: scaleBalance 3.8s ease-in-out infinite;
  transform-origin: 180px 126px;
}
.scale-center {
  fill: var(--primary);
  stroke: #fff;
  stroke-width: 4;
}
.scale-pan {
  fill: rgba(0, 168, 232, 0.16);
  stroke: var(--primary);
  stroke-width: 5;
  stroke-linejoin: round;
}
.scale-pan--left {
  animation: panLeft 3.8s ease-in-out infinite;
}
.scale-pan--right {
  animation: panRight 3.8s ease-in-out infinite;
}
.scale-chain--left {
  animation: panLeft 3.8s ease-in-out infinite;
}
.scale-chain--right {
  animation: panRight 3.8s ease-in-out infinite;
}
.scale-spark {
  fill: var(--accent-warm);
  opacity: 0.8;
  transform-origin: center;
  animation: sparkPulse 2.6s ease-in-out infinite;
}
.scale-spark--2 { animation-delay: 0.5s; }
.scale-spark--3 { animation-delay: 1s; }
@keyframes scaleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes scaleBalance {
  0%, 100% { transform: rotate(-1.5deg); }
  50% { transform: rotate(1.5deg); }
}
@keyframes panLeft {
  0%, 100% { transform: translateY(4px); }
  50% { transform: translateY(-4px); }
}
@keyframes panRight {
  0%, 100% { transform: translateY(-4px); }
  50% { transform: translateY(4px); }
}
@keyframes sparkPulse {
  0%, 100% { opacity: 0.35; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.08); }
}
/* Hero staggered entrance */
.landing-hero__content > *,
.landing-hero__visual {
  opacity: 0;
  transform: translateY(28px);
}
.landing-hero.is-hero-ready .landing-hero__content > *,
.landing-hero.is-hero-ready .landing-hero__visual {
  animation: landingHeroIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.landing-hero.is-hero-ready .landing-hero__content > *:nth-child(1) { animation-delay: 0.05s; }
.landing-hero.is-hero-ready .landing-hero__content > *:nth-child(2) { animation-delay: 0.14s; }
.landing-hero.is-hero-ready .landing-hero__content > *:nth-child(3) { animation-delay: 0.23s; }
.landing-hero.is-hero-ready .landing-hero__content > *:nth-child(4) { animation-delay: 0.32s; }
.landing-hero.is-hero-ready .landing-hero__content > *:nth-child(5) { animation-delay: 0.41s; }
.landing-hero.is-hero-ready .landing-hero__content > *:nth-child(6) { animation-delay: 0.5s; }
.landing-hero.is-hero-ready .landing-hero__visual {
  animation-name: landingHeroVisualIn;
  animation-delay: 0.35s;
}
@keyframes landingHeroIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes landingHeroVisualIn {
  from { opacity: 0; transform: translateY(20px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 767px) {
  .landing-hero {
    padding-top: 2rem;
  }
}

/* ─── Scroll reveal (sections) ─── */
.landing-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.landing-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.landing-reveal--scale {
  transform: translateY(24px) scale(0.97);
}
.landing-reveal--scale.is-visible {
  transform: translateY(0) scale(1);
}
.landing-reveal--from-start {
  transform: translateX(48px);
}
.landing-reveal--from-start.is-visible {
  transform: translateX(0);
}
.landing-reveal--from-end {
  transform: translateX(-48px);
}
.landing-reveal--from-end.is-visible {
  transform: translateX(0);
}

.landing-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.landing-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.landing-stagger.is-visible > *:nth-child(1) { transition-delay: 0.04s; }
.landing-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.landing-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.landing-stagger.is-visible > *:nth-child(4) { transition-delay: 0.22s; }
.landing-stagger.is-visible > *:nth-child(5) { transition-delay: 0.28s; }
.landing-stagger.is-visible > *:nth-child(6) { transition-delay: 0.34s; }
.landing-stagger.is-visible > *:nth-child(7) { transition-delay: 0.4s; }
.landing-stagger.is-visible > *:nth-child(8) { transition-delay: 0.46s; }
.landing-stagger.is-visible > *:nth-child(9) { transition-delay: 0.52s; }
.landing-stagger.is-visible > *:nth-child(10) { transition-delay: 0.58s; }
.landing-stagger.is-visible > *:nth-child(11) { transition-delay: 0.64s; }
.landing-stagger.is-visible > *:nth-child(12) { transition-delay: 0.7s; }
.landing-stagger.is-visible > *:nth-child(13) { transition-delay: 0.76s; }
.landing-stagger.is-visible > *:nth-child(14) { transition-delay: 0.82s; }

.landing-reveal .landing-section-head__bar {
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.landing-reveal.is-visible .landing-section-head__bar--dark {
  transform: scaleY(1);
  transition-delay: 0.1s;
}
.landing-reveal.is-visible .landing-section-head__bar--primary {
  transform: scaleY(1);
  transition-delay: 0.2s;
}

/* ─── Purpose (below hero) ─── */
.landing-purpose {
  position: relative;
  padding: 2.5rem 1.25rem 3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, #f8fbfd 100%);
  border-bottom: 1px solid rgba(0, 23, 31, 0.05);
}
@media (min-width: 768px) {
  .landing-purpose {
    padding: 3.5rem max(1.25rem, calc((100vw - 80rem) / 2 + 1.25rem)) 4rem;
  }
}
.landing-purpose__inner {
  width: min(100%, 80rem);
  margin-inline: auto;
}
.landing-purpose__intro {
  max-width: 42rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .landing-purpose__intro {
    margin-bottom: 2.5rem;
  }
}
.landing-purpose__eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 168, 232, 0.1);
  color: #0096d1;
  font-size: 0.75rem;
  font-weight: 800;
}
.landing-purpose__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 900;
  line-height: 1.45;
  color: #00171f;
}
.landing-purpose__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #475569;
}
.landing-purpose__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .landing-purpose__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
}
@media (min-width: 1024px) {
  .landing-purpose__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
.landing-purpose__card {
  padding: 1.25rem 1.15rem;
  border-radius: 1.125rem;
  background: #fff;
  border: 1px solid rgba(0, 23, 31, 0.06);
  box-shadow: 0 4px 20px rgba(0, 23, 31, 0.04);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.landing-purpose__card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 232, 0.2);
  box-shadow: 0 12px 32px rgba(0, 168, 232, 0.1);
}
.landing-purpose__card:hover .landing-purpose__icon {
  transform: scale(1.08) rotate(-4deg);
}
.landing-purpose__icon {
  transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.landing-purpose__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.85rem;
  border-radius: 0.8rem;
  background: linear-gradient(145deg, #e0f2fe, #f0f9ff);
  color: #00a8e8;
}
.landing-purpose__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}
.landing-purpose__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 900;
  color: #00171f;
}
.landing-purpose__card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.8;
  color: #64748b;
}

/* ─── Section shell ─── */
.landing-section,
.landing-featured,
.landing-shop,
.landing-ads,
.landing-steps-wrap {
  width: min(100%, 80rem);
  box-sizing: border-box;
}
.landing-section {
  max-width: 80rem;
  margin-inline: auto;
  padding: 3rem 1.5rem;
}
@media (min-width: 768px) {
  .landing-section {
    padding: 4rem 1.5rem;
  }
}
.landing-section--tight {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.landing-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.landing-section-head__left {
  display: flex;
  align-items: flex-end;
  gap: 0.375rem;
}
.landing-section-head__bars {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  flex-shrink: 0;
}
.landing-section-head__bar {
  width: 4px;
  border-radius: 4px;
}
.landing-section-head__bar--dark {
  background: var(--secondary);
  height: 2rem;
}
.landing-section-head__bar--primary {
  background: var(--primary);
  height: 1.25rem;
}
@media (min-width: 768px) {
  .landing-section-head__bar--dark { height: 3.5rem; }
  .landing-section-head__bar--primary { height: 2.25rem; }
}
.landing-section-head__title {
  font-size: clamp(1.125rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: var(--secondary);
  margin: 0;
  line-height: 1.3;
}
.landing-section-head__subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  margin: 0.5rem 0 0;
  max-width: 32rem;
}
.landing-section-head--compact {
  margin-bottom: 1.25rem;
}

/* ─── Specialty grid ─── */
.specialty-section {
  position: relative;
}
.specialty-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 168, 232, 0.03) 50%, transparent 100%);
  pointer-events: none;
}
.specialty-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
}
.specialty-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  border-radius: var(--landing-radius);
  background: #fff;
  border: 1px solid rgba(0, 168, 232, 0.1);
  box-shadow: var(--landing-shadow);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.3s, border-color 0.3s, background 0.3s;
}
.specialty-card:hover {
  transform: translateX(calc(-6px * var(--flow-sign, 1)));
  border-color: rgba(0, 168, 232, 0.35);
  box-shadow: 0 12px 36px rgba(0, 168, 232, 0.15);
  background: linear-gradient(135deg, var(--primary) 0%, #0090c8 100%);
}
.specialty-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(0, 168, 232, 0.15) 0%, rgba(0, 168, 232, 0.05) 100%);
  border: 2px solid rgba(0, 168, 232, 0.2);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.specialty-card:hover .specialty-card__icon {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
.specialty-card__title {
  flex: 1;
  text-align: start;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.45;
  transition: color 0.3s;
}
.specialty-card:hover .specialty-card__title {
  color: #fff;
}
.specialty-card__arrow {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(0, 168, 232, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.specialty-card:hover .specialty-card__arrow {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateX(calc(-3px * var(--flow-sign, 1)));
}
html[dir="ltr"] {
  --flow-sign: -1;
}
html[dir="rtl"] {
  --flow-sign: 1;
}
html[dir="ltr"] .specialty-card__arrow svg {
  transform: scaleX(-1);
}

/* ─── Featured sections (wrapper only) ─── */
.landing-featured {
  border-radius: var(--landing-radius-lg);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.landing-featured.landing-panel {
  padding-block: 2.5rem;
}
.landing-featured--lawyers {
  background: linear-gradient(165deg, #f0faff 0%, #fff 55%, #f8fdff 100%);
  border: 1px solid rgba(0, 168, 232, 0.12);
  box-shadow: 0 8px 32px rgba(0, 168, 232, 0.06);
}
.landing-featured--migration,
.landing-featured--translation {
  background: transparent;
  border: none;
  box-shadow: none;
}
.landing-featured__bg {
  position: absolute;
  inset: 1rem 1.5rem;
  border-radius: var(--landing-radius-lg);
  pointer-events: none;
  z-index: 0;
}
.landing-featured__bg--migration {
  background: linear-gradient(165deg, #fffaf3 0%, #fff 50%, #fff9f0 100%);
  border: 1px solid rgba(255, 210, 158, 0.35);
  box-shadow: 0 8px 32px rgba(255, 180, 100, 0.08);
}
.landing-featured__bg--translation {
  background: linear-gradient(165deg, #f3fbff 0%, #fff 50%, #eef9ff 100%);
  border: 1px solid rgba(0, 168, 232, 0.14);
  box-shadow: 0 8px 32px rgba(0, 168, 232, 0.07);
}
@media (min-width: 768px) and (max-width: 1299px) {
  .landing-featured--migration.landing-panel,
  .landing-featured--translation.landing-panel {
    width: min(100%, 80rem);
    max-width: 80rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
    box-sizing: border-box;
  }
  .landing-featured__bg {
    inset: 1rem 1.5rem;
  }
}
.landing-featured__earth {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}
.landing-featured__earth--desktop {
  top: -2rem;
  left: -2rem;
  width: 18rem;
  height: 18rem;
  object-fit: contain;
  display: none;
  animation: landingEarthSpin 48s linear infinite;
}
@keyframes landingEarthSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (min-width: 768px) {
  .landing-featured__earth--desktop { display: block; }
}
.landing-featured__earth--mobile {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 8rem;
  opacity: 0.12;
}
@media (min-width: 768px) {
  .landing-featured__earth--mobile { display: none; }
}
.landing-featured__inner {
  position: relative;
  z-index: 1;
}
.landing-featured--translation .landing-section-head > .landing-cta-pill {
  margin-inline-end: 1.25rem;
}
@media (min-width: 768px) {
  .landing-featured--translation .landing-section-head > .landing-cta-pill {
    margin-inline-end: 1.75rem;
  }
}
.landing-cta-pill {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.125rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0, 168, 232, 0.25);
}
.landing-cta-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
  transform: translateX(120%);
  transition: transform 0.55s ease;
}
.landing-cta-pill:hover::after {
  transform: translateX(-120%);
}
.landing-cta-pill:hover {
  background: #0177a5;
  transform: translateY(-1px);
  color: #fff;
}

/* ─── Trust banner ─── */
.landing-trust {
  position: relative;
  margin: 2rem 0;
  padding: 3.5rem 0;
  background: linear-gradient(135deg, #ffd29e 0%, #ffe8c8 40%, #fff5e6 100%);
  overflow: hidden;
}
.landing-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 168, 232, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(0, 23, 31, 0.04) 0%, transparent 40%);
}
.landing-trust__inner {
  max-width: 72rem;
  margin-inline: auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.landing-trust__title {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 800;
  color: var(--secondary);
  margin: 0 0 0.75rem;
  line-height: 1.4;
}
.landing-trust__title em {
  font-style: normal;
  color: var(--primary);
}
.landing-trust__lines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.landing-trust__line {
  height: 3px;
  border-radius: 2px;
}
.landing-trust__line--primary {
  width: 0;
  background: var(--primary);
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.landing-trust__line--dark {
  width: 0;
  background: var(--secondary);
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}
.landing-reveal.is-visible .landing-trust__line--primary {
  width: 5rem;
}
.landing-reveal.is-visible .landing-trust__line--dark {
  width: 8rem;
}
.landing-trust__desc {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.75;
  margin: 0;
  max-width: 28rem;
}
.landing-trust__img {
  width: min(16rem, 42vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0, 23, 31, 0.12));
  animation: landingTrustFloat 5s ease-in-out infinite;
}
@keyframes landingTrustFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── Steps ─── */
.landing-steps-wrap {
  max-width: 80rem;
  margin-inline: auto;
  padding: 3rem 1.5rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .landing-steps-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 1.5rem;
  }
}
.landing-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0 1.5rem;
  min-height: 0;
}
@media (min-width: 768px) {
  .landing-phone-wrap {
    padding: 1rem 0;
    align-self: center;
  }
}
.landing-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  border-radius: var(--landing-radius);
  background: #fff;
  border: 1px solid rgba(0, 168, 232, 0.1);
  box-shadow: var(--landing-shadow);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background 0.3s;
  cursor: default;
  position: relative;
}
.landing-step:hover {
  transform: translateX(calc(-6px * var(--flow-sign, 1)));
  border-color: rgba(0, 168, 232, 0.3);
  box-shadow: 0 12px 36px rgba(0, 168, 232, 0.12);
  background: linear-gradient(135deg, var(--primary) 0%, #0090c8 100%);
}
.landing-step__num {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary);
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}
.landing-step:hover .landing-step__num {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.landing-step__body {
  flex: 1;
  min-width: 0;
}
.landing-step__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--secondary);
  margin: 0;
  transition: color 0.3s;
}
.landing-step:hover .landing-step__title {
  color: #fff;
}
.landing-step__desc {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b7280;
  margin: 0.375rem 0 0;
  line-height: 1.6;
  transition: color 0.3s;
}
.landing-step:hover .landing-step__desc {
  color: rgba(255, 255, 255, 0.9);
}
.landing-steps {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  direction: inherit;
}

/* ─── Unified landing panels ─── */
.landing-panel {
  width: min(100%, 80rem);
  margin-inline: auto;
  padding: 2.5rem 1.5rem;
  box-sizing: border-box;
}
.landing-panel.landing-featured,
.landing-panel.landing-ads,
.landing-panel.landing-shop {
  position: relative;
}

/* ─── Shop block ─── */
.landing-shop {
  position: relative;
  overflow: hidden;
}
.landing-shop__bg {
  position: absolute;
  inset: 1rem 1.5rem;
  border-radius: var(--landing-radius-lg);
  background: linear-gradient(145deg, #ffffff 0%, #f4fbff 42%, #fff8f0 100%);
  border: 1px solid rgba(0, 168, 232, 0.14);
  box-shadow: 0 16px 48px rgba(0, 168, 232, 0.08);
  pointer-events: none;
  animation: landingPanelGlow 9s ease-in-out infinite;
}
@keyframes landingPanelGlow {
  0%, 100% { box-shadow: 0 16px 48px rgba(0, 168, 232, 0.08); }
  50% { box-shadow: 0 20px 56px rgba(0, 168, 232, 0.14); }
}
.landing-shop__bg::before {
  content: "";
  position: absolute;
  top: -3rem;
  right: -2rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 232, 0.12) 0%, transparent 70%);
}
.landing-shop__bg::after {
  content: "فروشگاه";
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 168, 232, 0.06);
  line-height: 1;
}
.landing-shop__inner {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1rem 0.5rem;
}
@media (min-width: 768px) {
  .landing-shop__inner {
    padding: 2rem 1.5rem 0.75rem;
  }
}

/* ─── FAQ ─── */
.landing-faq-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .landing-faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
.landing-faq-item {
  background: #fff;
  border: 1px solid rgba(0, 168, 232, 0.12);
  border-radius: var(--landing-radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--landing-shadow);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.landing-faq-item:has(.faq-answer:not(.hidden)) {
  border-color: rgba(0, 168, 232, 0.35);
  box-shadow: 0 8px 28px rgba(0, 168, 232, 0.1);
}
.landing-faq-item .faq-btn {
  text-align: start;
  color: var(--secondary);
  gap: 0.75rem;
  min-height: 3.25rem;
}
.landing-faq-item .faq-btn span {
  flex: 1;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.landing-faq-item .faq-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(0, 168, 232, 0.08);
  color: var(--primary);
  padding: 0.25rem;
}
.landing-faq-item .faq-answer {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.75;
  padding-top: 0.25rem;
  border-top: 1px dashed rgba(0, 168, 232, 0.15);
  margin-top: 0.75rem;
}

/* ─── Floating scroll-to-top ─── */
.scroll-top-btn {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  width: 3.25rem;
  height: 3.25rem;
  border: none;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, #0177a5 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 168, 232, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.92);
  transition: opacity 0.25s, transform 0.25s, box-shadow 0.25s;
}
.scroll-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.scroll-top-btn:hover {
  box-shadow: 0 18px 42px rgba(0, 168, 232, 0.42);
  transform: translateY(-2px) scale(1.02);
}

/* ─── Card carousel (fixed-width slides) ─── */
.card-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding-inline: 2.75rem;
}
.card-carousel--empty {
  padding-inline: 0;
}
.card-carousel__viewport {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  direction: ltr;
  padding-block: 0.5rem;
  touch-action: pan-y pinch-zoom;
}
.card-carousel__track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  grid-template-columns: unset !important;
  width: max-content;
  max-width: none;
  gap: 1.25rem;
  align-items: stretch;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.card-carousel__track > .v-card,
.card-carousel__track > a.v-card {
  flex: 0 0 var(--carousel-item-width, 260px) !important;
  width: var(--carousel-item-width, 260px) !important;
  min-width: var(--carousel-item-width, 260px) !important;
  max-width: var(--carousel-item-width, 260px) !important;
  margin-inline: 0 !important;
}
.card-carousel__track > .featured-section__empty {
  flex: 1 1 100%;
  width: 100%;
  min-width: 100%;
}
.card-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 168, 232, 0.2);
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 23, 31, 0.1);
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card-carousel__btn:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 168, 232, 0.3);
}
.card-carousel__btn--prev {
  right: 0;
}
.card-carousel__btn--next {
  left: 0;
}
.card-carousel--empty .card-carousel__btn,
.card-carousel--single .card-carousel__btn {
  opacity: 0.35;
  pointer-events: none;
}

/* ─── Testimonials 3D stack ─── */
.landing-testimonials {
  overflow: hidden;
}
.testimonial-stack {
  position: relative;
  max-width: 44rem;
  margin: 0 auto;
  padding: 1rem 2.75rem 2.5rem;
}
.testimonial-stack__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 168, 232, 0.2);
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 23, 31, 0.1);
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.testimonial-stack__btn:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 168, 232, 0.3);
}
.testimonial-stack__btn--prev {
  right: 0;
}
.testimonial-stack__btn--next {
  left: 0;
}
.testimonial-stack__glow {
  position: absolute;
  inset: 10% 5% auto;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 232, 0.16) 0%, transparent 72%);
  pointer-events: none;
}
.testimonial-stack__stage {
  position: relative;
  height: 22rem;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.testimonial-stack__item {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 26rem);
  transform: translateX(-50%) translateZ(-120px) scale(0.82);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.65s ease;
}
.testimonial-stack__item .testimonial-card {
  box-shadow: 0 24px 60px rgba(0, 23, 31, 0.12);
  border: 1px solid rgba(0, 168, 232, 0.14);
  background: linear-gradient(180deg, #fff 0%, #f8fcff 100%);
}
.testimonial-stack__item.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateZ(0) rotateY(0deg) scale(1);
}
.testimonial-stack__item.is-prev {
  opacity: 0.72;
  transform: translateX(calc(-50% + 4.5rem)) translateZ(-70px) rotateY(-14deg) scale(0.9);
}
.testimonial-stack__item.is-next {
  opacity: 0.72;
  transform: translateX(calc(-50% - 4.5rem)) translateZ(-70px) rotateY(14deg) scale(0.9);
}
.testimonial-stack__item.is-far-prev {
  opacity: 0.35;
  transform: translateX(calc(-50% + 7rem)) translateZ(-130px) rotateY(-18deg) scale(0.82);
}
.testimonial-stack__item.is-far-next {
  opacity: 0.35;
  transform: translateX(calc(-50% - 7rem)) translateZ(-130px) rotateY(18deg) scale(0.82);
}
.testimonial-stack__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
}
.testimonial-stack__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: none;
  background: rgba(0, 168, 232, 0.2);
  cursor: pointer;
  transition: transform 0.25s, background 0.25s, width 0.25s;
}
.testimonial-stack__dot.is-active {
  width: 1.35rem;
  border-radius: 999px;
  background: var(--primary);
}

/* ─── Ads section ─── */
.landing-ads {
  position: relative;
  overflow: hidden;
}
.landing-ads__bg {
  position: absolute;
  inset: 1rem 1.5rem;
  border-radius: var(--landing-radius-lg);
  background: linear-gradient(145deg, #fff 0%, #f0faff 45%, #fff8f0 100%);
  border: 1px solid rgba(0, 168, 232, 0.14);
  box-shadow: 0 16px 48px rgba(0, 168, 232, 0.08);
  pointer-events: none;
  animation: landingPanelGlow 9s ease-in-out infinite 1.5s;
}
.landing-ads__bg::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: -2rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 232, 0.12) 0%, transparent 70%);
}
.landing-ads__bg::after {
  content: "آگهی";
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 168, 232, 0.06);
  line-height: 1;
  pointer-events: none;
}
.landing-ads__inner {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1rem 0.5rem;
}
@media (min-width: 768px) {
  .landing-ads__inner {
    padding: 2rem 1.5rem 0.75rem;
  }
}

/* ─── Rich phone mockup ─── */
.phone-mockup.phone-mockup--rich {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 284px;
  height: 575px;
  max-width: 100%;
  background: linear-gradient(160deg, #1a2830 0%, var(--secondary) 40%, #002838 100%);
  border-radius: 2.65rem;
  padding: 9px;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow:
    0 28px 56px rgba(0, 23, 31, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 36px rgba(0, 168, 232, 0.12);
  flex-shrink: 0;
}
.phone-mockup__frame-glow {
  position: absolute;
  inset: -20px;
  border-radius: 3rem;
  background: radial-gradient(ellipse at 50% 30%, rgba(0, 168, 232, 0.2) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
  animation: phoneGlow 4s ease-in-out infinite;
}
@keyframes phoneGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.phone-mockup__side-btn {
  position: absolute;
  background: #0a1f28;
  border-radius: 2px;
}
.phone-mockup__side-btn--vol {
  left: -3px;
  top: 7rem;
  width: 3px;
  height: 2.5rem;
}
.phone-mockup__side-btn--power {
  right: -3px;
  top: 9rem;
  width: 3px;
  height: 3.5rem;
}
.phone-mockup__dynamic-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 27px;
  background: #020b10;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 4px 12px rgba(0, 0, 0, 0.18);
}
.phone-mockup__cam {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #4b7282 0%, #102732 55%, #050a0d 100%);
  box-shadow: 0 0 0 1px #172c35;
}
.phone-mockup__sensor {
  width: 34px;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, #0f2028, #17313b);
}
.phone-mockup--rich .phone-mockup__screen {
  background: linear-gradient(180deg, #f3f6f8 0%, #eef2f5 100%);
  border-radius: 2.25rem;
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  padding: 52px 9px 8px;
  gap: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.phone-ui__body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
}
.phone-ui__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  font-weight: 700;
  color: var(--secondary);
  padding: 0 4px 2px;
  flex-shrink: 0;
}
.phone-ui__status-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}
.phone-ui__signal,
.phone-ui__wifi,
.phone-ui__battery {
  display: block;
  background: var(--secondary);
  border-radius: 1px;
  opacity: 0.7;
}
.phone-ui__signal { width: 12px; height: 8px; }
.phone-ui__wifi { width: 10px; height: 8px; border-radius: 50% 50% 0 0; }
.phone-ui__battery {
  width: 16px;
  height: 8px;
  border-radius: 2px;
  position: relative;
}
.phone-ui__battery::after {
  content: "";
  position: absolute;
  inset: 1px 3px 1px 1px;
  background: #34d399;
  border-radius: 1px;
  animation: batteryPulse 3s ease-in-out infinite;
}
@keyframes batteryPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}
.phone-ui__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  border: 1px solid rgba(0, 168, 232, 0.12);
  backdrop-filter: blur(6px);
}
.phone-ui__logo {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), #38bdf8);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-ui__brand {
  flex: 1;
  font-size: 10px;
  font-weight: 800;
  color: var(--secondary);
}
.phone-ui__brand span { color: var(--primary); }
.phone-ui__menu {
  width: 14px;
  height: 10px;
  background: linear-gradient(var(--secondary) 0 0) center/100% 2px no-repeat,
    linear-gradient(var(--secondary) 0 0) center 4px/100% 2px no-repeat,
    linear-gradient(var(--secondary) 0 0) center 8px/100% 2px no-repeat;
  opacity: 0.6;
}
.phone-ui__hero {
  padding: 6px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0, 168, 232, 0.12) 0%, #fff 60%);
  border: 1px solid rgba(0, 168, 232, 0.15);
  position: relative;
  overflow: hidden;
}
.phone-ui__hero::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 168, 232, 0.1);
  animation: phoneFloat 5s ease-in-out infinite;
}
.phone-ui__hero-badge {
  display: inline-flex;
  width: auto;
  max-width: 85%;
  height: auto;
  min-height: 12px;
  padding: 2px 6px;
  border-radius: 99px;
  background: rgba(0, 168, 232, 0.25);
  color: #0177a5;
  font-size: 7px;
  font-weight: 800;
  margin-bottom: 6px;
}
.phone-ui__hero-line {
  height: 5px;
  border-radius: 4px;
  background: var(--secondary);
  margin-bottom: 4px;
  opacity: 0.85;
}
.phone-ui__hero-line--lg { width: 85%; }
.phone-ui__hero-line--md { width: 55%; background: var(--primary); opacity: 0.7; }
.phone-ui__hero-line--sm { width: 70%; opacity: 0.35; height: 4px; }
.phone-ui__hero-cta {
  width: 55%;
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--primary), #38bdf8);
  margin: 6px 0;
  animation: ctaShimmer 2.5s ease-in-out infinite;
}
@keyframes ctaShimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
}
.phone-ui__stats {
  display: flex;
  gap: 4px;
  margin-top: 4px;
  flex-shrink: 0;
}
.phone-ui__stats span {
  flex: 1;
  min-height: 22px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 168, 232, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}
.phone-ui__stats b {
  color: var(--secondary);
  font-size: 9px;
}
.phone-ui__stats small {
  color: #6b7280;
  font-size: 6px;
  font-weight: 700;
}
.phone-ui__section-title {
  height: 5px;
  width: 42%;
  border-radius: 4px;
  background: var(--secondary);
  opacity: 0.5;
  flex-shrink: 0;
}
.phone-ui__chips {
  display: flex;
  gap: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.phone-ui__chips span {
  flex: 0 0 auto;
  min-width: 40px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #fff;
  border: 1px solid rgba(0, 168, 232, 0.15);
  color: #4b5563;
  font-size: 7px;
  font-weight: 800;
}
.phone-ui__cards {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
  overflow: hidden;
  max-width: 100%;
}
.phone-ui__cards-inner {
  display: flex;
  gap: 5px;
  animation: phoneCardsScroll 8s ease-in-out infinite alternate;
}
@keyframes phoneCardsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(6px); }
}
.phone-ui__lawyer-card {
  flex: 0 0 68px;
  padding: 5px 4px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0, 168, 232, 0.12);
  box-shadow: 0 4px 12px rgba(0, 23, 31, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.phone-ui__lawyer-card--alt {
  opacity: 0.85;
  transform: scale(0.96);
}
.phone-ui__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e0f4ff, #fff);
  border: 2px solid rgba(0, 168, 232, 0.25);
  animation: avatarBob 3s ease-in-out infinite;
}
@keyframes avatarBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
.phone-ui__card-lines span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: #e5e7eb;
  margin-bottom: 2px;
}
.phone-ui__card-lines span:first-child { width: 36px; }
.phone-ui__card-lines span:last-child { width: 24px; background: rgba(0, 168, 232, 0.2); }
.phone-ui__card-btn {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--primary);
  opacity: 0.85;
}
.phone-ui__trust {
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(90deg, #ffd29e, #ffe8c8);
  opacity: 0.9;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 6px;
}
.phone-ui__trust span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(0, 168, 232, 0.18);
}
.phone-ui__trust b {
  display: block;
  flex: 1;
  height: 5px;
  border-radius: 99px;
  background: rgba(0, 23, 31, 0.18);
}
.phone-ui__mini-shop {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.phone-ui__mini-shop span {
  flex: 1;
  height: 30px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 35%, rgba(0, 168, 232, 0.2) 0%, transparent 28%),
    #fff;
  border: 1px solid rgba(0, 168, 232, 0.12);
  box-shadow: 0 4px 10px rgba(0, 23, 31, 0.04);
}
.phone-ui__tabbar {
  display: flex;
  justify-content: space-around;
  padding: 3px 2px 0;
  flex-shrink: 0;
  margin-top: auto;
}
.phone-ui__tab {
  width: 28px;
  height: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-ui__tab--active {
  background: rgba(0, 168, 232, 0.16);
  animation: tabPulse 2s ease-in-out infinite;
}
.phone-ui__tab i {
  width: 10px;
  height: 4px;
  border-radius: 99px;
  background: #cbd5e1;
}
.phone-ui__tab--active i {
  background: var(--primary);
}
@keyframes tabPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
}
.phone-ui__home-indicator {
  width: 32%;
  height: 3px;
  border-radius: 99px;
  background: var(--secondary);
  opacity: 0.25;
  margin: 3px auto 0;
  flex-shrink: 0;
}
.phone-ui__anim-fade {
  animation: phoneUiFade 0.8s ease-out both;
}
.phone-ui__anim-slide {
  animation: phoneUiSlide 0.7s ease-out both;
}
.phone-ui__anim-delay-1 { animation-delay: 0.15s; }
.phone-ui__anim-delay-2 { animation-delay: 0.3s; }
.phone-ui__anim-pulse {
  animation: phoneUiFade 0.7s ease-out 0.45s both, trustMiniPulse 3s ease-in-out 1s infinite;
}
@keyframes phoneUiFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes phoneUiSlide {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes trustMiniPulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}
@keyframes phoneFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-4px, 4px); }
}
.illus.illus-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
}

@media (max-width: 767px) {
  .landing-panel,
  .landing-shop,
  .landing-ads,
  .landing-featured {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: 0;
    padding-block: 2rem;
  }
  .landing-shop__bg,
  .landing-ads__bg,
  .landing-featured__bg {
    inset: 0;
    border-radius: 0;
  }
  .landing-shop__inner,
  .landing-ads__inner,
  .landing-featured__inner {
    padding-inline: 1rem;
  }
  .landing-featured {
    border-radius: 0;
    margin-bottom: 0;
  }
  .testimonial-stack {
    padding-inline: 2rem;
  }
  .testimonial-stack__btn {
    width: 2.25rem;
    height: 2.25rem;
  }
  .testimonial-stack__stage {
    height: 24rem;
  }
  .testimonial-stack__item.is-prev {
    transform: translateX(calc(-50% + 2.5rem)) translateZ(-70px) rotateY(-10deg) scale(0.9);
  }
  .testimonial-stack__item.is-next {
    transform: translateX(calc(-50% - 2.5rem)) translateZ(-70px) rotateY(10deg) scale(0.9);
  }
  .phone-mockup.phone-mockup--rich {
    width: 256px;
    height: 520px;
  }
  .card-carousel {
    padding-inline: 2rem;
  }
  .card-carousel[data-carousel-type="ad"] {
    --carousel-item-width: min(320px, calc(100vw - 6rem));
  }
  .card-carousel[data-carousel-type="institute"] {
    --carousel-item-width: min(300px, calc(100vw - 6rem));
  }
  .card-carousel[data-carousel-type="lawyer"],
  .card-carousel[data-carousel-type="product"] {
    --carousel-item-width: min(260px, calc(100vw - 6rem));
  }
  .card-carousel__btn {
    width: 2.25rem;
    height: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-stack__item {
    transition: none !important;
  }
  .landing-reveal,
  .landing-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .landing-hero__content > *,
  .landing-hero__visual {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .landing-trust__line--primary { width: 5rem; }
  .landing-trust__line--dark { width: 8rem; }
  .landing-reveal .landing-section-head__bar {
    transform: scaleY(1) !important;
  }
  .landing-hero__ring,
  .landing-justice-scale,
  .landing-hero__badge-dot,
  .landing-hero__blob,
  .landing-particle,
  .landing-hero__parallax-layer,
  .landing-hero__title em,
  .landing-trust__img,
  .landing-featured__earth--desktop,
  .landing-shop__bg,
  .landing-ads__bg,
  .phone-mockup__frame-glow,
  .phone-ui__hero-cta,
  .phone-ui__battery::after,
  .phone-ui__cards,
  .phone-ui__avatar,
  .phone-ui__tab--active,
  .phone-ui__anim-fade,
  .phone-ui__anim-slide,
  .phone-ui__anim-pulse {
    animation: none !important;
  }
  .landing-cta-pill::after {
    display: none;
  }
  .specialty-card:hover,
  .landing-step:hover,
  .landing-stat:hover,
  .landing-purpose__card:hover .landing-purpose__icon {
    transform: none;
  }
}
