/* =============================================================================
   MASH.LojisTech — public landing page styles.
   Independent from lojistech.css so the marketing surface doesn't pick up admin
   chrome or inherit unintentional overrides. Tailored for a premium, modern
   SaaS feel: soft gradients, floating orbs, animated reveals, RTL-aware layout.
   ============================================================================= */

:root {
    --lp-ink:         #0F172A;
    --lp-ink-soft:    #1E293B;
    --lp-muted:       #64748B;
    --lp-line:        #E2E8F0;
    --lp-surface:     #FFFFFF;
    --lp-surface-2:   #F8FAFC;
    --lp-primary:     #6366F1;
    --lp-primary-dk:  #4338CA;
    --lp-accent:      #14B8A6;
    --lp-accent-dk:   #0F766E;
    --lp-gold:        #F59E0B;
    --lp-shadow-md:   0 10px 30px -12px rgba(15, 23, 42, 0.18);
    --lp-shadow-lg:   0 24px 60px -20px rgba(15, 23, 42, 0.28);
    --lp-radius-sm:   8px;
    --lp-radius:      14px;
    --lp-radius-lg:   22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

.ljx-landing-body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--lp-ink);
    background: var(--lp-surface);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
/* Arabic: IBM Plex Sans Arabic takes priority for Arabic glyphs, Inter keeps Latin
   fallbacks (brand name, numbers, inline Latin terms) in the same visual family.
   Slightly relaxed letter-spacing + a line-height bump compensate for Arabic's
   taller baseline so paragraphs read at the same density as the English version. */
html[dir="rtl"] .ljx-landing-body {
    font-family: 'IBM Plex Sans Arabic', 'Inter', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.7;
    letter-spacing: 0;
}
html[dir="rtl"] .ljx-landing-body h1,
html[dir="rtl"] .ljx-landing-body h2,
html[dir="rtl"] .ljx-landing-body h3,
html[dir="rtl"] .ljx-landing-body h4,
html[dir="rtl"] .ljx-landing-body h5,
html[dir="rtl"] .ljx-landing-body h6 {
    letter-spacing: 0;         /* Latin-style negative tracking reads wrong in Arabic */
    line-height: 1.35;
    font-weight: 700;
}
html[dir="rtl"] .ljx-lp-eyebrow { letter-spacing: 0.04em; }  /* tighter tracking for Arabic caps */
html[dir="rtl"] .ljx-lp-hero-copy h1 { font-size: clamp(34px, 4.6vw, 52px); }
/* Tabular numerals on the trust stats + KPI tiles so Arabic-Indic vs Western digits stay aligned */
html[dir="rtl"] .ljx-lp-hero-trust b,
html[dir="rtl"] .dev-kpi .value { font-feature-settings: "tnum"; }

.ljx-lp-container {
    max-width: 1180px; margin: 0 auto; padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--lp-primary); }

/* Scroll reveal — elements fade + rise when IntersectionObserver marks them visible. */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================================================
   NAVBAR
   ============================================================================= */
.ljx-lp-nav {
    position: fixed; inset-block-start: 0; inset-inline-start: 0; inset-inline-end: 0;
    z-index: 100;
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.62));
    border-bottom: 1px solid transparent;
    transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
/* Subtle gradient hairline at the bottom — always present, brightens on scroll. */
.ljx-lp-nav::after {
    content: "";
    position: absolute; inset-inline: 0; inset-block-end: 0; height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(99, 102, 241, 0.18) 20%,
        rgba(20, 184, 166, 0.22) 50%,
        rgba(245, 158, 11, 0.18) 80%,
        transparent 100%);
    opacity: 0.35; pointer-events: none;
    transition: opacity 240ms ease;
}
.ljx-lp-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 32px -22px rgba(15, 23, 42, 0.32);
}
.ljx-lp-nav.is-scrolled::after { opacity: 1; }

/* Widened container so Turkish labels (Daha fazla bilgi, Demo talep et…) don't squash
   against the brand or collapse to mobile too early. */
.ljx-lp-nav-inner {
    max-width: 1320px; margin: 0 auto;
    padding: 16px 28px;
    display: flex; align-items: center; gap: 20px;
}

