:root {
    --lp-ink: #07111f;
    --lp-ink-soft: #334155;
    --lp-muted: #64748b;
    --lp-line: rgba(148, 163, 184, .22);
    --lp-surface: #ffffff;
    --lp-soft: #f5f8ff;
    --lp-primary: #2563eb;
    --lp-primary-2: #06b6d4;
    --lp-accent: #7c3aed;
    --lp-success: #10b981;
    --lp-radius: 28px;
    --lp-shadow: 0 24px 80px rgba(15, 23, 42, .12);
    --lp-shadow-soft: 0 18px 50px rgba(15, 23, 42, .08);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--lp-ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f8fbff;
    line-height: 1.65;
    overflow-x: hidden;
}

html.font-ar body {
    font-family: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
}

html.font-en body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[dir=rtl] body {
    font-family: Cairo, "Segoe UI", Tahoma, Arial, sans-serif
}

a {
    color: inherit
}

.lp-container {
    width: min(1180px, calc(100% - 36px));
    margin-inline: auto
}

.lp-page-shell {
    position: relative;
    isolation: isolate
}

.lp-page-shell:before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(37, 99, 235, .10), transparent 28%), radial-gradient(circle at 90% 0%, rgba(6, 182, 212, .12), transparent 30%), linear-gradient(180deg, #fff, #f8fbff 55%, #fff);
    z-index: -3
}

.lp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .72);
    border-bottom: 1px solid rgba(226, 232, 240, .75);
    backdrop-filter: saturate(170%) blur(20px);
    transition: .25s ease
}

.lp-header.is-scrolled {
    box-shadow: 0 14px 40px rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .92)
}

.lp-nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.04em
}

.lp-brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-2));
    box-shadow: 0 12px 30px rgba(37, 99, 235, .28)
}

.lp-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px;
    border: 1px solid var(--lp-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .62)
}

.lp-menu a {
    text-decoration: none;
    color: var(--lp-ink-soft);
    font-weight: 800;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 999px;
    transition: .2s
}

.lp-menu a:hover {
    background: #eef6ff;
    color: var(--lp-primary)
}

.lp-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.lp-language-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: #edf5ff;
    border: 1px solid var(--lp-line);
    border-radius: 999px
}

.lp-language-switch a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    color: var(--lp-muted);
    padding: 7px 10px;
    border-radius: 999px
}

.lp-language-switch a.is-active {
    background: #fff;
    color: var(--lp-primary);
    box-shadow: 0 8px 18px rgba(15, 23, 42, .08)
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 900;
    padding: 14px 22px;
    transition: .24s ease;
    white-space: nowrap
}

.lp-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
    box-shadow: 0 16px 34px rgba(37, 99, 235, .26)
}

.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 46px rgba(37, 99, 235, .35)
}

.lp-btn-secondary {
    color: var(--lp-primary);
    background: #fff;
    border: 1px solid var(--lp-line);
    box-shadow: var(--lp-shadow-soft)
}

.lp-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--lp-line);
    background: #fff;
    border-radius: 15px;
    padding: 11px;
    gap: 5px;
    flex-direction: column;
    justify-content: center
}

.lp-menu-toggle span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--lp-ink);
    transition: .2s
}

.lp-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.lp-menu-toggle.is-open span:nth-child(2) {
    opacity: 0
}

.lp-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.lp-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 76px
}

.lp-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: .75;
    z-index: -1
}

.lp-orb-one {
    width: 430px;
    height: 430px;
    background: radial-gradient(circle, rgba(37, 99, 235, .20), transparent 68%);
    inset: 5% auto auto -120px
}

.lp-orb-two {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(6, 182, 212, .18), transparent 68%);
    inset: 0 -130px auto auto
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
    gap: 64px;
    align-items: center
}

.lp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .12);
    color: var(--lp-primary);
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 20px
}

.lp-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(46px, 6.4vw, 82px);
    line-height: .98;
    letter-spacing: -.07em;
    max-width: 850px
}

