/* =========================================================
   LBS SOFTWARE
   MOBILE APP DEVELOPMENT
   mobile-app-development.css
   ========================================================= */

:root {
    --mad-navy: #071b35;
    --mad-navy-2: #102d50;
    --mad-blue: #087cff;
    --mad-cyan: #18c9e8;
    --mad-purple: #7657ff;
    --mad-pink: #ec4899;
    --mad-orange: #ff9f43;
    --mad-green: #20b86b;
    --mad-text: #18283c;
    --mad-muted: #697b8f;
    --mad-border: #e1e9f2;
    --mad-white: #ffffff;
}


/* =========================================================
   BASE
   ========================================================= */

.lbs-mobile-app-page {
    width: 100%;
    overflow: hidden;
    color: var(--mad-text);
    background: #fff;
}

.lbs-mobile-app-page *,
.lbs-mobile-app-page *::before,
.lbs-mobile-app-page *::after {
    box-sizing: border-box;
}

.lbs-mobile-app-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.lbs-mobile-app-page .section {
    padding: 90px 0;
}

.mobile-app-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--mad-blue);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .16em;
    line-height: 1.4;
    text-transform: uppercase;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.mobile-app-heading {
    max-width: 820px;
    margin: 0 auto 50px;
    text-align: center;
}

.mobile-app-heading h2 {
    margin: 0 0 17px;
    color: var(--mad-navy);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.07;
    letter-spacing: -.045em;
}

.mobile-app-heading h2 span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--mad-blue),
            var(--mad-purple),
            var(--mad-pink)
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mobile-app-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--mad-muted);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.mobile-app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 23px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease,
        background .22s ease;
}

.mobile-app-btn:hover {
    transform: translateY(-2px);
}

.mobile-app-btn-primary {
    border: 1px solid var(--mad-blue);
    background:
        linear-gradient(
            135deg,
            var(--mad-blue),
            var(--mad-purple)
        );
    color: #fff;
    box-shadow:
        0 10px 28px rgba(8,124,255,.22);
}

.mobile-app-btn-primary:hover {
    box-shadow:
        0 16px 36px rgba(8,124,255,.30);
}

.mobile-app-btn-outline {
    border: 1px solid #cbd8e7;
    background: #fff;
    color: var(--mad-navy);
}

.mobile-app-btn-outline:hover {
    border-color: var(--mad-blue);
    color: var(--mad-blue);
}

.mobile-app-btn-white {
    border: 1px solid #fff;
    background: #fff;
    color: var(--mad-purple);
    box-shadow:
        0 10px 30px rgba(0,0,0,.10);
}

.mobile-app-btn-dark {
    border: 1px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.06);
    color: #fff;
}

.mobile-app-btn-dark:hover {
    background: rgba(255,255,255,.12);
}


/* =========================================================
   HERO
   ========================================================= */

.mobile-app-hero {
    position: relative;
    min-height: 690px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border-bottom: 1px solid var(--mad-border);

    background:
        radial-gradient(
            circle at 8% 30%,
            rgba(24,201,232,.14),
            transparent 27%
        ),
        radial-gradient(
            circle at 92% 20%,
            rgba(118,87,255,.16),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f4fbff 0%,
            #fff 48%,
            #faf7ff 100%
        );
}

.mobile-app-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .30;

    background-image:
        linear-gradient(
            rgba(8,124,255,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(8,124,255,.045) 1px,
            transparent 1px
        );

    background-size: 44px 44px;

    mask-image:
        linear-gradient(
            90deg,
            transparent,
            #000 20%,
            #000 80%,
            transparent
        );
}

.mobile-app-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.mobile-app-orb-one {
    width: 430px;
    height: 430px;
    left: -220px;
    bottom: -210px;

    background:
        radial-gradient(
            circle,
            rgba(24,201,232,.18),
            transparent 70%
        );
}

.mobile-app-orb-two {
    width: 480px;
    height: 480px;
    right: -230px;
    top: -250px;

    background:
        radial-gradient(
            circle,
            rgba(118,87,255,.18),
            transparent 70%
        );
}

.mobile-app-hero-inner {
    position: relative;
    z-index: 5;

    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr);

    align-items: center;

    gap: 55px;
}

.mobile-app-hero-content {
    max-width: 590px;
}

.mobile-app-hero-content h1 {
    margin: 0 0 23px;

    color: var(--mad-navy);

    font-size:
        clamp(46px,5.2vw,70px);

    line-height: .96;
    letter-spacing: -.065em;
}

