/* =========================================================
   LBS SOFTWARE
   REAL ESTATE SOLUTIONS
   real-estate.css
   ========================================================= */

:root {
    --re-navy: #071b35;
    --re-navy-2: #102d50;
    --re-blue: #087cff;
    --re-cyan: #18c9e8;
    --re-purple: #7657ff;
    --re-pink: #ec4899;
    --re-orange: #ff9f43;
    --re-green: #20b86b;
    --re-text: #18283c;
    --re-muted: #697b8f;
    --re-border: #e1e9f2;
    --re-white: #ffffff;
}


/* =========================================================
   BASE
   ========================================================= */

.lbs-real-estate-page {
    width: 100%;
    overflow: hidden;
    color: var(--re-text);
    background: #fff;
}

.lbs-real-estate-page *,
.lbs-real-estate-page *::before,
.lbs-real-estate-page *::after {
    box-sizing: border-box;
}

.lbs-real-estate-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.lbs-real-estate-page .section {
    padding: 90px 0;
}

.real-estate-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--re-blue);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .16em;
    line-height: 1.4;
    text-transform: uppercase;
}


/* =========================================================
   COMMON HEADING
   ========================================================= */

.real-estate-heading {
    max-width: 820px;
    margin: 0 auto 50px;
    text-align: center;
}

.real-estate-heading h2 {
    margin: 0 0 17px;
    color: var(--re-navy);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.07;
    letter-spacing: -.045em;
}

.real-estate-heading h2 span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--re-blue),
            var(--re-purple),
            var(--re-pink)
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.real-estate-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--re-muted);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.real-estate-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;
}

.real-estate-btn:hover {
    transform: translateY(-2px);
}

.real-estate-btn-primary {
    border: 1px solid var(--re-blue);
    background:
        linear-gradient(
            135deg,
            var(--re-blue),
            var(--re-purple)
        );
    color: #fff;
    box-shadow:
        0 10px 28px rgba(8,124,255,.22);
}

.real-estate-btn-primary:hover {
    box-shadow:
        0 16px 36px rgba(8,124,255,.30);
}

.real-estate-btn-outline {
    border: 1px solid #cbd8e7;
    background: #fff;
    color: var(--re-navy);
}

.real-estate-btn-outline:hover {
    border-color: var(--re-blue);
    color: var(--re-blue);
}

.real-estate-btn-white {
    border: 1px solid #fff;
    background: #fff;
    color: var(--re-purple);
    box-shadow:
        0 10px 30px rgba(0,0,0,.10);
}

.real-estate-btn-dark {
    border: 1px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.06);
    color: #fff;
}

.real-estate-btn-dark:hover {
    background: rgba(255,255,255,.12);
}


/* =========================================================
   HERO
   ========================================================= */

.real-estate-hero {
    position: relative;
    min-height: 700px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border-bottom: 1px solid var(--re-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%
        );
}

.real-estate-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
        );
}

.real-estate-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.real-estate-orb-one {
    width: 440px;
    height: 440px;
    left: -220px;
    bottom: -220px;

    background:
        radial-gradient(
            circle,
            rgba(24,201,232,.18),
            transparent 70%
        );
}

.real-estate-orb-two {
    width: 500px;
    height: 500px;
    right: -250px;
    top: -250px;

    background:
        radial-gradient(
            circle,
            rgba(118,87,255,.18),
            transparent 70%
        );
}

.real-estate-hero-inner {
    position: relative;
    z-index: 5;

    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr);

    align-items: center;

    gap: 45px;
}

.real-estate-hero-content {
    max-width: 590px;
}

.real-estate-hero-content h1 {
    margin: 0 0 23px;

    color: var(--re-navy);

    font-size:
        clamp(44px,5vw,68px);

    line-height: .98;
    letter-spacing: -.065em;
}

.real-estate-hero-content h1 span,
.real-estate-hero-content h1 strong {
    display: block;
}