.lp-hero p {
    font-size: 20px;
    color: var(--lp-muted);
    max-width: 700px;
    margin: 0 0 30px
}

.lp-hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap
}

.lp-store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border-radius: 18px;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--lp-line);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .07);
    min-width: 158px;
    transition: .22s
}

.lp-store:hover {
    transform: translateY(-2px)
}

.lp-store i {
    font-size: 25px
}

.lp-store span {
    display: grid;
    font-weight: 900;
    line-height: 1.1
}

.lp-store small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--lp-muted);
    font-weight: 900
}

html[dir=rtl] .lp-store small {
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
    font-weight: 700;
}

html[dir=rtl] .lp-store span {
    line-height: 1.35;
}

.lp-store-dark {
    background: #07111f;
    color: #fff
}

.lp-store-dark small {
    color: #94a3b8
}

.lp-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
    max-width: 650px
}

.lp-trust-row div {
    padding: 18px 18px;
    border: 1px solid var(--lp-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .74);
    box-shadow: 0 14px 38px rgba(15, 23, 42, .06)
}

.lp-trust-row strong {
    display: block;
    font-size: 28px;
    letter-spacing: -.04em
}

.lp-trust-row span {
    display: block;
    color: var(--lp-muted);
    font-size: 13px;
    font-weight: 800
}

.lp-hero-visual {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center
}

.lp-phone-frame {
    position: relative;
    width: min(390px, 88vw);
    min-height: 610px;
    padding: 24px;
    border-radius: 46px;
    background: linear-gradient(145deg, #08111f, #172554 45%, #2563eb 100%);
    border: 10px solid #fff;
    box-shadow: 0 40px 120px rgba(15, 23, 42, .25), inset 0 0 0 1px rgba(255, 255, 255, .12);
    overflow: hidden;
    color: #fff
}

.lp-phone-frame:before {
    content: "";
    position: absolute;
    inset: -40% -20% auto auto;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(6, 182, 212, .42);
    filter: blur(42px)
}

.lp-phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    display: block
}

.lp-phone-top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start
}

.lp-phone-top span {
    display: block;
    color: #bfdbfe;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .09em
}

.lp-phone-top h2 {
    margin: 3px 0 0;
    font-size: 29px;
    line-height: 1.08;
    letter-spacing: -.04em
}

.lp-phone-top i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16)
}

.lp-wash-progress {
    position: relative;
    z-index: 1;
    margin: 48px 0 28px;
    border-radius: 30px;
    padding: 24px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    overflow: hidden
}

.lp-car-plate {
    height: 140px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06));
    display: grid;
    place-items: center
}

.lp-car-plate i {
    font-size: 76px;
    color: #e0f2fe;
    animation: floatCar 3.5s ease-in-out infinite
}

.lp-progress-lines {
    display: grid;
    gap: 8px;
    margin-top: 18px
}

.lp-progress-lines span {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    overflow: hidden
}

.lp-progress-lines span:before {
    content: "";
    display: block;
    width: 68%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #67e8f9, #bfdbfe);
    animation: progressGlow 2.4s ease-in-out infinite
}

.lp-progress-lines span:nth-child(2):before {
    width: 52%;
    animation-delay: .22s
}

.lp-progress-lines span:nth-child(3):before {
    width: 80%;
    animation-delay: .4s
}

.lp-phone-panel {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 24px;
    padding: 18px
}

.lp-phone-panel strong,
.lp-phone-panel-grid strong {
    display: block;
    font-weight: 900
}

.lp-phone-panel p {
    margin: 7px 0 0;
    color: #dbeafe;
    font-size: 15px
}

.lp-phone-panel.is-highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08))
}

.lp-phone-panel-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px
}

.lp-phone-panel-grid div {
    border-radius: 22px;
    padding: 16px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16)
}

.lp-phone-panel-grid span {
    display: block;
    margin-top: 6px;
    color: #bfdbfe;
    font-size: 13px
}