.mobile-app-hero-content h1 span,
.mobile-app-hero-content h1 strong {
    display: block;
}

.mobile-app-hero-content h1 span {
    background:
        linear-gradient(
            90deg,
            var(--mad-blue),
            var(--mad-purple)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.mobile-app-hero-content h1 strong {
    background:
        linear-gradient(
            90deg,
            var(--mad-purple),
            var(--mad-pink)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.mobile-app-hero-content > p {
    max-width: 570px;

    margin: 0 0 28px;

    color: var(--mad-muted);

    font-size: 15px;
    line-height: 1.8;
}

.mobile-app-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mobile-app-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 34px;
}

.mobile-app-trust div {
    display: flex;
    flex-direction: column;
    gap: 4px;

    color: #8090a1;

    font-size: 8px;
    font-weight: 700;
}

.mobile-app-trust strong {
    color: var(--mad-navy);

    font-size: 11px;
    font-weight: 900;
}


/* =========================================================
   HERO MOBILE VISUAL
   ========================================================= */

.mobile-app-hero-visual {
    position: relative;

    min-height: 540px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   PHONE
   ========================================================= */

.mobile-phone {
    position: absolute;

    width: 205px;
    height: 405px;

    padding: 8px;

    border:
        3px solid #172a44;

    border-radius: 31px;

    background:
        linear-gradient(
            145deg,
            #0c203c,
            #1b3150
        );

    box-shadow:
        0 35px 70px rgba(7,27,53,.20);

    transition:
        transform .35s ease;
}

.phone-back {
    z-index: 2;

    transform:
        translateX(-85px)
        rotate(-9deg)
        scale(.92);

    opacity: .94;
}

.phone-front {
    z-index: 6;

    transform:
        translateX(70px)
        rotate(7deg);
}

.mobile-phone:hover {
    transform:
        translateX(65px)
        rotate(2deg)
        translateY(-7px);
}

.phone-back:hover {
    transform:
        translateX(-90px)
        rotate(-5deg)
        scale(.94)
        translateY(-5px);
}

.phone-speaker {
    position: absolute;

    z-index: 10;

    left: 50%;
    top: 11px;

    width: 53px;
    height: 6px;

    transform: translateX(-50%);

    border-radius: 20px;

    background: #172a44;
}

.phone-screen {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 23px;

    background: #f8fbff;
}

.phone-status {
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 12px 15px 0;

    color: #53677d;

    font-size: 7px;
    font-weight: 800;
}


/* =========================================================
   BACK PHONE SCREEN
   ========================================================= */

.phone-gradient {
    position: relative;

    margin: 10px;

    min-height: 175px;

    padding: 20px;

    overflow: hidden;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            var(--mad-blue),
            var(--mad-purple),
            var(--mad-pink)
        );

    color: #fff;

    box-shadow:
        0 13px 28px rgba(118,87,255,.20);
}

.phone-gradient::after {
    content: "";

    position: absolute;

    right: -35px;
    bottom: -50px;

    width: 140px;
    height: 140px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.10);
}

.phone-gradient small {
    position: relative;
    z-index: 2;

    font-size: 6px;
    font-weight: 800;

    letter-spacing: .10em;
}

.phone-gradient strong {
    position: relative;
    z-index: 2;

    display: block;

    margin-top: 14px;

    font-size: 20px;

    line-height: 1.02;
}

.phone-chart {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 13px;

    height: 38px;

    display: flex;

    align-items: flex-end;

    gap: 5px;
}

.phone-chart span {
    flex: 1;

    border-radius:
        3px 3px 0 0;

    background:
        rgba(255,255,255,.75);
}

.phone-cards {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 7px;

    margin: 11px;
}

.phone-cards div {
    padding: 12px 9px;

    border:
        1px solid #e2eaf2;

    border-radius: 10px;

    background: #fff;
}

.phone-cards span {
    display: block;

    margin-bottom: 5px;

    color: #8a99a8;

    font-size: 5px;
    font-weight: 800;
}

.phone-cards strong {
    color: var(--mad-navy);

    font-size: 13px;
}


/* =========================================================
   FRONT PHONE
   ========================================================= */

.app-profile {
    margin: 14px 13px 11px;

    padding: 13px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            #edf7ff,
            #f3efff
        );
}

.app-avatar {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    margin-bottom: 12px;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--mad-blue),
            var(--mad-purple)
        );

    color: #fff;

    font-size: 8px;
    font-weight: 900;
}

