/* LundrX V4 Landing Page CSS - Radical Redesign */

/* ==========================================================================
   1. Base & Typography
   ========================================================================== */
:root {
    --lx-primary: #0969DA;
    --lx-primary-dark: #064FA8;
    --lx-navy: #082B4C;
    --lx-dark: #031F35;
    --lx-text: #10233F;
    --lx-muted: #66758A;
    --lx-bg: #F7FBFF;
    --lx-bg-soft: #EAF4FF;
    --lx-border: #D8E9F8;
    --lx-white: #FFFFFF;
}

body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--lx-text);
    background-color: var(--lx-white);
    margin: 0;
    padding: 0;
}


html[lang="ar"],
html[lang="ar"] body,
html[lang="ar"] p,
html[lang="ar"] a,
html[lang="ar"] span,
html[lang="ar"] li,
html[lang="ar"] button,
html[lang="ar"] input,
html[lang="ar"] textarea,
html[lang="ar"] select,
html[lang="ar"] div,
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4, html[lang="ar"] h5, html[lang="ar"] h6 {
    font-family: 'Cairo', sans-serif !important;
}

html[lang="ar"] i, html[lang="ar"] svg, html[lang="ar"] .fas, html[lang="ar"] .far, html[lang="ar"] .fal, html[lang="ar"] .fab {
    font-family: inherit !important;
}


html { scroll-behavior: smooth; }


html[lang="en"] body {
    direction: ltr;
    font-family: "Inter", sans-serif;
    text-align: left;
}


html[lang="ar"],
html[lang="ar"] body,
html[lang="ar"] p,
html[lang="ar"] a,
html[lang="ar"] span,
html[lang="ar"] li,
html[lang="ar"] button,
html[lang="ar"] input,
html[lang="ar"] textarea,
html[lang="ar"] select,
html[lang="ar"] div,
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4, html[lang="ar"] h5, html[lang="ar"] h6 {
    font-family: 'Cairo', sans-serif !important;
}

html[lang="ar"] i, html[lang="ar"] svg, html[lang="ar"] .fas, html[lang="ar"] .far, html[lang="ar"] .fal, html[lang="ar"] .fab {
    font-family: inherit !important;
}


html { scroll-behavior: smooth; }




html[lang="ar"] button,
html[lang="ar"] input,
html[lang="ar"] textarea,
html[lang="ar"] select {
    font-family: "Cairo", sans-serif;
}

html[lang="ar"] .lx-hero__title,
html[lang="ar"] .lx-section__title,
html[lang="ar"] .lx-provider__title,
html[lang="ar"] .lx-cta__title,
html[lang="ar"] .lx-app-card__title,
html[lang="ar"] .lx-footer__heading {
    font-family: "Cairo", sans-serif;
    font-weight: 700;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.lx-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1440px) {
    .lx-container {
        max-width: 1320px;
    }
}

.lx-section {
    padding-block: 80px;
}
.lx-section--soft {
    background-color: var(--lx-bg);
}

.lx-section__title {
    margin: 0 0 42px;
    color: #082b4c;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.35;
    font-weight: 700;
    text-align: center;
}

/* ==========================================================================
   2. Header
   ========================================================================== */
.lx-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 78px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.lx-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.lx-header__logo img {
    width: 112px;
    height: auto;
    display: block;
}

.lx-header__nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.lx-header__link {
    font-size: 15px;
    font-weight: 600;
    color: var(--lx-text-light);
    text-decoration: none;
    transition: all 0.2s ease;
}
.lx-header__link:hover {
    color: var(--lx-primary);
}

.lx-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lx-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 22px;
    min-height: 44px;
    border-radius: 22px;
    background: var(--lx-primary);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.lx-header__cta:hover {
    background: var(--lx-primary-dark);
}
.lx-header__lang {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--lx-text);
}
.lx-header__lang:hover {
    color: var(--lx-primary);
}

.lx-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--lx-navy);
    padding: 8px;
    cursor: pointer;
}

/* ==========================================================================
   3. Hero
   ========================================================================== */
.lx-hero {
    padding-top: 116px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #f4f6fa 0%, #ffffff 100%);
    overflow: hidden;
}

.lx-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    align-items: center;
    gap: 44px;
    min-height: 500px;
}

html[dir="rtl"] .lx-hero__media {
    order: 1;
}
html[dir="rtl"] .lx-hero__content {
    order: 2;
    text-align: right;
}
html[dir="ltr"] .lx-hero__content {
    order: 1;
    text-align: left;
}
html[dir="ltr"] .lx-hero__media {
    order: 2;
}

.lx-hero__content {
    min-width: 0;
    max-width: 610px;
}