.lp-dashboard-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 250px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(226, 232, 240, .9);
    box-shadow: var(--lp-shadow-soft);
    border-radius: 22px;
    backdrop-filter: blur(18px);
    animation: softFloat 5s ease-in-out infinite
}

.lp-dashboard-card i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #eff6ff;
    color: var(--lp-primary)
}

.lp-dashboard-card strong {
    display: block;
    font-size: 14px
}

.lp-dashboard-card span {
    display: block;
    color: var(--lp-muted);
    font-weight: 700;
    font-size: 12px;
    line-height: 1.3
}

.lp-floating-card-one {
    top: 90px;
    inset-inline-start: 0
}

.lp-floating-card-two {
    bottom: 90px;
    inset-inline-end: 0;
    animation-delay: 1.1s
}

.lp-section {
    padding: 94px 0
}

.lp-section-head {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center
}

.lp-section-head span,
.lp-mini-label {
    display: inline-flex;
    color: var(--lp-primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 10px
}

.lp-section-head h2,
.lp-app-showcase h2 {
    margin: 0 0 14px;
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.04;
    letter-spacing: -.055em
}

.lp-section-head p,
.lp-app-showcase p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 18px
}

.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.lp-feature-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    padding: 30px;
    box-shadow: var(--lp-shadow-soft);
    transition: .24s
}

.lp-feature-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, .08), transparent 48%);
    opacity: 0;
    transition: .24s
}

.lp-feature-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--lp-shadow)
}

.lp-feature-card:hover:before {
    opacity: 1
}

.lp-icon {
    position: relative;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 19px;
    background: linear-gradient(135deg, #dbeafe, #ecfeff);
    color: var(--lp-primary);
    font-size: 24px;
    margin-bottom: 22px
}

.lp-feature-card h3,
.lp-package-card h3,
.lp-step h3 {
    position: relative;
    margin: 0 0 10px;
    font-size: 23px;
    letter-spacing: -.03em
}

.lp-feature-card p,
.lp-package-card p,
.lp-step p {
    position: relative;
    margin: 0;
    color: var(--lp-muted)
}

.lp-packages-section {
    position: relative;
    background: #07111f;
    color: #fff;
    overflow: hidden
}

.lp-packages-section:before {
    content: "";
    position: absolute;
    inset: -25% -15% auto auto;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .32), transparent 70%)
}

.lp-section-head-light p {
    color: #cbd5e1
}

.lp-section-head-light span {
    color: #67e8f9
}

.lp-package-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.lp-package-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 32px;
    padding: 12px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .20);
    backdrop-filter: blur(16px);
    transition: .24s
}

.lp-package-card:hover {
    transform: translateY(-8px);
    border-color: rgba(103, 232, 249, .45)
}

.lp-package-media {
    height: 190px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(37, 99, 235, .65), rgba(6, 182, 212, .52));
    display: grid;
    place-items: center;
    overflow: hidden
}

.lp-package-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.lp-package-media i {
    font-size: 72px;
    color: #e0f2fe
}

.lp-package-content {
    padding: 22px
}

.lp-package-card p {
    color: #cbd5e1
}

.lp-price-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin: 22px 0
}

.lp-price-row strong {
    font-size: 36px;
    line-height: 1;
    color: #67e8f9;
    letter-spacing: -.04em
}

.lp-price-row span {
    color: #94a3b8;
    font-weight: 800;
    font-size: 12px
}

.lp-package-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.lp-package-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    border-radius: 999px;
    padding: 8px 11px;
    font-size: 13px;
    font-weight: 800;
    color: #e2e8f0
}

.lp-process-grid {
    display: grid;
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
    gap: 56px;
    align-items: start
}

.lp-section-head-sticky {
    text-align: start;
    margin: 0;
    position: sticky;
    top: 120px
}

.lp-section-head-sticky .lp-btn {
    margin-top: 26px
}

.lp-steps {
    display: grid;
    gap: 18px;
    counter-reset: step
}

.lp-step {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 20px;
    align-items: start;
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 30px;
    padding: 24px;
    box-shadow: var(--lp-shadow-soft);
    transition: .24s
}