.real-estate-hero-content h1 span {
    background:
        linear-gradient(
            90deg,
            var(--re-blue),
            var(--re-purple)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.real-estate-hero-content h1 strong {
    background:
        linear-gradient(
            90deg,
            var(--re-purple),
            var(--re-pink)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.real-estate-hero-content > p {
    max-width: 570px;

    margin: 0 0 28px;

    color: var(--re-muted);

    font-size: 15px;
    line-height: 1.8;
}

.real-estate-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.real-estate-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 34px;
}

.real-estate-trust div {
    display: flex;
    flex-direction: column;
    gap: 4px;

    color: #8090a1;

    font-size: 8px;
    font-weight: 700;
}

.real-estate-trust strong {
    color: var(--re-navy);

    font-size: 11px;
    font-weight: 900;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.real-estate-hero-visual {
    position: relative;

    min-height: 550px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   BUILDINGS
   ========================================================= */

.real-estate-building {
    position: absolute;

    display: flex;
    flex-direction: column;

    padding: 12px;

    border-radius: 15px 15px 5px 5px;

    background:
        linear-gradient(
            145deg,
            #102d50,
            #183e68
        );

    box-shadow:
        0 25px 55px rgba(7,27,53,.17);
}

.building-back {
    width: 185px;
    height: 350px;

    left: 32px;
    bottom: 65px;

    transform:
        perspective(700px)
        rotateY(13deg)
        rotateZ(-3deg);

    opacity: .88;
}

.building-front {
    width: 220px;
    height: 410px;

    left: 135px;
    bottom: 38px;

    z-index: 3;

    transform:
        perspective(700px)
        rotateY(-9deg)
        rotateZ(2deg);

    background:
        linear-gradient(
            145deg,
            #071b35,
            #284a75
        );
}

.building-top {
    padding: 9px 5px;

    margin-bottom: 12px;

    color: #fff;

    text-align: center;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: .10em;
}

.building-windows {
    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    gap: 8px;

    padding: 7px;
}

.building-back .building-windows {
    grid-template-columns:
        repeat(4,1fr);
}

.building-windows i {
    display: block;

    height: 31px;

    border-radius: 4px;

    background:
        linear-gradient(
            135deg,
            rgba(101,220,255,.85),
            rgba(118,87,255,.75)
        );

    box-shadow:
        inset 0 0 12px rgba(255,255,255,.12);
}

.building-back .building-windows i {
    height: 25px;
}

.building-entrance {
    margin:
        auto 35px 10px;

    padding: 15px 5px;

    border-radius:
        9px 9px 3px 3px;

    background:
        linear-gradient(
            135deg,
            var(--re-blue),
            var(--re-purple)
        );

    color: #fff;

    text-align: center;

    font-size: 7px;
    font-weight: 900;
}


/* =========================================================
   PROPERTY DASHBOARD
   ========================================================= */

.real-estate-dashboard {
    position: absolute;

    z-index: 10;

    right: 0;
    top: 62px;

    width: 330px;

    padding: 20px;

    border:
        1px solid rgba(221,231,240,.95);

    border-radius: 17px;

    background:
        rgba(255,255,255,.96);

    box-shadow:
        0 25px 60px rgba(7,27,53,.13);

    backdrop-filter: blur(14px);

    transform:
        rotate(-2deg);

    transition:
        transform .3s ease;
}

.real-dashboard-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 17px;
}

.real-dashboard-header small {
    display: block;

    margin-bottom: 5px;

    color: #8292a4;

    font-size: 6px;
    font-weight: 900;

    letter-spacing: .08em;
}

.real-dashboard-header strong {
    color: var(--re-navy);

    font-size: 13px;
}

.real-dashboard-header > span {
    padding: 6px 8px;

    border-radius: 20px;

    background: #e9faf1;

    color: var(--re-green);

    font-size: 6px;
    font-weight: 900;
}

.real-dashboard-stats {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 7px;

    margin-bottom: 15px;
}

.real-dashboard-stats div {
    padding: 10px;

    border:
        1px solid #e5edf5;

    border-radius: 9px;

    background: #fbfdff;
}

.real-dashboard-stats small {
    display: block;

    margin-bottom: 5px;

    color: #8a99a8;

    font-size: 5px;
    font-weight: 900;
}

.real-dashboard-stats strong {
    color: var(--re-navy);

    font-size: 13px;
}

.real-dashboard-chart {
    padding: 13px;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #f1f8ff,
            #f6f1ff
        );
}

.chart-label {
    display: flex;

    justify-content: space-between;

    margin-bottom: 12px;
}

.chart-label span {
    color: #7d8d9d;

    font-size: 6px;
    font-weight: 900;
}

.chart-label strong {
    color: var(--re-green);

    font-size: 8px;
}

.chart-bars {
    height: 105px;

    display: flex;

    align-items: flex-end;

    gap: 7px;
}

.chart-bars i {
    flex: 1;

    min-height: 12px;

    border-radius:
        4px 4px 1px 1px;

    background:
        linear-gradient(
            180deg,
            var(--re-purple),
            var(--re-blue)
        );
}

.real-dashboard-footer {
    display: flex;

    justify-content: space-between;

    margin-top: 13px;

    color: #8191a2;

    font-size: 6px;
    font-weight: 800;
}

.real-dashboard-footer span:first-child {
    color: var(--re-green);
}


/* =========================================================
   FLOATING CARDS
   ========================================================= */

.real-floating-card {
    position: absolute;

    z-index: 20;

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 165px;

    padding: 11px 13px;

    border:
        1px solid rgba(221,231,240,.95);

    border-radius: 12px;

    background:
        rgba(255,255,255,.97);

    box-shadow:
        0 15px 35px rgba(7,27,53,.10);

    animation:
        realCardFloat 4.5s ease-in-out infinite;
}

.real-floating-card small {
    display: block;

    margin-bottom: 3px;

    color: #8b9aaa;

    font-size: 6px;
    font-weight: 800;
}

.real-floating-card strong {
    color: var(--re-navy);

    font-size: 9px;
    font-weight: 900;
}

.real-floating-icon {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border-radius: 9px;

    font-size: 6px;
    font-weight: 900;
}

.real-floating-icon.blue {
    background: #eaf5ff;
    color: var(--re-blue);
}

.real-floating-icon.purple {
    background: #f0ebff;
    color: var(--re-purple);
}

.real-floating-icon.green {
    background: #e9faf1;
    color: var(--re-green);
}

.real-card-property {
    left: 0;
    top: 95px;
}

.real-card-lead {
    right: -15px;
    top: 205px;

    animation-delay: .8s;
}

.real-card-sale {
    right: 10px;
    bottom: 48px;

    animation-delay: 1.5s;
}

@keyframes realCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


/* =========================================================
   INTRO
   ========================================================= */

.real-estate-intro {
    background: #fff;
}

.real-highlight-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 16px;
}

.real-highlight-grid article {
    min-height: 225px;

    padding: 25px;

    border:
        1px solid var(--re-border);

    border-radius: 15px;

    background: #fff;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.real-highlight-grid article:hover {
    transform: translateY(-7px);

    border-color: #d1dfed;

    box-shadow:
        0 20px 40px rgba(7,27,53,.08);
}

.real-highlight-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    border-radius: 12px;

    font-size: 7px;
    font-weight: 900;
}

.real-highlight-icon.blue {
    background: #eaf5ff;
    color: var(--re-blue);
}

.real-highlight-icon.purple {
    background: #f0ebff;
    color: var(--re-purple);
}

.real-highlight-icon.orange {
    background: #fff1df;
    color: #df8a2a;
}

.real-highlight-icon.green {
    background: #e9faf1;
    color: var(--re-green);
}

.real-highlight-grid h3 {
    margin: 0 0 9px;

    color: var(--re-navy);

    font-size: 15px;
}

.real-highlight-grid p {
    margin: 0;

    color: var(--re-muted);

    font-size: 10px;

    line-height: 1.75;
}


/* =========================================================
   SOLUTIONS
   ========================================================= */

.real-estate-solutions {
    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #fff
        );

    border-top:
        1px solid #edf2f7;
}