.lx-hero__media {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lx-hero__media img {
    width: 100%;
    max-width: 640px;
    height: auto;
    display: block;
    object-fit: contain;
    transform: none;
    border-radius: 24px;
}

.lx-hero__title {
    display: block;
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 700;
    color: #082b4c;
    opacity: 1;
    visibility: visible;
    line-height: 1.28;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}

.lx-hero__description {
    font-size: 16px;
    line-height: 1.9;
    color: #334155;
    margin-bottom: 26px;
    font-weight: 400;
}

.lx-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
html[dir="rtl"] .lx-hero__actions { justify-content: flex-start; }
html[dir="ltr"] .lx-hero__actions { justify-content: flex-start; }

.lx-hero__actions a {
    min-height: 52px;
    padding-inline: 26px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
}
.lx-btn--primary {
    background: var(--lx-primary);
    color: var(--lx-white) !important;
    box-shadow: 0 8px 24px rgba(9, 105, 218, 0.2);
}
.lx-btn--primary:hover {
    background: var(--lx-primary-dark);
    box-shadow: 0 12px 32px rgba(9, 105, 218, 0.3);
    transform: translateY(-2px);
}
.lx-btn--outline {
    background: transparent;
    border: 2px solid var(--lx-border);
    color: var(--lx-navy) !important;
}
.lx-btn--outline:hover {
    border-color: var(--lx-primary);
    color: var(--lx-primary) !important;
}

.lx-hero__trust {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.lx-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--lx-navy);
    font-weight: 600;
}
.lx-hero__trust-item svg {
    color: var(--lx-primary);
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   4. Features 4-Cards
   ========================================================================== */
.lx-features {
    margin-top: -38px;
    position: relative;
    z-index: 2;
    padding-bottom: 88px;
}
.lx-features__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.lx-feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 26px 22px;
    min-height: 150px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.lx-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}
.lx-feature-card__icon {
    width: 44px;
    height: 44px;
    background: rgba(9, 105, 218, 0.08);
    color: var(--lx-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.lx-feature-card__icon svg {
    width: 24px;
    height: 24px;
}
.lx-feature-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--lx-navy);
    margin-bottom: 10px;
}
.lx-feature-card__desc {
    font-size: 13px;
    color: #526174;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* ==========================================================================
   5. How It Works (Steps)
   ========================================================================== */
.lx-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    position: relative;
}
.lx-step-card {
    text-align: center;
    position: relative;
    background: #fff;
    padding: 26px 20px;
    min-height: 190px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    z-index: 1;
}
.lx-step-card__icon {
    width: 58px;
    height: 58px;
    background: #f0f6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--lx-primary);
}
.lx-step-card__icon svg {
    width: 28px;
    height: 28px;
}
.lx-step-card__num {
    width: 30px;
    height: 30px;
    background: var(--lx-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin: 0 auto 14px;
}
html[dir="rtl"] .lx-step-card__num { right: 0; left: auto; }
html[dir="ltr"] .lx-step-card__num { left: 0; right: auto; }

.lx-step-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--lx-navy);
    margin-bottom: 10px;
}
.lx-step-card__desc {
    font-size: 13px;
    color: #526174;
    line-height: 1.7;
    margin: 0;
}
.lx-step-arrow {
    position: absolute;
    top: 32px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 2px;
    background-image: linear-gradient(to right, #b0c9e4 50%, rgba(255,255,255,0) 0%);
    background-position: top;
    background-size: 12px 2px;
    background-repeat: repeat-x;
    z-index: 0;
    opacity: 0.7;
}
html[dir="rtl"] .lx-step-arrow {
    right: calc(50% + 36px);
    left: auto;
}
.lx-step-card:last-child .lx-step-arrow {
    display: none;
}

/* ==========================================================================
   6. Services
   ========================================================================== */
.lx-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.lx-service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.lx-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.lx-service-card:hover {
    transform: translateY(-5px);
}
.lx-service-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}
.lx-service-card__body {
    padding: 20px 20px 24px;
    text-align: center;
}


html[lang="ar"],
html[lang="ar"] body,
html[lang="ar"] p,
html[lang="ar"] a,
html[lang="ar"] span,
html[lang="ar"] li,
html[lang="ar"] button,
html[lang="ar"] input,
html[lang="ar"] textarea,
html[lang="ar"] select,
html[lang="ar"] div,
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4, html[lang="ar"] h5, html[lang="ar"] h6 {
    font-family: 'Cairo', sans-serif !important;
}

html[lang="ar"] i, html[lang="ar"] svg, html[lang="ar"] .fas, html[lang="ar"] .far, html[lang="ar"] .fal, html[lang="ar"] .fab {
    font-family: inherit !important;
}


html { scroll-behavior: smooth; }