.lp-step:hover {
    transform: translateX(8px)
}

html[dir=rtl] .lp-step:hover {
    transform: translateX(-8px)
}

.lp-step-number {
    height: 68px;
    width: 68px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: #eff6ff;
    color: var(--lp-primary);
    font-weight: 900;
    font-size: 22px
}

.lp-app-section {
    padding-top: 30px
}

.lp-app-showcase {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    padding: 56px;
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
    border: 1px solid var(--lp-line);
    box-shadow: var(--lp-shadow-soft);
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 34px;
    align-items: center
}

.lp-app-showcase:after {
    content: "";
    position: absolute;
    inset: auto -80px -140px auto;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(37, 99, 235, .20), transparent 68%);
    border-radius: 50%
}

.lp-showcase-cards {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.lp-showcase-cards div {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 26px;
    padding: 22px;
    min-height: 190px;
    box-shadow: 0 14px 38px rgba(15, 23, 42, .06)
}

.lp-showcase-cards i {
    font-size: 28px;
    color: var(--lp-primary);
    margin-bottom: 28px
}

.lp-showcase-cards strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px
}

.lp-showcase-cards span {
    display: block;
    color: var(--lp-muted);
    font-weight: 700;
    font-size: 14px
}

.lp-faq {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 14px
}

.lp-faq details {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 14px 38px rgba(15, 23, 42, .055);
    overflow: hidden
}

.lp-faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    font-weight: 900;
    font-size: 18px
}

.lp-faq summary::-webkit-details-marker {
    display: none
}

.lp-faq summary i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eff6ff;
    color: var(--lp-primary);
    transition: .2s
}

.lp-faq details[open] summary i {
    transform: rotate(45deg);
    background: var(--lp-primary);
    color: #fff
}

.lp-faq p {
    margin: 0;
    padding: 0 24px 24px;
    color: var(--lp-muted)
}

.lp-final-section {
    padding-top: 40px
}

.lp-cta {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    padding: 62px;
    background: linear-gradient(135deg, #07111f 0%, #172554 55%, #2563eb 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    box-shadow: 0 32px 90px rgba(37, 99, 235, .26)
}

.lp-cta:before {
    content: "";
    position: absolute;
    inset: -40% auto auto -10%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(6, 182, 212, .35), transparent 68%);
    border-radius: 50%
}

.lp-cta>* {
    position: relative
}

.lp-cta span {
    display: inline-flex;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    color: #67e8f9;
    margin-bottom: 12px
}

.lp-cta h2 {
    margin: 0 0 12px;
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.03;
    letter-spacing: -.055em;
    max-width: 680px
}

.lp-cta p {
    margin: 0;
    color: #cbd5e1;
    font-size: 18px;
    max-width: 640px
}

.lp-cta-actions {
    display: grid;
    gap: 12px;
    min-width: 210px
}

.lp-footer {
    background: #050b16;
    color: #94a3b8;
    padding: 44px 0
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.1fr auto auto;
    gap: 32px;
    align-items: center
}

.lp-footer .lp-brand {
    color: #fff;
    font-size: 22px
}

.lp-footer p {
    max-width: 420px;
    margin: 14px 0 0
}

.lp-footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.lp-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 800
}

.lp-footer-links a:hover {
    color: #fff
}

.lp-social {
    display: flex;
    gap: 10px
}

.lp-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, .06)
}

.lp-empty {
    grid-column: 1/-1;
    padding: 28px;
    border: 1px dashed rgba(255, 255, 255, .25);
    border-radius: 24px;
    text-align: center;
    color: #cbd5e1;
    background: rgba(255, 255, 255, .05)
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none
}

@keyframes softFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

@keyframes floatCar {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg)
    }

    50% {
        transform: translateY(-10px) rotate(1deg)
    }
}

@keyframes progressGlow {

    0%,
    100% {
        opacity: .65;
        transform: translateX(-8%)
    }

    50% {
        opacity: 1;
        transform: translateX(8%)
    }
}