.real-solution-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 17px;
}

.real-solution-card {
    position: relative;

    min-height: 325px;

    padding: 27px;

    overflow: hidden;

    border:
        1px solid var(--re-border);

    border-top-width: 3px;

    border-radius: 17px;

    background: #fff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.real-solution-card::after {
    content: "";

    position: absolute;

    right: -65px;
    bottom: -75px;

    width: 175px;
    height: 175px;

    border-radius: 50%;

    opacity: .55;
}

.real-solution-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 23px 46px rgba(7,27,53,.09);
}

.real-solution-card.blue-card {
    border-top-color: var(--re-blue);
}

.real-solution-card.blue-card::after {
    background: rgba(8,124,255,.07);
}

.real-solution-card.purple-card {
    border-top-color: var(--re-purple);
}

.real-solution-card.purple-card::after {
    background: rgba(118,87,255,.07);
}

.real-solution-card.orange-card {
    border-top-color: var(--re-orange);
}

.real-solution-card.orange-card::after {
    background: rgba(255,159,67,.08);
}

.real-solution-card.green-card {
    border-top-color: var(--re-green);
}

.real-solution-card.green-card::after {
    background: rgba(32,184,107,.07);
}

.real-solution-card.pink-card {
    border-top-color: var(--re-pink);
}