.app-profile small {
    display: block;

    margin-bottom: 4px;

    color: #7b8da1;

    font-size: 5px;
    font-weight: 800;
}

.app-profile strong {
    color: var(--mad-navy);

    font-size: 14px;
}

.app-action-grid {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 7px;

    margin: 11px;
}

.app-action-grid div {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    min-height: 66px;

    border:
        1px solid #e2eaf2;

    border-radius: 11px;

    background: #fff;
}

.app-action-grid b {
    margin-bottom: 7px;

    color: var(--mad-purple);

    font-size: 16px;
}

.app-action-grid span {
    color: #7d8d9d;

    font-size: 5px;
    font-weight: 800;
}

.app-progress {
    margin: 12px;
    padding: 11px;

    border:
        1px solid #e2eaf2;

    border-radius: 11px;

    background: #fff;
}

.app-progress > div:first-child {
    display: flex;

    justify-content: space-between;

    margin-bottom: 9px;
}

.app-progress span {
    color: #7d8d9d;

    font-size: 5px;
    font-weight: 800;
}

.app-progress strong {
    color: var(--mad-green);

    font-size: 8px;
}

.progress-track {
    width: 100%;
    height: 6px;

    overflow: hidden;

    border-radius: 20px;

    background: #edf1f5;
}

.progress-track i {
    display: block;

    width: 86%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--mad-blue),
            var(--mad-purple)
        );
}

.phone-nav {
    position: absolute;

    left: 9px;
    right: 9px;
    bottom: 8px;

    height: 38px;

    display: flex;

    align-items: center;
    justify-content: space-around;

    border:
        1px solid #e1e9f2;

    border-radius: 11px;

    background:
        rgba(255,255,255,.96);

    box-shadow:
        0 -4px 15px rgba(7,27,53,.04);
}

.phone-nav span {
    color: #7d8d9d;

    font-size: 12px;
}

.phone-nav span:first-child {
    color: var(--mad-blue);
}


/* =========================================================
   FLOATING CARDS
   ========================================================= */

.mobile-floating-card {
    position: absolute;

    z-index: 15;

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 175px;

    padding: 12px 14px;

    border:
        1px solid rgba(221,231,240,.95);

    border-radius: 12px;

    background:
        rgba(255,255,255,.97);

    box-shadow:
        0 16px 38px rgba(7,27,53,.10);

    animation:
        mobileCardFloat 4.5s ease-in-out infinite;
}

.mobile-floating-card small {
    display: block;

    margin-bottom: 3px;

    color: #8b9aaa;

    font-size: 6px;
    font-weight: 800;
}

.mobile-floating-card strong {
    color: var(--mad-navy);

    font-size: 9px;
    font-weight: 900;
}

.mobile-floating-icon {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border-radius: 9px;

    font-size: 6px;
    font-weight: 900;
}

.mobile-floating-icon.blue {
    background: #eaf5ff;
    color: var(--mad-blue);
}

.mobile-floating-icon.purple {
    background: #f0ebff;
    color: var(--mad-purple);
}

.mobile-floating-icon.green {
    background: #e9faf1;
    color: var(--mad-green);
}

.mobile-card-one {
    left: 0;
    top: 75px;
}

.mobile-card-two {
    right: -10px;
    top: 165px;

    animation-delay: .8s;
}

.mobile-card-three {
    right: 5px;
    bottom: 45px;

    animation-delay: 1.5s;
}

@keyframes mobileCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


/* =========================================================
   INTRO HIGHLIGHTS
   ========================================================= */

.mobile-app-intro {
    background: #fff;
}

.mobile-app-highlight-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 16px;
}

.mobile-app-highlight-grid article {
    min-height: 225px;

    padding: 25px;

    border:
        1px solid var(--mad-border);

    border-radius: 15px;

    background: #fff;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.mobile-app-highlight-grid article:hover {
    transform: translateY(-7px);

    border-color: #d1dfed;

    box-shadow:
        0 20px 40px rgba(7,27,53,.08);
}

.mobile-highlight-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    border-radius: 12px;

    font-size: 7px;
    font-weight: 900;
}

.mobile-highlight-icon.blue {
    background: #eaf5ff;
    color: var(--mad-blue);
}

.mobile-highlight-icon.purple {
    background: #f0ebff;
    color: var(--mad-purple);
}