.lx-service-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--lx-navy);
    margin-bottom: 10px;
}
.lx-service-card__desc {
    font-size: 13px;
    color: #526174;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   7. Why Choose Us
   ========================================================================== */
.lx-why__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 36px;
    align-items: center;
}
html[dir="rtl"] .lx-why__media { order: 2; }
html[dir="rtl"] .lx-why__content { order: 1; text-align: right; }
html[dir="ltr"] .lx-why__media { order: 1; }
html[dir="ltr"] .lx-why__content { order: 2; text-align: left; }

.lx-why__media img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 24px 50px rgba(8,43,76,0.1);
}
.lx-why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 36px;
}
.lx-why-card {
    background: #fff;
    padding: 24px 20px;
    min-height: 150px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.lx-why-card__icon {
    width: 44px;
    height: 44px;
    background: rgba(9, 105, 218, 0.08);
    color: var(--lx-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.lx-why-card__icon svg {
    width: 26px;
    height: 26px;
}
.lx-why-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--lx-navy);
    margin-bottom: 8px;
}
.lx-why-card__desc {
    font-size: 13px;
    color: #526174;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   8. Apps Section
   ========================================================================== */

#apps {
    scroll-margin-top: 100px;
}

.lx-apps__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.lx-app-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 26px;
    min-height: 330px;
    text-align: start;
    position: relative;
    overflow: hidden;
}
.lx-app-card--client {
    background: #f7fbff;
    box-shadow: 0 16px 40px rgba(8,43,76,0.06);
    border: 1px solid #dbeaf7;
}
.lx-app-card--provider {
    background: #0b1f36;
    color: #fff;
}
.lx-app-card__content {
    min-width: 0;
}
.lx-app-card__media {
    min-width: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.lx-app-card__media img {
    width: 100%;
    max-width: 280px;
    max-height: 400px;
    object-fit: contain;
    display: block;
}
.lx-app-card__title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
    color: inherit;
}
.lx-app-card--provider .lx-app-card__title { color: var(--lx-white); }

.lx-app-card__desc {
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 24px 0;
    color: var(--lx-muted);
}
.lx-app-card--provider .lx-app-card__desc { color: rgba(255,255,255,0.78); }

/* RTL app card: text on right, image on left */
html[dir="rtl"] .lx-app-card .lx-app-card__content { order: 2; }
html[dir="rtl"] .lx-app-card .lx-app-card__media  { order: 1; }
html[dir="ltr"] .lx-app-card .lx-app-card__content { order: 1; }
html[dir="ltr"] .lx-app-card .lx-app-card__media  { order: 2; }

.lx-store-btn {
    width: 132px;
    height: auto;
    display: block;
    transition: transform 0.2s ease;
}
.lx-store-btn:hover {
    transform: translateY(-2px);
}
.lx-footer .lx-store-btn {
    width: 120px;
}
.lx-app-store-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.lx-app-store-btns img {
    height: 44px;
    width: auto;
    transition: transform 0.2s ease;
}
.lx-app-store-btns a:hover img {
    transform: translateY(-2px);
}

/* ==========================================================================
   9. Provider Section
   ========================================================================== */
.lx-provider-card {
    background: var(--lx-primary);
    border-radius: 32px;
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    color: var(--lx-white);
}
html[dir="rtl"] .lx-provider-card__media { order: 2; }
html[dir="rtl"] .lx-provider-card__content { order: 1; }
html[dir="ltr"] .lx-provider-card__media { order: 1; }
html[dir="ltr"] .lx-provider-card__content { order: 2; }

.lx-provider-card__media img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.lx-provider-card__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 20px 0;
    color: var(--lx-white);
}
.lx-provider-card__desc {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 28px 0;
    color: rgba(255,255,255,0.9);
}
.lx-provider-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lx-provider-card__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
}
.lx-provider-card__list svg {
    width: 24px;
    height: 24px;
    color: #fff;
    flex-shrink: 0;
}
.lx-btn--white-solid {
    background: var(--lx-white);
    color: var(--lx-primary) !important;
}
.lx-btn--white-solid:hover {
    background: var(--lx-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ==========================================================================
   10. Final CTA & Footer
   ========================================================================== */
.lx-footer-wrap {
    background: var(--lx-navy);
    color: var(--lx-white);
    padding-top: 88px;
}
.lx-final-cta {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px auto;
    padding-block: 72px 0;
}
.lx-final-cta__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--lx-white);
    margin: 0 0 20px 0;
}
.lx-final-cta__desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    margin: 0 0 32px 0;
}
.lx-final-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.lx-final-cta .lx-btn {
    min-height: 46px;
}
.lx-btn--cta-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--lx-white) !important;
}
.lx-btn--cta-outline:hover {
    border-color: var(--lx-white);
}