.real-solution-card.pink-card::after {
    background: rgba(236,72,153,.07);
}

.real-solution-card.cyan-card {
    border-top-color: var(--re-cyan);
}

.real-solution-card.cyan-card::after {
    background: rgba(24,201,232,.07);
}

.real-solution-number {
    position: absolute;

    top: 22px;
    right: 25px;

    color: #b7c3cf;

    font-size: 8px;
    font-weight: 900;
}

.real-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(--re-purple);

    font-size: 6px;
    font-weight: 900;
}

.real-solution-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 10px;

    color: var(--re-navy);

    font-size: 18px;
}

.real-solution-card > p {
    position: relative;
    z-index: 2;

    margin: 0 0 17px;

    color: var(--re-muted);

    font-size: 10px;

    line-height: 1.75;
}

.real-solution-card ul {
    position: relative;
    z-index: 2;

    margin: 0;
    padding: 0;

    list-style: none;
}

.real-solution-card li {
    position: relative;

    padding-left: 15px;

    margin-bottom: 7px;

    color: #64778b;

    font-size: 8px;
    font-weight: 700;
}

.real-solution-card li::before {
    content: "?";

    position: absolute;
    left: 0;

    color: var(--re-green);

    font-weight: 900;
}


/* =========================================================
   ECOSYSTEM
   ========================================================= */

.real-estate-ecosystem {
    background: #fff;
}

.real-ecosystem {
    position: relative;

    max-width: 950px;
    min-height: 460px;

    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);
}

.real-ecosystem::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 620px;
    height: 2px;

    transform: translate(-50%,-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(8,124,255,.22),
            rgba(118,87,255,.24),
            transparent
        );
}

.real-ecosystem::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 2px;
    height: 320px;

    transform: translate(-50%,-50%);

    background:
        linear-gradient(
            transparent,
            rgba(118,87,255,.24),
            transparent
        );
}

.real-eco-center {
    position: absolute;

    left: 50%;
    top: 50%;

    z-index: 10;

    width: 145px;
    height: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    transform:
        translate(-50%,-50%);

    border:
        4px solid rgba(118,87,255,.12);

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--re-blue),
            var(--re-purple),
            var(--re-pink)
        );

    color: #fff;

    box-shadow:
        0 20px 45px rgba(118,87,255,.22);
}

.real-eco-center strong {
    font-size: 32px;
    font-weight: 950;
}

.real-eco-center span {
    margin-top: 5px;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: .10em;

    text-align: center;
}

.real-eco-node {
    position: absolute;

    z-index: 15;

    min-width: 125px;

    padding: 13px 17px;

    border:
        1px solid #dfe8f1;

    border-radius: 11px;

    background: #fff;

    color: var(--re-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;
}

.real-eco-node:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 34px rgba(7,27,53,.10);
}

.eco-developer {
    left: 65px;
    top: 65px;

    border-left:
        3px solid var(--re-blue);
}

.eco-agent {
    right: 65px;
    top: 65px;

    border-left:
        3px solid var(--re-purple);
}

.eco-customer {
    left: 65px;
    bottom: 65px;

    border-left:
        3px solid var(--re-pink);
}