.mobile-highlight-icon.orange {
    background: #fff1df;
    color: #df8a2a;
}

.mobile-highlight-icon.green {
    background: #e9faf1;
    color: var(--mad-green);
}

.mobile-app-highlight-grid h3 {
    margin: 0 0 9px;

    color: var(--mad-navy);

    font-size: 15px;
}

.mobile-app-highlight-grid p {
    margin: 0;

    color: var(--mad-muted);

    font-size: 10px;

    line-height: 1.75;
}


/* =========================================================
   SOLUTIONS
   ========================================================= */

.mobile-app-solutions {
    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #fff
        );

    border-top:
        1px solid #edf2f7;
}

.mobile-solution-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 17px;
}

.mobile-solution-card {
    position: relative;

    min-height: 325px;

    padding: 27px;

    overflow: hidden;

    border:
        1px solid var(--mad-border);

    border-top-width: 3px;

    border-radius: 17px;

    background: #fff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.mobile-solution-card::after {
    content: "";

    position: absolute;

    right: -65px;
    bottom: -75px;

    width: 175px;
    height: 175px;

    border-radius: 50%;

    opacity: .55;
}

.mobile-solution-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 23px 46px rgba(7,27,53,.09);
}

.mobile-solution-card.blue-card {
    border-top-color: var(--mad-blue);
}

.mobile-solution-card.blue-card::after {
    background: rgba(8,124,255,.07);
}

.mobile-solution-card.purple-card {
    border-top-color: var(--mad-purple);
}

.mobile-solution-card.purple-card::after {
    background: rgba(118,87,255,.07);
}

.mobile-solution-card.orange-card {
    border-top-color: var(--mad-orange);
}

.mobile-solution-card.orange-card::after {
    background: rgba(255,159,67,.08);
}

.mobile-solution-card.green-card {
    border-top-color: var(--mad-green);
}

.mobile-solution-card.green-card::after {
    background: rgba(32,184,107,.07);
}

.mobile-solution-card.pink-card {
    border-top-color: var(--mad-pink);
}

.mobile-solution-card.pink-card::after {
    background: rgba(236,72,153,.07);
}

.mobile-solution-card.cyan-card {
    border-top-color: var(--mad-cyan);
}

.mobile-solution-card.cyan-card::after {
    background: rgba(24,201,232,.07);
}

.mobile-solution-number {
    position: absolute;

    top: 22px;
    right: 25px;

    color: #b7c3cf;

    font-size: 8px;
    font-weight: 900;
}

.mobile-solution-icon {
    position: relative;
    z-index: 2;

    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f0ebff
        );

    color: var(--mad-purple);

    font-size: 6px;
    font-weight: 900;
}

.mobile-solution-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 10px;

    color: var(--mad-navy);

    font-size: 18px;
}

.mobile-solution-card > p {
    position: relative;
    z-index: 2;

    margin: 0 0 17px;

    color: var(--mad-muted);

    font-size: 10px;

    line-height: 1.75;
}

.mobile-solution-card ul {
    position: relative;
    z-index: 2;

    margin: 0;
    padding: 0;

    list-style: none;
}

.mobile-solution-card li {
    position: relative;

    padding-left: 15px;

    margin-bottom: 7px;

    color: #64778b;

    font-size: 8px;
    font-weight: 700;
}

.mobile-solution-card li::before {
    content: "?";

    position: absolute;
    left: 0;

    color: var(--mad-green);

    font-weight: 900;
}


/* =========================================================
   ECOSYSTEM
   ========================================================= */

.mobile-app-ecosystem {
    background: #fff;
}

.mobile-ecosystem {
    position: relative;

    max-width: 950px;
    min-height: 450px;

    margin: auto;

    border:
        1px solid #e5edf5;

    border-radius: 25px;

    background:
        radial-gradient(
            circle at center,
            rgba(118,87,255,.08),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #f8fbff,
            #fff,
            #fbf9ff
        );

    box-shadow:
        0 25px 60px rgba(7,27,53,.07);
}

.mobile-ecosystem::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 570px;
    height: 2px;

    transform: translate(-50%,-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(8,124,255,.22),
            rgba(118,87,255,.24),
            transparent
        );
}

.mobile-ecosystem::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 2px;
    height: 300px;

    transform: translate(-50%,-50%);

    background:
        linear-gradient(
            transparent,
            rgba(118,87,255,.24),
            transparent
        );
}