.ljx-lp-brand {
    display: inline-flex; align-items: center; gap: 12px;
    font-weight: 800; letter-spacing: -0.01em; color: var(--lp-ink);
    flex-shrink: 0;
}
.ljx-lp-brand:hover { color: var(--lp-ink); }
.ljx-lp-brand:hover .ljx-lp-brand-mark { transform: rotate(-4deg) scale(1.04); }
/* Refined brand tile: soft ring, gradient base, inset highlight, drop-shadow — reads "crafted". */
.ljx-lp-brand-mark {
    width: 40px; height: 40px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background:
        linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-accent) 100%);
    color: #FFF; font-size: 19px;
    box-shadow:
        0 12px 28px -10px rgba(99, 102, 241, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -8px 14px -6px rgba(15, 23, 42, 0.12);
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}
.ljx-lp-brand-mark::before {
    content: ""; position: absolute; inset: -3px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(20,184,166,0.2));
    z-index: -1; opacity: 0; transition: opacity 240ms ease;
}
.ljx-lp-brand:hover .ljx-lp-brand-mark::before { opacity: 1; }
.ljx-lp-brand-text { font-size: 17.5px; letter-spacing: -0.02em; }
.ljx-lp-brand-text span {
    background: linear-gradient(120deg, var(--lp-primary), var(--lp-accent));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

.ljx-lp-links {
    list-style: none; display: flex; align-items: center; gap: 2px;
    margin: 0 auto; padding: 0;
    flex-shrink: 0;
}
.ljx-lp-links li a {
    display: inline-block; padding: 9px 14px;
    color: var(--lp-ink-soft); font-weight: 500; font-size: 14.5px;
    border-radius: 10px;
    position: relative;
    transition: color 160ms ease, background 160ms ease;
    white-space: nowrap;
}
.ljx-lp-links li a::after {
    content: ""; position: absolute;
    inset-inline-start: 14px; inset-inline-end: 14px; inset-block-end: 6px;
    height: 2px; border-radius: 2px;
    background: linear-gradient(90deg, var(--lp-primary), var(--lp-accent));
    transform: scaleX(0); transform-origin: center;
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.ljx-lp-links li a:hover {
    color: var(--lp-ink);
    background: rgba(99, 102, 241, 0.06);
}
.ljx-lp-links li a:hover::after { transform: scaleX(1); }

/* Thin visual separator between nav links and action cluster. */
.ljx-lp-nav-actions {
    display: flex; align-items: center; gap: 10px;
    flex-shrink: 0;
    padding-inline-start: 18px;
    position: relative;
}
.ljx-lp-nav-actions::before {
    content: ""; position: absolute;
    inset-inline-start: 0; inset-block-start: 20%; inset-block-end: 20%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--lp-line), transparent);
}