.eco-sales {
    right: 65px;
    bottom: 65px;

    border-left:
        3px solid var(--re-green);
}

.eco-crm {
    left: 50%;
    top: 20px;

    transform: translateX(-50%);

    border-left:
        3px solid var(--re-orange);
}

.eco-property {
    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    border-left:
        3px solid var(--re-cyan);
}

.eco-api {
    right: 20px;
    top: 50%;

    transform: translateY(-50%);

    border-left:
        3px solid var(--re-blue);
}


/* =========================================================
   FEATURES
   ========================================================= */

.real-estate-features {
    background:
        linear-gradient(
            135deg,
            #f7fbff,
            #fbf9ff
        );
}

.real-feature-grid {
    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    align-items: center;

    gap: 80px;
}

.real-feature-content h2 {
    margin: 0 0 18px;

    color: var(--re-navy);

    font-size:
        clamp(35px,4vw,51px);

    line-height: 1.08;

    letter-spacing: -.045em;
}

.real-feature-content h2 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--re-blue),
            var(--re-purple)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.real-feature-content > p {
    max-width: 510px;

    margin: 0 0 28px;

    color: var(--re-muted);

    font-size: 13px;

    line-height: 1.8;
}

.real-feature-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.real-feature-list > div {
    display: grid;

    grid-template-columns:
        42px
        1fr;

    align-items: center;

    gap: 15px;

    padding: 14px;

    border:
        1px solid var(--re-border);

    border-radius: 11px;

    background: #fff;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.real-feature-list > div:hover {
    transform: translateX(6px);

    border-color: #cbdced;

    box-shadow:
        0 12px 28px rgba(7,27,53,.06);
}

.real-feature-list > div > span {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f0ebff
        );

    color: var(--re-blue);

    font-size: 7px;
    font-weight: 900;
}

.real-feature-list strong {
    display: block;

    margin-bottom: 3px;

    color: var(--re-navy);

    font-size: 12px;
}

.real-feature-list p {
    margin: 0;

    color: var(--re-muted);

    font-size: 8px;

    line-height: 1.6;
}


/* =========================================================
   PROCESS
   ========================================================= */

.real-estate-process {
    background: #fff;
}

.real-process {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;
}

.real-process-item {
    width: 175px;
    min-height: 145px;

    padding: 18px;

    border:
        1px solid var(--re-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;
}

.real-process-item:hover {
    transform: translateY(-6px);

    border-color: #cadced;

    box-shadow:
        0 17px 34px rgba(7,27,53,.08);
}

.real-process-item > div {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    margin-bottom: 12px;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            var(--re-blue),
            var(--re-purple)
        );

    color: #fff;

    font-size: 8px;
    font-weight: 900;
}

.real-process-item h3 {
    margin: 0 0 5px;

    color: var(--re-navy);

    font-size: 13px;
}

.real-process-item p {
    margin: 0;

    color: var(--re-muted);

    font-size: 8px;

    line-height: 1.65;
}

.real-process > i {
    color: var(--re-blue);

    font-size: 20px;

    font-style: normal;
}


/* =========================================================
   AI SECTION
   ========================================================= */

.real-estate-ai {
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #071b35,
            #182952,
            #352060
        );

    color: #fff;
}

.real-ai-grid {
    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    align-items: center;

    gap: 70px;
}

.real-estate-ai .real-estate-eyebrow {
    color: #65dcff;
}

.real-ai-content h2 {
    margin: 0 0 18px;

    color: #fff;

    font-size:
        clamp(35px,4vw,53px);

    line-height: 1.06;

    letter-spacing: -.045em;
}

.real-ai-content h2 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #65dcff,
            #a795ff,
            #ff96c9
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.real-ai-content > p {
    max-width: 510px;

    margin: 0 0 28px;

    color: #bdccdc;

    font-size: 13px;

    line-height: 1.8;
}

.real-ai-cards {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 12px;
}

.real-ai-cards > div {
    min-height: 155px;

    padding: 22px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 14px;

    background:
        rgba(255,255,255,.055);

    backdrop-filter: blur(12px);

    transition:
        transform .22s ease,
        background .22s ease,
        border-color .22s ease;
}