.ecosystem-phone {
    position: absolute;

    left: 50%;
    top: 50%;

    z-index: 5;

    width: 125px;
    height: 235px;

    padding: 6px;

    transform:
        translate(-50%,-50%)
        rotate(5deg);

    border:
        3px solid var(--mad-navy);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #0c203c,
            #233957
        );

    box-shadow:
        0 20px 45px rgba(7,27,53,.17);
}

.ecosystem-phone-screen {
    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #eef8ff,
            #f4efff
        );

    text-align: center;
}

.ecosystem-phone-screen strong {
    color: var(--mad-purple);

    font-size: 29px;
    font-weight: 950;
}

.ecosystem-phone-screen span {
    margin-top: 5px;

    color: #718397;

    font-size: 6px;
    font-weight: 900;

    letter-spacing: .08em;
}

.ecosystem-node {
    position: absolute;

    z-index: 8;

    min-width: 120px;

    padding: 13px 17px;

    border:
        1px solid #dfe8f1;

    border-radius: 11px;

    background: #fff;

    color: var(--mad-navy);

    text-align: center;

    font-size: 8px;
    font-weight: 900;

    box-shadow:
        0 12px 28px rgba(7,27,53,.07);

    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.ecosystem-node:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 34px rgba(7,27,53,.10);
}

.node-user {
    left: 80px;
    top: 75px;

    border-left:
        3px solid var(--mad-blue);
}

.node-partner {
    right: 80px;
    top: 75px;

    border-left:
        3px solid var(--mad-purple);
}

.node-team {
    left: 80px;
    bottom: 75px;

    border-left:
        3px solid var(--mad-green);
}

.node-admin {
    right: 80px;
    bottom: 75px;

    border-left:
        3px solid var(--mad-pink);
}

.node-api {
    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    border-left:
        3px solid var(--mad-cyan);
}

.node-cloud {
    left: 50%;
    top: 20px;

    transform: translateX(-50%);

    border-left:
        3px solid var(--mad-orange);
}


/* =========================================================
   FEATURES
   ========================================================= */

.mobile-app-features {
    background:
        linear-gradient(
            135deg,
            #f7fbff,
            #fbf9ff
        );
}

.mobile-feature-grid {
    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    align-items: center;

    gap: 80px;
}

.mobile-feature-content h2 {
    margin: 0 0 18px;

    color: var(--mad-navy);

    font-size:
        clamp(35px,4vw,51px);

    line-height: 1.08;

    letter-spacing: -.045em;
}

.mobile-feature-content h2 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--mad-blue),
            var(--mad-purple)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.mobile-feature-content > p {
    max-width: 510px;

    margin: 0 0 28px;

    color: var(--mad-muted);

    font-size: 13px;

    line-height: 1.8;
}

.mobile-feature-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.mobile-feature-list > div {
    display: grid;

    grid-template-columns:
        42px
        1fr;

    align-items: center;

    gap: 15px;

    padding: 14px;

    border:
        1px solid var(--mad-border);

    border-radius: 11px;

    background: #fff;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.mobile-feature-list > div:hover {
    transform: translateX(6px);

    border-color: #cbdced;

    box-shadow:
        0 12px 28px rgba(7,27,53,.06);
}

.mobile-feature-list > div > span {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f0ebff
        );

    color: var(--mad-blue);

    font-size: 7px;
    font-weight: 900;
}

.mobile-feature-list strong {
    display: block;

    margin-bottom: 3px;

    color: var(--mad-navy);

    font-size: 12px;
}

.mobile-feature-list p {
    margin: 0;

    color: var(--mad-muted);

    font-size: 8px;

    line-height: 1.6;
}


/* =========================================================
   PROCESS
   ========================================================= */

.mobile-app-process {
    background: #fff;
}

.mobile-process {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;
}

.mobile-process-item {
    width: 190px;
    min-height: 150px;

    padding: 18px;

    border:
        1px solid var(--mad-border);

    border-radius: 14px;

    background: #fff;

    box-shadow:
        0 10px 25px rgba(7,27,53,.05);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.mobile-process-item:hover {
    transform: translateY(-6px);

    border-color: #cadced;

    box-shadow:
        0 17px 34px rgba(7,27,53,.08);
}

.mobile-process-item > div {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    margin-bottom: 12px;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            var(--mad-blue),
            var(--mad-purple)
        );

    color: #fff;

    font-size: 8px;
    font-weight: 900;
}