html[dir=rtl] .lp-hero h1,
html[dir=rtl] .lp-section-head h2,
html[dir=rtl] .lp-app-showcase h2,
html[dir=rtl] .lp-cta h2 {
    letter-spacing: -.035em
}

html[dir=rtl] .lp-store i,
html[dir=rtl] .lp-btn i {
    transform: scaleX(-1)
}

@media(max-width:1080px) {

    .lp-hero-grid,
    .lp-process-grid,
    .lp-app-showcase {
        grid-template-columns: 1fr
    }

    .lp-section-head-sticky {
        position: static
    }

    .lp-hero-visual {
        min-height: 560px
    }

    .lp-feature-grid,
    .lp-package-grid,
    .lp-showcase-cards {
        grid-template-columns: 1fr 1fr
    }

    .lp-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center
    }

    .lp-footer-brand {
        display: grid;
        justify-items: center
    }

    .lp-cta {
        flex-direction: column;
        align-items: flex-start
    }

    .lp-cta-actions {
        display: flex;
        flex-wrap: wrap
    }
}

@media(max-width:820px) {
    .lp-menu-toggle {
        display: flex
    }

    .lp-nav {
        min-height: 70px
    }

    .lp-menu {
        position: absolute;
        inset: 76px 18px auto 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border-radius: 24px;
        background: #fff;
        padding: 12px;
        box-shadow: var(--lp-shadow);
        z-index: 60
    }

    .lp-menu.is-open {
        display: flex
    }

    .lp-menu a {
        text-align: center
    }

    .lp-actions .lp-btn-primary {
        display: none
    }

    .lp-hero {
        padding: 62px 0 40px
    }

    html[dir=rtl] .lp-hero h1 {
        font-size: clamp(38px, 11vw, 54px);
        line-height: 1.16;
    }

    .lp-hero h1 {
        font-size: clamp(38px, 12vw, 56px)
    }

    .lp-hero p {
        font-size: 18px
    }

    .lp-trust-row,
    .lp-feature-grid,
    .lp-package-grid,
    .lp-showcase-cards {
        grid-template-columns: 1fr
    }

    .lp-hero-visual {
        min-height: auto;
        margin-top: 22px
    }

    .lp-phone-frame {
        min-height: 560px
    }

    .lp-dashboard-card {
        display: none
    }

    .lp-section {
        padding: 64px 0
    }

    .lp-app-showcase,
    .lp-cta {
        padding: 34px;
        border-radius: 30px
    }

    .lp-step {
        grid-template-columns: 1fr
    }

    .lp-step-number {
        width: 58px;
        height: 58px
    }

    .lp-footer-links {
        justify-content: center
    }
}

@media(max-width:520px) {
    .lp-container {
        width: min(100% - 24px, 1180px)
    }

    .lp-brand {
        font-size: 20px
    }

    .lp-brand-mark {
        width: 40px;
        height: 40px
    }

    .lp-language-switch a {
        padding: 6px 8px
    }

    .lp-hero-actions,
    .lp-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%
    }

    .lp-store {
        width: 100%;
        justify-content: center
    }

    .lp-trust-row div {
        padding: 16px
    }

    .lp-phone-frame {
        width: 100%;
        min-height: 520px;
        border-width: 7px;
        border-radius: 38px
    }

    .lp-phone-panel-grid {
        grid-template-columns: 1fr
    }

    .lp-section-head h2,
    .lp-app-showcase h2,
    .lp-cta h2 {
        font-size: 34px
    }

    .lp-feature-card,
    .lp-package-content {
        padding: 22px
    }

    .lp-price-row {
        align-items: flex-start;
        flex-direction: column
    }

    .lp-faq summary {
        font-size: 16px;
        padding: 19px
    }

    .lp-faq p {
        padding: 0 19px 19px
    }
}

html[dir=rtl] .lp-hero h1 {
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1.14;
    letter-spacing: -.018em;
    font-weight: 800;
}