.lx-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-block: 60px 32px;
}
.lx-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 42px;
    padding-bottom: 48px;
}
.lx-footer__logo img {
    width: 110px;
    margin-bottom: 20px;
}
.lx-footer__desc {
    font-size: 13px;
    color: rgba(255,255,255,0.68);
    line-height: 1.8;
}
.lx-footer__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--lx-white);
    margin: 0 0 18px 0;
}
.lx-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lx-footer__list li {
    margin-bottom: 12px;
}
.lx-footer__list a {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    line-height: 1.8;
}
.lx-footer__list a:hover {
    color: var(--lx-white);
}
.lx-footer-apps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lx-footer-apps p {
    font-size: 13px;
    color: rgba(255,255,255,0.68);
    margin: 0 0 6px 0;
}
.lx-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.76);
    font-size: 13px;
}

/* ==========================================================================
   11. Responsive (Mobile)
   ========================================================================== */
@media (max-width: 991.98px) {
    .lx-header__nav { display: none; }
    .lx-header__actions { display: none; }
    .lx-mobile-toggle { display: block; }
    .lx-why__grid { grid-template-columns: 1fr; }
    html[dir="rtl"] .lx-why__media, html[dir="rtl"] .lx-why__content,
    html[dir="ltr"] .lx-why__media, html[dir="ltr"] .lx-why__content {
        order: initial; text-align: center;
    }
    .lx-provider-card { grid-template-columns: 1fr; padding: 48px 32px; }
    html[dir="rtl"] .lx-provider-card__media, html[dir="rtl"] .lx-provider-card__content,
    html[dir="ltr"] .lx-provider-card__media, html[dir="ltr"] .lx-provider-card__content {
        order: initial; text-align: center;
    }
    .lx-provider-card__list { align-items: center; }
    
#apps {
    scroll-margin-top: 100px;
}

.lx-apps__grid { grid-template-columns: 1fr; }
    .lx-app-store-btns { justify-content: center; }
    .lx-footer__grid { grid-template-columns: 1fr 1fr; }
    /* Steps: 2 columns on tablet */
    .lx-steps__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
    .lx-container {
        width: min(calc(100% - 32px), 100%);
    }

    .lx-hero {
        padding-block: 40px 48px;
    }

    .lx-hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 34px;
    }

    .lx-hero__content,
    .lx-hero__media {
        order: initial !important;
    }

    .lx-hero__content {
        text-align: center !important;
        max-width: none;
    }

    .lx-hero__title {
        font-size: clamp(34px, 10vw, 46px);
    }

    .lx-hero__description {
        font-size: 15px;
        line-height: 1.8;
    }

    .lx-hero__actions {
        justify-content: center;
    }
    html[dir="rtl"] .lx-hero__actions, html[dir="ltr"] .lx-hero__actions {
        justify-content: center;
    }

    .lx-hero__actions a {
        width: 100%;
    }

    .lx-hero__media img {
        max-width: 520px;
        border-radius: 20px;
    }
    .lx-hero__trust {
        justify-content: center;
    }

    /* Sections Mobile */

    .lx-hero__media img {
        object-fit: contain;
        object-position: center top;
        max-height: 400px;
    }


    .lx-section { padding-block: 60px; }
    .lx-features { padding-bottom: 60px; }
    .lx-features__grid { grid-template-columns: 1fr; gap: 16px; }
    .lx-steps__grid { grid-template-columns: 1fr; gap: 24px; }
    .lx-step-arrow { display: none; }
    .lx-services__grid { grid-template-columns: 1fr; }
    .lx-why-features { grid-template-columns: 1fr; }
    .lx-footer__grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
    .lx-final-cta__actions a { width: 100%; }
    .lx-app-card {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
    }
    html[dir="rtl"] .lx-app-card .lx-app-card__content,
    html[dir="rtl"] .lx-app-card .lx-app-card__media,
    html[dir="ltr"] .lx-app-card .lx-app-card__content,
    html[dir="ltr"] .lx-app-card .lx-app-card__media {
        order: initial;
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.lx-footer__logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    margin-bottom: 20px;
    box-shadow: none;
}


.lx-footer__logo-wrap img {
    width: 110px;
    height: auto;
    display: block;
}

/* CTA Section */
.lx-cta {
    padding-block: 84px;
    background: linear-gradient(135deg, #082f51 0%, #031f35 100%);
    text-align: center;
}
.lx-cta__title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}
.lx-cta__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.lx-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.lx-cta__actions a {
    height: 50px;
    padding: 0 32px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Prevent overflow from decorative elements only */
.lx-page {
    overflow: clip;
}