.ljx-lp-btn-primary, .ljx-lp-btn-ghost, .ljx-lp-btn-outline {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 16px; border-radius: 10px; font-weight: 600; font-size: 14px;
    border: 0; cursor: pointer; text-decoration: none; font-family: inherit;
    white-space: nowrap;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.ljx-lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dk) 100%);
    color: #FFF;
    box-shadow: 0 10px 28px -10px rgba(99, 102, 241, 0.55);
}
.ljx-lp-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 36px -12px rgba(99, 102, 241, 0.7); }
.ljx-lp-btn-ghost {
    background: transparent; color: var(--lp-ink-soft);
}
.ljx-lp-btn-ghost:hover { background: var(--lp-surface-2); color: var(--lp-primary); }
.ljx-lp-btn-ghost.light { color: #FFF; background: rgba(255,255,255,0.08); }
.ljx-lp-btn-ghost.light:hover { background: rgba(255,255,255,0.18); color: #FFF; }
.ljx-lp-btn-outline {
    background: #FFF; color: var(--lp-ink-soft); border: 1px solid var(--lp-line);
}
.ljx-lp-btn-outline:hover { border-color: var(--lp-primary); color: var(--lp-primary); }
.ljx-lp-btn-lg { padding: 14px 22px; font-size: 15.5px; border-radius: 12px; }

.ljx-lp-nav-toggle {
    display: none; background: transparent; border: 1px solid var(--lp-line);
    padding: 8px 10px; border-radius: 10px; font-size: 18px; cursor: pointer;
    color: var(--lp-ink-soft);
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}
.ljx-lp-nav-toggle:hover { border-color: var(--lp-primary); color: var(--lp-primary); background: rgba(99,102,241,0.06); }

/* Medium breakpoint: Turkish labels start crowding below ~1180px, so we trim nav link
   padding before switching to mobile burger at 1080px. This keeps every label visible
   and readable across EN / AR / TR without premature collapse. */
@media (max-width: 1180px) {
    .ljx-lp-links li a { padding: 9px 10px; font-size: 14px; }
    .ljx-lp-nav-actions { gap: 8px; padding-inline-start: 12px; }
    .ljx-lp-nav-inner { gap: 14px; }
}

@media (max-width: 1080px) {
    .ljx-lp-links {
        position: absolute;
        /* Anchor the menu to the bottom of the nav rather than a hard-coded pixel value so
           it stays flush regardless of nav height (which varies with the phone breakpoints). */
        inset-block-start: 100%; inset-inline-start: 0; inset-inline-end: 0;
        flex-direction: column; align-items: stretch;
        background: #FFFFFF; border-top: 1px solid var(--lp-line);
        padding: 10px 12px; gap: 2px;
        box-shadow: 0 20px 40px -24px rgba(15, 23, 42, 0.25);
        transform: translateY(-10px); opacity: 0; pointer-events: none;
        transition: transform 200ms ease, opacity 200ms ease;
    }
    .ljx-lp-links.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .ljx-lp-links li a { padding: 12px 14px; font-size: 15px; }
    .ljx-lp-nav-actions::before { display: none; }
    .ljx-lp-nav-actions { padding-inline-start: 0; }
    .ljx-lp-nav-toggle { display: inline-flex; }
    .ljx-lp-btn-outline, .ljx-lp-btn-primary span { display: none; }
}

/* =============================================================================
   HERO
   ============================================================================= */
.ljx-lp-hero {
    position: relative; isolation: isolate;
    padding: 140px 0 90px;
    background: linear-gradient(180deg, #F8F6FF 0%, #FFFFFF 70%);
    overflow: hidden;
}
.ljx-lp-hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.ljx-lp-hero-bg .orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.45;
    animation: lpFloat 12s ease-in-out infinite;
}
.ljx-lp-hero-bg .orb-1 { width: 420px; height: 420px; top: -80px; inset-inline-start: -80px; background: radial-gradient(circle, #6366F1 0%, transparent 70%); }
.ljx-lp-hero-bg .orb-2 { width: 360px; height: 360px; top: 120px; inset-inline-end: -40px; background: radial-gradient(circle, #14B8A6 0%, transparent 70%); animation-delay: -4s; }
.ljx-lp-hero-bg .orb-3 { width: 300px; height: 300px; bottom: -80px; inset-inline-start: 40%; background: radial-gradient(circle, #F59E0B 0%, transparent 70%); opacity: 0.35; animation-delay: -8s; }
.ljx-lp-hero-bg .grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
}
@keyframes lpFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(20px, -30px) scale(1.05); }
}

.ljx-lp-hero-grid {
    display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 960px) { .ljx-lp-hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.ljx-lp-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(99, 102, 241, 0.10);
    color: var(--lp-primary-dk);
    font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
}
.ljx-lp-eyebrow.light { background: rgba(255, 255, 255, 0.16); color: #FFFFFF; }

.ljx-lp-hero-copy h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800; line-height: 1.08;
    letter-spacing: -0.025em;
    margin: 20px 0 18px;
    color: var(--lp-ink);
}
.ljx-lp-gradient-text {
    background: linear-gradient(120deg, var(--lp-primary) 0%, var(--lp-accent) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    display: inline-block;
}
.ljx-lp-lead { font-size: 17px; color: var(--lp-muted); max-width: 560px; margin-bottom: 26px; }
.ljx-lp-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.ljx-lp-hero-trust {
    display: flex; gap: 32px; flex-wrap: wrap;
    padding-top: 24px; border-top: 1px dashed var(--lp-line);
}
.ljx-lp-hero-trust > div { display: flex; flex-direction: column; }
.ljx-lp-hero-trust b { font-size: 22px; font-weight: 800; color: var(--lp-ink); }
.ljx-lp-hero-trust span { font-size: 12px; color: var(--lp-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Hero device mockup */
.ljx-lp-hero-art { position: relative; }
.ljx-lp-device {
    background: #FFF; border-radius: 18px;
    border: 1px solid var(--lp-line);
    box-shadow: var(--lp-shadow-lg);
    overflow: hidden;
    transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
    transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.ljx-lp-hero-art:hover .ljx-lp-device { transform: perspective(1400px) rotateY(0) rotateX(0); }
html[dir="rtl"] .ljx-lp-device { transform: perspective(1400px) rotateY(4deg) rotateX(2deg); }
.ljx-lp-device-bar { display: flex; gap: 6px; padding: 10px 14px; background: #F1F5F9; border-bottom: 1px solid var(--lp-line); }
.ljx-lp-device-bar span { width: 10px; height: 10px; border-radius: 50%; background: #CBD5E1; }
.ljx-lp-device-bar span:nth-child(1) { background: #F87171; }
.ljx-lp-device-bar span:nth-child(2) { background: #FBBF24; }
.ljx-lp-device-bar span:nth-child(3) { background: #34D399; }
.ljx-lp-device-body { padding: 20px; }
.dev-kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.dev-kpi { padding: 12px; border: 1px solid var(--lp-line); border-radius: 10px; background: var(--lp-surface-2); }
.dev-kpi .label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--lp-muted); }
.dev-kpi .value { font-size: 18px; font-weight: 800; color: var(--lp-ink); margin-top: 2px; }
.dev-kpi .value.up { color: var(--lp-accent-dk); }

.dev-stepper {
    display: flex; justify-content: space-between; align-items: center;
    position: relative; margin-bottom: 16px; padding: 4px 2px;
}
.dev-stepper::before {
    content: ""; position: absolute; inset-inline-start: 8%; inset-inline-end: 8%; top: 12px; height: 2px;
    background: var(--lp-line); z-index: 0;
}
.dev-stepper .step {
    position: relative; z-index: 1;
    padding: 4px 10px; border-radius: 999px; font-size: 10px; font-weight: 700;
    background: #FFF; border: 1px solid var(--lp-line); color: var(--lp-muted);
    text-transform: uppercase; letter-spacing: 0.04em;
}
.dev-stepper .step.done   { background: #ECFDF5; border-color: #A7F3D0; color: #065F46; }
.dev-stepper .step.active { background: var(--lp-primary); border-color: var(--lp-primary); color: #FFF; }
.dev-stepper .step.pulse::after {
    content: ""; position: absolute; inset: 0; border-radius: 999px;
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.6);
    animation: lpPulse 1.8s infinite;
}
@keyframes lpPulse {
    0%   { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.6); }
    70%  { box-shadow: 0 0 0 12px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

.dev-chart { height: 80px; border-top: 1px solid var(--lp-line); padding-top: 8px; }
.dev-chart svg { width: 100%; height: 100%; display: block; }

.ljx-lp-float-chip {
    position: absolute; padding: 10px 14px; border-radius: 999px;
    background: #FFF; border: 1px solid var(--lp-line); box-shadow: var(--lp-shadow-md);
    font-size: 13px; font-weight: 600; color: var(--lp-ink-soft);
    display: inline-flex; align-items: center; gap: 8px;
    animation: lpFloatBob 4s ease-in-out infinite;
}
.ljx-lp-float-chip i { color: var(--lp-primary); font-size: 16px; }
.ljx-lp-float-chip.chip-a { inset-block-start: -14px; inset-inline-start: -18px; animation-delay: 0s; }
.ljx-lp-float-chip.chip-b { inset-block-end: 40px; inset-inline-end: -24px; animation-delay: -2s; }
.ljx-lp-float-chip.chip-b i { color: var(--lp-accent-dk); }
.ljx-lp-float-chip.chip-c { inset-block-end: -12px; inset-inline-start: 10%; animation-delay: -3s; }
.ljx-lp-float-chip.chip-c i { color: var(--lp-gold); }
@keyframes lpFloatBob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* =============================================================================
   SECTIONS
   ============================================================================= */
.ljx-lp-section { padding: 96px 0; }
.ljx-lp-section-alt { background: var(--lp-surface-2); }

.ljx-lp-section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.ljx-lp-section-head h2 {
    font-size: clamp(28px, 3.8vw, 40px); font-weight: 800;
    letter-spacing: -0.02em; line-height: 1.15; color: var(--lp-ink);
    margin: 18px 0 14px;
}
.ljx-lp-section-head p { color: var(--lp-muted); font-size: 17px; margin: 0; }

/* About grid */
.ljx-lp-about-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .ljx-lp-about-grid { grid-template-columns: 1fr; } }
.ljx-lp-about-card {
    padding: 26px;
    background: #FFF; border: 1px solid var(--lp-line); border-radius: var(--lp-radius);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.ljx-lp-about-card:hover {
    transform: translateY(-4px); box-shadow: var(--lp-shadow-md);
    border-color: rgba(99, 102, 241, 0.35);
}
.ljx-lp-about-card i {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 11px;
    font-size: 22px; color: var(--lp-primary-dk);
    background: rgba(99, 102, 241, 0.12);
    margin-bottom: 16px;
}
.ljx-lp-about-card h4 { font-size: 18px; font-weight: 700; margin: 0 0 6px; color: var(--lp-ink); }
.ljx-lp-about-card p  { font-size: 14.5px; color: var(--lp-muted); margin: 0; }

/* Feature grid */
.ljx-lp-features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 960px) { .ljx-lp-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .ljx-lp-features-grid { grid-template-columns: 1fr; } }
.ljx-lp-feature {
    padding: 28px;
    background: #FFF; border: 1px solid var(--lp-line); border-radius: var(--lp-radius);
    position: relative; overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease;
}
.ljx-lp-feature::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(99, 102, 241, 0.06) 100%);
    opacity: 0; transition: opacity 220ms ease;
}
.ljx-lp-feature:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-md); }
.ljx-lp-feature:hover::before { opacity: 1; }
.ljx-lp-feature .ic {
    width: 52px; height: 52px; border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 24px; color: #FFF;
    margin-bottom: 16px;
}
.ljx-lp-feature .ic.tone-a { background: linear-gradient(135deg, #6366F1, #4338CA); }
.ljx-lp-feature .ic.tone-b { background: linear-gradient(135deg, #14B8A6, #0F766E); }
.ljx-lp-feature .ic.tone-c { background: linear-gradient(135deg, #0EA5E9, #0369A1); }
.ljx-lp-feature .ic.tone-d { background: linear-gradient(135deg, #F59E0B, #B45309); }
.ljx-lp-feature .ic.tone-e { background: linear-gradient(135deg, #EC4899, #9D174D); }
.ljx-lp-feature .ic.tone-f { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.ljx-lp-feature h5 { font-size: 17px; font-weight: 700; margin: 0 0 6px; color: var(--lp-ink); }
.ljx-lp-feature p  { font-size: 14px; color: var(--lp-muted); margin: 0; }

/* Testimonials */
.ljx-lp-testimonials {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 960px) { .ljx-lp-testimonials { grid-template-columns: 1fr; } }
.ljx-lp-testimonial {
    padding: 26px;
    background: #FFF; border: 1px solid var(--lp-line); border-radius: var(--lp-radius);
    position: relative;
    transition: transform 220ms ease, box-shadow 220ms ease;
}
.ljx-lp-testimonial:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-md); }
.ljx-lp-testimonial .stars { color: var(--lp-gold); margin-bottom: 10px; font-size: 14px; }
.ljx-lp-testimonial blockquote {
    margin: 0 0 18px; font-size: 15.5px; color: var(--lp-ink-soft); line-height: 1.6;
}
.ljx-lp-testimonial blockquote::before { content: "\201C"; color: var(--lp-primary); font-size: 36px; line-height: 0.2; margin-inline-end: 4px; }
.ljx-lp-testimonial footer {
    display: flex; align-items: center; gap: 12px;
    padding-top: 14px; border-top: 1px solid var(--lp-line);
}
.ljx-lp-testimonial .avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
    color: #FFF; font-weight: 800; font-size: 15px;
    display: flex; align-items: center; justify-content: center;
}
.ljx-lp-testimonial footer strong { display: block; font-size: 14px; color: var(--lp-ink); }
.ljx-lp-testimonial footer span { display: block; font-size: 12.5px; color: var(--lp-muted); }

/* CTA section */
.ljx-lp-cta-section { padding-block-end: 120px; }
.ljx-lp-cta-card {
    background:
        radial-gradient(1000px 400px at 0% 0%, rgba(20, 184, 166, 0.35) 0%, transparent 60%),
        radial-gradient(800px 400px at 100% 100%, rgba(245, 158, 11, 0.25) 0%, transparent 60%),
        linear-gradient(135deg, #1E1B4B 0%, #4338CA 100%);
    color: #FFF;
    padding: 56px 48px; border-radius: var(--lp-radius-lg);
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
    box-shadow: var(--lp-shadow-lg);
    position: relative; overflow: hidden;
}
@media (max-width: 860px) { .ljx-lp-cta-card { grid-template-columns: 1fr; text-align: center; padding: 40px 24px; } }
.ljx-lp-cta-card::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.3), transparent);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
}
.ljx-lp-cta-copy h2 {
    font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -0.02em;
    line-height: 1.2; margin: 18px 0 10px;
}
.ljx-lp-cta-copy p { color: rgba(255, 255, 255, 0.82); margin: 0; font-size: 15.5px; }
.ljx-lp-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; position: relative; }
@media (max-width: 860px) { .ljx-lp-cta-actions { justify-content: center; } }

/* =============================================================================
   MODAL
   ============================================================================= */
.ljx-lp-modal { border: 0; border-radius: var(--lp-radius); box-shadow: var(--lp-shadow-lg); position: relative; }
/* Contain the success-state swap visually — clip is scoped to modal-body so the country-code
   dropdown (which anchors inside the body) can still extend past the body if needed without
   the Bootstrap modal-content fighting us. */
.ljx-lp-modal .modal-body { position: relative; }
.ljx-lp-modal .modal-header { border-bottom: 1px solid var(--lp-line); padding: 18px 22px; }
.ljx-lp-modal .modal-title { font-weight: 700; font-size: 18px; color: var(--lp-ink); display: flex; align-items: center; gap: 8px; }
.ljx-lp-modal .modal-title i { color: var(--lp-primary); }
.ljx-lp-modal .modal-body { padding: 22px; }
.ljx-lp-modal .modal-footer { border-top: 1px solid var(--lp-line); padding: 14px 22px; }

/* Two-state modal: form ↔ success. We swap via data-state on the content element so the
   transition is smooth (no Bootstrap re-mount, no flash of empty content). */
.ljx-lp-modal .modal-header,
.ljx-lp-modal .modal-body,
.ljx-lp-modal .modal-footer {
    transition: opacity 220ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
.ljx-lp-modal .ljx-lp-success-state {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 32px 28px; text-align: center;
    background: #FFFFFF;
    opacity: 0; pointer-events: none;
    transform: scale(0.96);
    transition: opacity 280ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.ljx-lp-modal[data-state="success"] .modal-header,
.ljx-lp-modal[data-state="success"] .modal-body,
.ljx-lp-modal[data-state="success"] .modal-footer {
    opacity: 0; transform: translateY(-6px); pointer-events: none;
}
.ljx-lp-modal[data-state="success"] .ljx-lp-success-state {
    opacity: 1; transform: scale(1); pointer-events: auto;
}

/* Animated checkmark: SVG circle + tick draw in with stroke-dashoffset. */
.ljx-lp-success-check {
    width: 96px; height: 96px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    position: relative; z-index: 1;
}
.ljx-lp-success-check svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ljx-lp-success-check .ljx-lp-success-circle {
    fill: none;
    stroke: url(#lpSuccessGrad, var(--lp-accent));
    stroke: var(--lp-accent);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 176;
    stroke-dashoffset: 176;
}
.ljx-lp-success-check .ljx-lp-success-tick {
    stroke: var(--lp-accent-dk);
    stroke-width: 4.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    transform: rotate(90deg);
    transform-origin: 32px 32px;
}
.ljx-lp-modal[data-state="success"] .ljx-lp-success-circle {
    animation: lpSuccessCircle 640ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.ljx-lp-modal[data-state="success"] .ljx-lp-success-tick {
    animation: lpSuccessTick 420ms cubic-bezier(0.22, 1, 0.36, 1) 420ms forwards;
}
@keyframes lpSuccessCircle { to { stroke-dashoffset: 0; } }
@keyframes lpSuccessTick   { to { stroke-dashoffset: 0; } }

/* Soft tinted halo behind the check so it reads against white. */
.ljx-lp-success-check::before {
    content: ""; position: absolute; inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.18) 0%, transparent 70%);
    z-index: -1;
}

/* Six confetti dots radiating outward — tiny, tasteful, one-shot. */
.ljx-lp-success-burst {
    position: absolute; inset: 0;
    pointer-events: none; overflow: hidden;
}
.ljx-lp-success-burst::before,
.ljx-lp-success-burst::after {
    content: ""; position: absolute;
    top: 50%; left: 50%;
    width: 6px; height: 6px; border-radius: 50%;
    box-shadow:
        0   -60px 0 var(--lp-primary),
        52px -30px 0 var(--lp-accent),
        52px  30px 0 var(--lp-gold),
        0    60px 0 var(--lp-accent),
        -52px 30px 0 var(--lp-primary),
        -52px -30px 0 var(--lp-gold);
    opacity: 0; transform: translate(-50%, -50%) scale(0.2);
}
.ljx-lp-modal[data-state="success"] .ljx-lp-success-burst::before {
    animation: lpBurstOut 900ms cubic-bezier(0.22, 1, 0.36, 1) 480ms forwards;
}
@keyframes lpBurstOut {
    0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.2); }
    40%  { opacity: 1; transform: translate(-50%, -50%) scale(1.4); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(2.2); }
}

.ljx-lp-success-title {
    font-size: 24px; font-weight: 800; letter-spacing: -0.01em;
    margin: 0 0 8px; color: var(--lp-ink);
    opacity: 0; transform: translateY(6px);
    animation: lpFadeUp 420ms ease 660ms forwards;
}
.ljx-lp-success-body {
    max-width: 380px; margin: 0 0 24px; font-size: 15px; color: var(--lp-muted); line-height: 1.6;
    opacity: 0; transform: translateY(6px);
    animation: lpFadeUp 420ms ease 760ms forwards;
}
.ljx-lp-success-done {
    opacity: 0; transform: translateY(6px);
    animation: lpFadeUp 420ms ease 860ms forwards;
}
@keyframes lpFadeUp { to { opacity: 1; transform: translateY(0); } }

/* =============================================================================
   PHONE INPUT WITH COUNTRY-CODE PICKER
   =============================================================================
   Two-part phone control: a country-code trigger button (flag + dial) glued to
   a tel input on the right. A custom searchable dropdown anchors below.
   Emoji flags mean zero image/sprite dependencies — renders clean on every
   modern OS, and the dial code stays visible as a graphical fallback.
   ============================================================================= */
.ljx-lp-phone-group {
    display: flex; align-items: stretch;
    border: 1px solid var(--lp-line);
    border-radius: 10px;
    background: #FFFFFF;
    transition: border-color 160ms ease, box-shadow 160ms ease;
    overflow: hidden;
}
.ljx-lp-phone-group:focus-within {
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}
.ljx-lp-phone-code {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 0 12px; border: 0; background: var(--lp-surface-2);
    border-inline-end: 1px solid var(--lp-line);
    font-family: inherit; font-weight: 600; font-size: 14px;
    color: var(--lp-ink-soft); cursor: pointer;
    transition: background 140ms ease, color 140ms ease;
    flex-shrink: 0;
}
.ljx-lp-phone-code:hover { background: #EEF2FF; color: var(--lp-primary); }
.ljx-lp-phone-code:focus-visible { outline: 0; background: #EEF2FF; }
.ljx-lp-phone-code .flag {
    font-size: 17px; line-height: 1;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif;
}
.ljx-lp-phone-code .code { font-variant-numeric: tabular-nums; }
.ljx-lp-phone-code .caret { font-size: 16px; color: var(--lp-muted); transition: transform 180ms ease; }
.ljx-lp-phone-code[aria-expanded="true"] .caret { transform: rotate(180deg); }

.ljx-lp-phone-group .form-control {
    border: 0; border-radius: 0;
    padding: 10px 12px; font-size: 15px;
    box-shadow: none !important;
    background: transparent;
    flex: 1; min-width: 0;
}
.ljx-lp-phone-group .form-control:focus { outline: 0; }

/* Dropdown — custom popover anchored to the phone group. */
.ljx-lp-cc-dropdown {
    position: absolute;
    z-index: 1080;                    /* above bootstrap modal body, below modal backdrop */
    width: min(360px, calc(100% - 24px));
    margin-top: 6px;
    background: #FFFFFF;
    border: 1px solid var(--lp-line);
    border-radius: 12px;
    box-shadow: 0 20px 48px -16px rgba(15, 23, 42, 0.22), 0 4px 10px -4px rgba(15, 23, 42, 0.08);
    opacity: 0; transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
    overflow: hidden;
}
.ljx-lp-cc-dropdown.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.ljx-lp-cc-search-wrap {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--lp-line);
    background: var(--lp-surface-2);
}
.ljx-lp-cc-search-wrap i { color: var(--lp-muted); font-size: 16px; }
.ljx-lp-cc-search {
    flex: 1; border: 0; outline: 0; background: transparent;
    font-family: inherit; font-size: 14px; color: var(--lp-ink);
    padding: 4px 0;
}
.ljx-lp-cc-list {
    max-height: 280px; overflow-y: auto;
    padding: 4px;
}
.ljx-lp-cc-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 10px; border-radius: 8px;
    cursor: pointer; user-select: none;
    transition: background 120ms ease;
}
.ljx-lp-cc-item:hover,
.ljx-lp-cc-item.is-focused { background: var(--lp-surface-2); }
.ljx-lp-cc-item.is-selected { background: rgba(99, 102, 241, 0.10); }
.ljx-lp-cc-item .flag {
    font-size: 18px; line-height: 1; width: 22px; text-align: center;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif;
}
.ljx-lp-cc-item .name {
    flex: 1; min-width: 0;
    font-size: 14px; color: var(--lp-ink);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ljx-lp-cc-item .dial {
    font-size: 13px; color: var(--lp-muted);
    font-variant-numeric: tabular-nums;
}
.ljx-lp-cc-empty {
    padding: 18px; text-align: center;
    font-size: 13px; color: var(--lp-muted);
}

/* Submit-button loader spin. */
.ljx-lp-modal .spin { animation: lpSpin 900ms linear infinite; display: inline-block; }
@keyframes lpSpin { to { transform: rotate(360deg); } }

/* Reduced motion: keep the final state, drop the animations. */
@media (prefers-reduced-motion: reduce) {
    .ljx-lp-modal[data-state="success"] .ljx-lp-success-circle { stroke-dashoffset: 0; animation: none; }
    .ljx-lp-modal[data-state="success"] .ljx-lp-success-tick   { stroke-dashoffset: 0; animation: none; }
    .ljx-lp-success-title, .ljx-lp-success-body, .ljx-lp-success-done { opacity: 1; transform: none; animation: none; }
    .ljx-lp-modal[data-state="success"] .ljx-lp-success-burst::before { animation: none; }
    .ljx-lp-modal .spin { animation: none; }
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.ljx-lp-footer { background: #0F172A; color: #CBD5E1; padding: 56px 0 0; }
.ljx-lp-footer-inner {
    max-width: 1180px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px;
}
@media (max-width: 760px) { .ljx-lp-footer-inner { grid-template-columns: 1fr; } }
.ljx-lp-footer-brand { display: flex; align-items: flex-start; gap: 14px; }
.ljx-lp-footer-brand strong { color: #FFFFFF; font-size: 17px; display: block; margin-bottom: 6px; }
.ljx-lp-footer-brand p { color: #94A3B8; margin: 0; font-size: 14px; max-width: 360px; }
.ljx-lp-footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.ljx-lp-footer-cols h6 { color: #FFFFFF; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 10px; }
.ljx-lp-footer-cols a { display: block; color: #CBD5E1; padding: 3px 0; font-size: 14px; }
.ljx-lp-footer-cols a:hover { color: #FFFFFF; }
.ljx-lp-footer-bottom {
    margin-top: 48px; padding: 18px 0; border-top: 1px solid #1E293B;
    text-align: center; font-size: 12.5px; color: #64748B;
}

/* =============================================================================
   RTL adjustments (Arabic)
   ============================================================================= */
html[dir="rtl"] .ljx-lp-hero-bg .orb-1 { inset-inline-start: auto; inset-inline-end: -80px; }
html[dir="rtl"] .ljx-lp-hero-bg .orb-2 { inset-inline-end: auto; inset-inline-start: -40px; }

/* =============================================================================
   MOBILE RESPONSIVENESS
   =============================================================================
   Breakpoints (aligned with common device widths):
     1080px — switch top nav to burger (defined earlier)
      900px — About/Features second-column collapse (defined earlier)
      768px — tablets / large phones: reduce paddings, stack CTA buttons, tighten device mockup
      560px — phones: hide decorative hero chips, compact nav action labels, tighter modal
      400px — narrow phones (iPhone SE / Android small): last-mile compression
   ============================================================================= */

/* ------ Tablets + large phones (≤ 768px) ------ */
@media (max-width: 768px) {
    html, body { overflow-x: hidden; }  /* hard guard against stray rotated-element overflow */

    .ljx-lp-container, .ljx-lp-footer-inner { padding-inline: 18px; }

    /* Hero — less top padding (fixed-nav already pushes content down), smaller headline. */
    .ljx-lp-hero { padding: 104px 0 56px; }
    .ljx-lp-hero-grid { gap: 32px; }
    .ljx-lp-hero-copy h1 { font-size: clamp(28px, 7.5vw, 40px); line-height: 1.1; margin-top: 16px; }
    html[dir="rtl"] .ljx-lp-hero-copy h1 { font-size: clamp(26px, 7vw, 38px); }
    .ljx-lp-lead { font-size: 15.5px; margin-bottom: 22px; }

    /* Stack the hero CTAs vertically so tap targets are full-width and unambiguous. */
    .ljx-lp-hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 30px; }
    .ljx-lp-hero-ctas > * { justify-content: center; width: 100%; }

    /* Trust strip: equal columns, not wide gaps. Fits cleanly at any phone width. */
    .ljx-lp-hero-trust { gap: 14px; padding-top: 18px; }
    .ljx-lp-hero-trust > div { flex: 1; min-width: 0; }
    .ljx-lp-hero-trust b { font-size: 18px; }
    .ljx-lp-hero-trust span { font-size: 10.5px; }

    /* Device mockup: flatten the 3D tilt — it looks broken on narrow screens. */
    .ljx-lp-device, html[dir="rtl"] .ljx-lp-device { transform: none; }
    .ljx-lp-device-body { padding: 16px; }
    .dev-kpi { padding: 10px; }
    .dev-kpi .label { font-size: 9.5px; }
    .dev-kpi .value { font-size: 15px; }
    .dev-stepper .step { padding: 3px 7px; font-size: 8.5px; }

    /* Sections: pull paddings in so there's less dead scroll on phones. */
    .ljx-lp-section { padding: 64px 0; }
    .ljx-lp-section-head { margin-bottom: 36px; }
    .ljx-lp-section-head h2 { font-size: clamp(24px, 6.2vw, 32px); }
    .ljx-lp-section-head p { font-size: 15px; }

    .ljx-lp-about-card, .ljx-lp-feature, .ljx-lp-testimonial { padding: 22px; }

    /* CTA card: tighter paddings, stacked actions. */
    .ljx-lp-cta-card { padding: 32px 22px; gap: 24px; }
    .ljx-lp-cta-copy h2 { font-size: clamp(22px, 5.4vw, 28px); margin: 14px 0 8px; }
    .ljx-lp-cta-actions { flex-direction: column; align-items: stretch; }
    .ljx-lp-cta-actions > * { justify-content: center; width: 100%; }

    /* Footer: tighten columns, keep the dark plate readable. */
    .ljx-lp-footer { padding-top: 44px; }
    .ljx-lp-footer-inner { gap: 28px; }
    .ljx-lp-footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .ljx-lp-footer-bottom { margin-top: 32px; padding: 14px 0; }

    /* Modal: roomy tap targets, tighter outer padding. */
    .modal-dialog { margin: 14px; }
    .ljx-lp-modal .modal-header { padding: 14px 18px; }
    .ljx-lp-modal .modal-body { padding: 18px; }
    .ljx-lp-modal .modal-footer { padding: 12px 18px; flex-direction: column-reverse; align-items: stretch; gap: 8px; }
    .ljx-lp-modal .modal-footer > * { width: 100%; margin: 0 !important; justify-content: center; }
    .ljx-lp-modal .form-control { padding: 10px 12px; font-size: 15px; }   /* 44px tap height */
}

/* ------ Phones (≤ 560px) — hide decorative floats, compact nav action labels ------ */
@media (max-width: 560px) {
    /* Dev-mockup decorative chips crowd the narrow device; let the mockup stand alone. */
    .ljx-lp-float-chip { display: none !important; }

    /* Compact nav actions: keep only icons on the language + outline + primary buttons.
       The dropdown caret gets hidden too so the language chip becomes a single globe. */
    .ljx-lp-lang .btn-label,
    .ljx-lp-lang .caret,
    .ljx-lp-btn-outline .btn-label,
    .ljx-lp-btn-primary .btn-label { display: none; }
    .ljx-lp-nav-actions .ljx-lp-btn-primary,
    .ljx-lp-nav-actions .ljx-lp-btn-outline,
    .ljx-lp-nav-actions .ljx-lp-btn-ghost { padding: 10px 12px; gap: 0; }
    .ljx-lp-nav-actions .ljx-lp-btn-primary i,
    .ljx-lp-nav-actions .ljx-lp-btn-outline i,
    .ljx-lp-nav-actions .ljx-lp-btn-ghost i { font-size: 18px; }

    /* Brand: keep the tile, trim the wordmark so the nav never crowds. */
    .ljx-lp-brand-text { font-size: 15px; }
    .ljx-lp-nav-inner { padding: 12px 16px; gap: 8px; }

    /* Even tighter section paddings for tiny screens. */
    .ljx-lp-section { padding: 56px 0; }
    .ljx-lp-hero { padding: 92px 0 48px; }
    .ljx-lp-cta-section { padding-block-end: 72px; }

    /* Trust strip stacks vertically so 3 tall narrow columns don't clip the values. */
    .ljx-lp-hero-trust { flex-direction: column; gap: 12px; align-items: flex-start; border-top: 0; padding-top: 16px; }
    .ljx-lp-hero-trust > div { flex-direction: row; align-items: baseline; gap: 10px; }
    .ljx-lp-hero-trust b { font-size: 20px; }

    /* Footer columns reflow single-col for true phone widths. */
    .ljx-lp-footer-cols { grid-template-columns: 1fr; gap: 20px; }
    .ljx-lp-footer-brand { flex-direction: column; gap: 10px; }
    .ljx-lp-footer-brand p { max-width: none; }

    /* Device mockup last bits. */
    .ljx-lp-hero-art { max-width: 100%; }
    .dev-kpi-row { gap: 8px; }
    .dev-kpi { padding: 9px 8px; }
    .dev-kpi .value { font-size: 14px; }
}

/* ------ Narrow phones (≤ 400px) — iPhone SE class ------ */
@media (max-width: 400px) {
    .ljx-lp-container { padding-inline: 14px; }
    .ljx-lp-nav-inner { padding: 10px 14px; gap: 6px; }
    .ljx-lp-brand-mark { width: 34px; height: 34px; font-size: 16px; }
    .ljx-lp-brand-text { font-size: 14px; }

    .ljx-lp-hero-copy h1 { font-size: 26px; letter-spacing: -0.02em; }
    .ljx-lp-lead { font-size: 14.5px; }
    .ljx-lp-eyebrow { font-size: 10.5px; padding: 5px 10px; letter-spacing: 0.06em; }

    /* Stepper labels fall back to single-letter on tiny widths via a smaller font. */
    .dev-stepper .step { padding: 3px 5px; font-size: 8px; letter-spacing: 0; }

    .ljx-lp-modal .modal-title { font-size: 16px; }
}

/* ------ Touch-friendly tap targets + reduced motion ------ */
@media (hover: none) {
    /* Remove :hover-only visual effects that stick after a tap on touch devices. */
    .ljx-lp-hero-art:hover .ljx-lp-device,
    .ljx-lp-device { transition: none; }
}
@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    .ljx-lp-hero-bg .orb, .ljx-lp-float-chip { animation: none; }
    .dev-stepper .step.pulse::after { animation: none; }
}