.real-ai-cards > div:hover {
    transform: translateY(-6px);

    border-color:
        rgba(101,220,255,.25);

    background:
        rgba(255,255,255,.08);
}

.real-ai-cards span {
    display: grid;

    width: 37px;
    height: 37px;

    place-items: center;

    margin-bottom: 18px;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            rgba(101,220,255,.18),
            rgba(167,149,255,.20)
        );

    color: #8ce5ff;

    font-size: 7px;
    font-weight: 900;
}

.real-ai-cards strong {
    display: block;

    margin-bottom: 6px;

    color: #fff;

    font-size: 13px;
}

.real-ai-cards small {
    color: #b4c4d5;

    font-size: 8px;

    line-height: 1.6;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.real-estate-benefits {
    background: #fff;
}

.real-benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;
}

.real-benefit-grid article {
    min-height: 185px;

    padding: 25px;

    border:
        1px solid var(--re-border);

    border-radius: 14px;

    background: #fff;

    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.real-benefit-grid article:hover {
    transform: translateY(-6px);

    box-shadow:
        0 17px 34px rgba(7,27,53,.07);
}

.real-benefit-grid article:nth-child(1) {
    border-top:
        3px solid var(--re-blue);
}

.real-benefit-grid article:nth-child(2) {
    border-top:
        3px solid var(--re-purple);
}

.real-benefit-grid article:nth-child(3) {
    border-top:
        3px solid var(--re-pink);
}

.real-benefit-grid article:nth-child(4) {
    border-top:
        3px solid var(--re-green);
}

.real-benefit-grid strong {
    display: block;

    margin-bottom: 10px;

    color: var(--re-navy);

    font-size: 14px;
}

.real-benefit-grid p {
    margin: 0;

    color: var(--re-muted);

    font-size: 9px;

    line-height: 1.75;
}


/* =========================================================
   WHY LBS
   ========================================================= */

.real-estate-why {
    padding: 95px 0;

    background:
        linear-gradient(
            135deg,
            #f7fbff,
            #faf8ff
        );

    border-top:
        1px solid #edf2f7;
}

.real-why-grid {
    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    align-items: center;

    gap: 80px;
}

.real-why-grid h2 {
    margin: 0 0 18px;

    color: var(--re-navy);

    font-size:
        clamp(35px,4vw,52px);

    line-height: 1.08;

    letter-spacing: -.045em;
}

.real-why-grid h2 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--re-blue),
            var(--re-purple)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.real-why-grid > div:first-child > p {
    max-width: 520px;

    margin: 0;

    color: var(--re-muted);

    font-size: 13px;

    line-height: 1.8;
}

.real-why-points {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.real-why-points > div {
    display: grid;

    grid-template-columns:
        44px
        1fr;

    align-items: center;

    gap: 14px;

    padding: 14px;

    border:
        1px solid var(--re-border);

    border-radius: 10px;

    background: #fff;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.real-why-points > div:hover {
    transform: translateX(6px);

    border-color: #cbdced;

    box-shadow:
        0 10px 25px rgba(7,27,53,.06);
}

.real-why-points span {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f0ebff
        );

    color: var(--re-purple);

    font-size: 7px;
    font-weight: 900;
}

.real-why-points strong {
    color: var(--re-navy);

    font-size: 11px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.real-estate-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;
}

.real-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%
        );
}

.real-final-content {
    position: relative;
    z-index: 2;

    max-width: 820px;

    margin: auto;
}

.real-final-content > span {
    color: #65dcff;

    font-size: 10px;
    font-weight: 850;

    letter-spacing: .16em;
}

.real-final-content h2 {
    margin: 15px 0 18px;

    color: #fff;

    font-size:
        clamp(40px,5vw,62px);

    line-height: 1;

    letter-spacing: -.05em;
}