.mobile-process-item h3 {
    margin: 0 0 5px;

    color: var(--mad-navy);

    font-size: 13px;
}

.mobile-process-item p {
    margin: 0;

    color: var(--mad-muted);

    font-size: 8px;

    line-height: 1.65;
}

.mobile-process > i {
    color: var(--mad-blue);

    font-size: 20px;

    font-style: normal;
}


/* =========================================================
   TECHNOLOGY
   ========================================================= */

.mobile-app-technology {
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #071b35,
            #182952,
            #352060
        );

    color: #fff;
}

.mobile-app-technology .mobile-app-eyebrow {
    color: #65dcff;
}

.mobile-app-technology
.mobile-app-heading h2 {
    color: #fff;
}

.mobile-app-technology
.mobile-app-heading h2 span {
    background:
        linear-gradient(
            90deg,
            #65dcff,
            #a795ff,
            #ff96c9
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.mobile-app-technology
.mobile-app-heading p {
    color: #bdccdc;
}

.mobile-tech-pills {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    max-width: 900px;

    margin: auto;
}

.mobile-tech-pills span {
    padding: 12px 18px;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 50px;

    background:
        rgba(255,255,255,.055);

    color: #e3ebf5;

    font-size: 9px;
    font-weight: 800;

    backdrop-filter: blur(10px);

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.mobile-tech-pills span:hover {
    transform: translateY(-3px);

    border-color:
        rgba(101,220,255,.35);

    background:
        rgba(101,220,255,.10);
}


/* =========================================================
   BENEFITS
   ========================================================= */

.mobile-app-benefits {
    background: #fff;
}

.mobile-benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;
}

.mobile-benefit-grid article {
    min-height: 185px;

    padding: 25px;

    border:
        1px solid var(--mad-border);

    border-radius: 14px;

    background: #fff;

    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.mobile-benefit-grid article:hover {
    transform: translateY(-6px);

    box-shadow:
        0 17px 34px rgba(7,27,53,.07);
}

.mobile-benefit-grid article:nth-child(1) {
    border-top:
        3px solid var(--mad-blue);
}

.mobile-benefit-grid article:nth-child(2) {
    border-top:
        3px solid var(--mad-purple);
}

.mobile-benefit-grid article:nth-child(3) {
    border-top:
        3px solid var(--mad-pink);
}

.mobile-benefit-grid article:nth-child(4) {
    border-top:
        3px solid var(--mad-green);
}

.mobile-benefit-grid strong {
    display: block;

    margin-bottom: 10px;

    color: var(--mad-navy);

    font-size: 14px;
}

.mobile-benefit-grid p {
    margin: 0;

    color: var(--mad-muted);

    font-size: 9px;

    line-height: 1.75;
}


/* =========================================================
   WHY LBS
   ========================================================= */

.mobile-app-why {
    padding: 95px 0;

    background:
        linear-gradient(
            135deg,
            #f7fbff,
            #faf8ff
        );

    border-top:
        1px solid #edf2f7;
}

.mobile-why-grid {
    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    align-items: center;

    gap: 80px;
}

.mobile-why-grid h2 {
    margin: 0 0 18px;

    color: var(--mad-navy);

    font-size:
        clamp(35px,4vw,52px);

    line-height: 1.08;

    letter-spacing: -.045em;
}

.mobile-why-grid h2 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--mad-blue),
            var(--mad-purple)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.mobile-why-grid > div:first-child > p {
    max-width: 520px;

    margin: 0;

    color: var(--mad-muted);

    font-size: 13px;

    line-height: 1.8;
}

.mobile-why-points {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.mobile-why-points > div {
    display: grid;

    grid-template-columns:
        44px
        1fr;

    align-items: center;

    gap: 14px;

    padding: 14px;

    border:
        1px solid var(--mad-border);

    border-radius: 10px;

    background: #fff;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.mobile-why-points > div:hover {
    transform: translateX(6px);

    border-color: #cbdced;

    box-shadow:
        0 10px 25px rgba(7,27,53,.06);
}

.mobile-why-points span {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f0ebff
        );

    color: var(--mad-purple);

    font-size: 7px;
    font-weight: 900;
}

.mobile-why-points strong {
    color: var(--mad-navy);

    font-size: 11px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.mobile-app-final {
    position: relative;

    padding: 105px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(24,201,232,.15),
            transparent 25%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(236,72,153,.16),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #071b35,
            #1c2857,
            #352060
        );

    text-align: center;
}

.mobile-final-orb {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 520px;
    height: 520px;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(118,87,255,.15),
            transparent 68%
        );
}

.mobile-final-content {
    position: relative;
    z-index: 2;

    max-width: 820px;

    margin: auto;
}

.mobile-final-content > span {
    color: #65dcff;

    font-size: 10px;
    font-weight: 850;

    letter-spacing: .16em;
}

.mobile-final-content h2 {
    margin: 15px 0 18px;

    color: #fff;

    font-size:
        clamp(42px,5vw,64px);

    line-height: 1;

    letter-spacing: -.05em;
}

.mobile-final-content h2 strong {
    display: block;

    background:
        linear-gradient(
            90deg,
            #65dcff,
            #a795ff,
            #ff96c9
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.mobile-final-content > p {
    max-width: 680px;

    margin: 0 auto 30px;

    color: #c2d0e0;

    font-size: 14px;

    line-height: 1.8;
}

.mobile-final-actions {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .mobile-app-highlight-grid,
    .mobile-benefit-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .mobile-solution-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 780px) {

    .lbs-mobile-app-page .container {
        width: min(
            calc(100% - 30px),
            620px
        );
    }

    .lbs-mobile-app-page .section {
        padding: 65px 0;
    }


    /* Hero */

    .mobile-app-hero {
        min-height: auto;

        padding: 65px 0;
    }

    .mobile-app-hero-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .mobile-app-hero-content {
        max-width: 620px;

        margin: auto;

        text-align: center;
    }

    .mobile-app-hero-content h1 {
        font-size:
            clamp(42px,9.5vw,60px);
    }

    .mobile-app-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .mobile-app-hero-actions {
        justify-content: center;
    }

    .mobile-app-trust {
        justify-content: center;
    }


    /* Visual */

    .mobile-app-hero-visual {
        min-height: 500px;

        max-width: 560px;

        width: 100%;

        margin: auto;
    }

    .mobile-card-one {
        left: 0;
    }

    .mobile-card-two {
        right: 0;
    }

    .mobile-card-three {
        right: 0;
    }


    /* Ecosystem */

    .mobile-ecosystem {
        min-height: 570px;
    }

    .node-user {
        left: 20px;
        top: 55px;
    }

    .node-partner {
        right: 20px;
        top: 55px;
    }

    .node-team {
        left: 20px;
        bottom: 80px;
    }

    .node-admin {
        right: 20px;
        bottom: 80px;
    }

    .mobile-ecosystem::before {
        width: 330px;
    }

    .mobile-ecosystem::after {
        height: 390px;
    }


    /* Feature */

    .mobile-feature-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .mobile-feature-content {
        text-align: center;
    }

    .mobile-feature-content > p {
        margin-left: auto;
        margin-right: auto;
    }


    /* Why */

    .mobile-why-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .mobile-why-grid > div:first-child {
        text-align: center;
    }

    .mobile-why-grid > div:first-child > p {
        margin-left: auto;
        margin-right: auto;
    }


    /* Process */

    .mobile-process {
        gap: 9px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 500px) {

    .lbs-mobile-app-page .container {
        width: calc(100% - 28px);
    }

    .lbs-mobile-app-page .section {
        padding: 55px 0;
    }


    /* Hero */

    .mobile-app-hero {
        padding: 50px 0;
    }

    .mobile-app-hero-content h1 {
        font-size: 39px;
    }

    .mobile-app-hero-actions {
        flex-direction: column;
    }

    .mobile-app-btn {
        width: 100%;
    }

    .mobile-app-trust {
        gap: 14px;
    }


    /* Phones */

    .mobile-app-hero-visual {
        min-height: 420px;
    }

    .mobile-phone {
        width: 158px;
        height: 315px;
    }

    .phone-front {
        transform:
            translateX(42px)
            rotate(5deg);
    }

    .phone-back {
        transform:
            translateX(-48px)
            rotate(-7deg)
            scale(.91);
    }

    .phone-gradient {
        min-height: 135px;

        padding: 14px;
    }

    .phone-gradient strong {
        font-size: 15px;
    }

    .phone-chart {
        left: 14px;
        right: 14px;
        bottom: 9px;
    }

    .app-profile {
        margin: 10px 9px 8px;

        padding: 10px;
    }

    .app-action-grid,
    .phone-cards {
        margin: 8px;
    }

    .app-action-grid div {
        min-height: 53px;
    }

    .app-progress {
        margin: 8px;
    }

    .phone-nav {
        height: 30px;
    }

    .phone-nav span {
        font-size: 9px;
    }


    /* Floating cards */

    .mobile-floating-card {
        min-width: 125px;

        padding: 9px;

        gap: 7px;
    }

    .mobile-floating-icon {
        width: 29px;
        height: 29px;
    }

    .mobile-card-one {
        left: -3px;
        top: 40px;
    }

    .mobile-card-two {
        right: -3px;
        top: 95px;
    }

    .mobile-card-three {
        right: -3px;
        bottom: 30px;
    }


    /* Grids */

    .mobile-app-highlight-grid,
    .mobile-solution-grid,
    .mobile-benefit-grid {
        grid-template-columns: 1fr;
    }


    /* Cards */

    .mobile-app-highlight-grid article {
        min-height: auto;
    }

    .mobile-solution-card {
        min-height: auto;

        padding: 23px;
    }


    /* Ecosystem */

    .mobile-ecosystem {
        min-height: 530px;

        border-radius: 18px;
    }

    .ecosystem-phone {
        width: 105px;
        height: 200px;
    }

    .ecosystem-phone-screen strong {
        font-size: 24px;
    }

    .ecosystem-node {
        min-width: 100px;

        padding: 10px;

        font-size: 7px;
    }

    .node-user {
        left: 8px;
        top: 35px;
    }

    .node-partner {
        right: 8px;
        top: 35px;
    }

    .node-team {
        left: 8px;
        bottom: 70px;
    }

    .node-admin {
        right: 8px;
        bottom: 70px;
    }

    .node-api {
        bottom: 17px;
    }

    .node-cloud {
        top: 17px;
    }


    /* Process */

    .mobile-process {
        flex-direction: column;
    }

    .mobile-process-item {
        width: min(100%, 300px);
    }

    .mobile-process > i {
        transform: rotate(90deg);
    }


    /* Technology */

    .mobile-app-technology {
        padding: 70px 0;
    }

    .mobile-tech-pills span {
        padding: 10px 14px;
    }


    /* CTA */

    .mobile-app-final {
        padding: 75px 0;
    }

    .mobile-final-content h2 {
        font-size: 37px;
    }

    .mobile-final-actions {
        flex-direction: column;
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.lbs-mobile-app-page a:focus-visible,
.lbs-mobile-app-page button:focus-visible {
    outline:
        3px solid rgba(8,124,255,.25);

    outline-offset: 3px;
}


/* =========================================================
   JS REVEAL
   ========================================================= */

.mobile-app-reveal {
    opacity: 0;

    transform: translateY(24px);

    transition:
        opacity .65s ease,
        transform .65s ease;

    transition-delay:
        var(--mad-delay, 0ms);
}

.mobile-app-visible {
    opacity: 1;

    transform: translateY(0);
}

.mobile-solution-active {
    transform:
        translateY(-9px) !important;

    box-shadow:
        0 25px 48px rgba(8,124,255,.12) !important;
}

.mobile-feature-active {
    transform:
        translateX(6px) !important;

    border-color:
        rgba(8,124,255,.25) !important;
}

.mobile-process-active {
    transform:
        translateY(-7px) !important;

    border-color:
        var(--mad-blue) !important;

    box-shadow:
        0 17px 35px rgba(8,124,255,.13) !important;
}

.mobile-tech-selected {
    transform:
        translateY(-3px) !important;

    border-color:
        rgba(101,220,255,.50) !important;

    background:
        rgba(101,220,255,.12) !important;
}

.mobile-benefit-active {
    transform:
        translateY(-7px) !important;

    box-shadow:
        0 19px 38px rgba(7,27,53,.09) !important;
}

.mobile-why-selected {
    transform:
        translateX(6px);

    border-color:
        rgba(8,124,255,.28) !important;

    box-shadow:
        0 12px 27px rgba(8,124,255,.07);
}

.mobile-button-clicked {
    transform: scale(.97) !important;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .mobile-app-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .mobile-floating-card,
    .phone-chart span {
        animation: none !important;
    }

    .mobile-solution-active,
    .mobile-feature-active,
    .mobile-process-active,
    .mobile-tech-selected,
    .mobile-benefit-active,
    .mobile-why-selected {
        transform: none !important;
    }

}