.real-final-content h2 strong {
    display: block;

    background:
        linear-gradient(
            90deg,
            #65dcff,
            #a795ff,
            #ff96c9
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.real-final-content > p {
    max-width: 680px;

    margin: 0 auto 30px;

    color: #c2d0e0;

    font-size: 14px;

    line-height: 1.8;
}

.real-final-actions {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .real-highlight-grid,
    .real-benefit-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .real-solution-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 780px) {

    .lbs-real-estate-page .container {
        width: min(
            calc(100% - 30px),
            620px
        );
    }

    .lbs-real-estate-page .section {
        padding: 65px 0;
    }


    /* Hero */

    .real-estate-hero {
        min-height: auto;

        padding: 65px 0;
    }

    .real-estate-hero-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .real-estate-hero-content {
        max-width: 620px;

        margin: auto;

        text-align: center;
    }

    .real-estate-hero-content h1 {
        font-size:
            clamp(40px,9vw,58px);
    }

    .real-estate-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .real-estate-hero-actions {
        justify-content: center;
    }

    .real-estate-trust {
        justify-content: center;
    }


    /* Hero Visual */

    .real-estate-hero-visual {
        min-height: 520px;

        max-width: 570px;

        width: 100%;

        margin: auto;
    }

    .real-estate-dashboard {
        right: 0;
        top: 40px;

        width: 300px;
    }

    .building-front {
        left: 105px;
    }

    .building-back {
        left: 0;
    }

    .real-card-property {
        left: 0;
        top: 115px;
    }

    .real-card-lead {
        right: -3px;
        top: 225px;
    }

    .real-card-sale {
        right: 5px;
        bottom: 40px;
    }


    /* Ecosystem */

    .real-ecosystem {
        min-height: 570px;
    }

    .real-ecosystem::before {
        width: 360px;
    }

    .real-ecosystem::after {
        height: 410px;
    }

    .eco-developer {
        left: 15px;
        top: 60px;
    }

    .eco-agent {
        right: 15px;
        top: 60px;
    }

    .eco-customer {
        left: 15px;
        bottom: 70px;
    }

    .eco-sales {
        right: 15px;
        bottom: 70px;
    }

    .eco-api {
        right: 50%;
        top: auto;
        bottom: 15px;

        transform: translateX(50%);
    }


    /* Features */

    .real-feature-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .real-feature-content {
        text-align: center;
    }

    .real-feature-content > p {
        margin-left: auto;
        margin-right: auto;
    }


    /* AI */

    .real-ai-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .real-ai-content {
        text-align: center;
    }

    .real-ai-content > p {
        margin-left: auto;
        margin-right: auto;
    }


    /* Why */

    .real-why-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .real-why-grid > div:first-child {
        text-align: center;
    }

    .real-why-grid > div:first-child > p {
        margin-left: auto;
        margin-right: auto;
    }


    /* Process */

    .real-process {
        gap: 9px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 500px) {

    .lbs-real-estate-page .container {
        width: calc(100% - 28px);
    }

    .lbs-real-estate-page .section {
        padding: 55px 0;
    }


    /* Hero */

    .real-estate-hero {
        padding: 50px 0;
    }

    .real-estate-hero-content h1 {
        font-size: 38px;
    }

    .real-estate-hero-actions {
        flex-direction: column;
    }

    .real-estate-btn {
        width: 100%;
    }

    .real-estate-trust {
        gap: 14px;
    }


    /* Buildings */

    .real-estate-hero-visual {
        min-height: 440px;
    }

    .building-back {
        width: 125px;
        height: 255px;

        left: 4px;
        bottom: 55px;
    }

    .building-front {
        width: 150px;
        height: 295px;

        left: 68px;
        bottom: 35px;
    }

    .building-windows {
        gap: 5px;
        padding: 5px;
    }

    .building-windows i {
        height: 21px;
    }

    .building-back .building-windows i {
        height: 17px;
    }

    .building-entrance {
        margin:
            auto 23px 7px;

        padding: 10px 4px;
    }


    /* Dashboard */

    .real-estate-dashboard {
        width: 225px;

        right: -2px;
        top: 20px;

        padding: 13px;

        border-radius: 13px;
    }

    .real-dashboard-stats {
        gap: 4px;
    }

    .real-dashboard-stats div {
        padding: 7px;
    }

    .real-dashboard-stats strong {
        font-size: 10px;
    }

    .real-dashboard-chart {
        padding: 9px;
    }

    .chart-bars {
        height: 72px;
        gap: 4px;
    }


    /* Floating cards */

    .real-floating-card {
        min-width: 125px;

        padding: 8px;

        gap: 7px;
    }

    .real-floating-icon {
        width: 28px;
        height: 28px;
    }

    .real-floating-card small {
        font-size: 5px;
    }

    .real-floating-card strong {
        font-size: 7px;
    }

    .real-card-property {
        left: -2px;
        top: 100px;
    }

    .real-card-lead {
        right: -2px;
        top: 190px;
    }

    .real-card-sale {
        right: -2px;
        bottom: 20px;
    }


    /* Grids */

    .real-highlight-grid,
    .real-solution-grid,
    .real-benefit-grid {
        grid-template-columns: 1fr;
    }


    /* Cards */

    .real-highlight-grid article {
        min-height: auto;
    }

    .real-solution-card {
        min-height: auto;

        padding: 23px;
    }


    /* Ecosystem */

    .real-ecosystem {
        min-height: 540px;

        border-radius: 18px;
    }

    .real-eco-center {
        width: 115px;
        height: 115px;
    }

    .real-eco-center strong {
        font-size: 25px;
    }

    .real-eco-center span {
        font-size: 6px;
    }

    .real-eco-node {
        min-width: 95px;

        padding: 10px;

        font-size: 6px;
    }

    .eco-developer {
        left: 7px;
        top: 35px;
    }

    .eco-agent {
        right: 7px;
        top: 35px;
    }

    .eco-customer {
        left: 7px;
        bottom: 70px;
    }

    .eco-sales {
        right: 7px;
        bottom: 70px;
    }

    .eco-crm {
        top: 15px;
    }

    .eco-property {
        bottom: 15px;
    }

    .eco-api {
        display: none;
    }


    /* AI */

    .real-ai-cards {
        grid-template-columns: 1fr;
    }

    .real-ai-cards > div {
        min-height: auto;
    }


    /* Process */

    .real-process {
        flex-direction: column;
    }

    .real-process-item {
        width: min(100%, 300px);
    }

    .real-process > i {
        transform: rotate(90deg);
    }


    /* CTA */

    .real-estate-final {
        padding: 75px 0;
    }

    .real-final-content h2 {
        font-size: 36px;
    }

    .real-final-actions {
        flex-direction: column;
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.lbs-real-estate-page a:focus-visible,
.lbs-real-estate-page button:focus-visible {
    outline:
        3px solid rgba(8,124,255,.25);

    outline-offset: 3px;
}


/* =========================================================
   JS ANIMATION CLASSES
   ========================================================= */

.real-estate-reveal {
    opacity: 0;

    transform: translateY(24px);

    transition:
        opacity .65s ease,
        transform .65s ease;

    transition-delay:
        var(--re-delay, 0ms);
}

.real-estate-visible {
    opacity: 1;

    transform: translateY(0);
}

.real-solution-active {
    transform:
        translateY(-9px) !important;

    box-shadow:
        0 25px 48px rgba(8,124,255,.12) !important;
}

.real-feature-active {
    transform:
        translateX(6px) !important;

    border-color:
        rgba(8,124,255,.25) !important;
}

.real-process-active {
    transform:
        translateY(-7px) !important;

    border-color:
        var(--re-blue) !important;

    box-shadow:
        0 17px 35px rgba(8,124,255,.13) !important;
}

.real-benefit-active {
    transform:
        translateY(-7px) !important;

    box-shadow:
        0 19px 38px rgba(7,27,53,.09) !important;
}

.real-why-selected {
    transform:
        translateX(6px);

    border-color:
        rgba(8,124,255,.28) !important;

    box-shadow:
        0 12px 27px rgba(8,124,255,.07);
}

.real-button-clicked {
    transform: scale(.97) !important;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .real-estate-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .real-floating-card {
        animation: none !important;
    }

    .real-solution-active,
    .real-feature-active,
    .real-process-active,
    .real-benefit-active,
    .real-why-selected {
        transform: none !important;
    }

}