/* =========================================================
   LBS SOFTWARE
   WEB PORTAL DEVELOPMENT
   web-portals.css
   ========================================================= */

:root {
    --wp-navy: #071b35;
    --wp-navy-2: #102d50;
    --wp-blue: #087cff;
    --wp-cyan: #18c9e8;
    --wp-purple: #7657ff;
    --wp-pink: #ec4899;
    --wp-orange: #ff9f43;
    --wp-green: #20b86b;
    --wp-text: #18283c;
    --wp-muted: #697b8f;
    --wp-border: #e1e9f2;
    --wp-white: #ffffff;
}


/* =========================================================
   BASE
   ========================================================= */

.lbs-web-portals-page {
    width: 100%;
    overflow: hidden;
    color: var(--wp-text);
    background: #fff;
}

.lbs-web-portals-page * {
    box-sizing: border-box;
}

.lbs-web-portals-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.lbs-web-portals-page .section {
    padding: 90px 0;
}

.web-portals-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--wp-blue);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .16em;
    line-height: 1.4;
    text-transform: uppercase;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.web-portals-heading {
    max-width: 820px;
    margin: 0 auto 50px;
    text-align: center;
}

.web-portals-heading h2 {
    margin: 0 0 17px;
    color: var(--wp-navy);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.07;
    letter-spacing: -.045em;
}

.web-portals-heading h2 span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--wp-blue),
            var(--wp-purple),
            var(--wp-pink)
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.web-portals-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--wp-muted);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.web-portals-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;
}

.web-portals-btn:hover {
    transform: translateY(-2px);
}

.web-portals-btn-primary {
    border: 1px solid var(--wp-blue);
    background:
        linear-gradient(
            135deg,
            var(--wp-blue),
            var(--wp-purple)
        );
    color: #fff;
    box-shadow:
        0 10px 28px rgba(8,124,255,.22);
}

.web-portals-btn-primary:hover {
    box-shadow:
        0 16px 36px rgba(8,124,255,.30);
}

.web-portals-btn-outline {
    border: 1px solid #cbd8e7;
    background: #fff;
    color: var(--wp-navy);
}

.web-portals-btn-outline:hover {
    border-color: var(--wp-blue);
    color: var(--wp-blue);
}

.web-portals-btn-white {
    border: 1px solid #fff;
    background: #fff;
    color: var(--wp-purple);
    box-shadow:
        0 10px 30px rgba(0,0,0,.10);
}

.web-portals-btn-dark {
    border: 1px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.06);
    color: #fff;
}

.web-portals-btn-dark:hover {
    background: rgba(255,255,255,.12);
}


/* =========================================================
   HERO
   ========================================================= */

.web-portals-hero {
    position: relative;
    min-height: 670px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--wp-border);

    background:
        radial-gradient(
            circle at 4% 35%,
            rgba(24,201,232,.13),
            transparent 27%
        ),
        radial-gradient(
            circle at 95% 20%,
            rgba(118,87,255,.15),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #f4fbff 0%,
            #fff 48%,
            #faf7ff 100%
        );
}

.web-portals-grid {
    position: absolute;
    inset: 0;
    opacity: .32;

    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
        );
}

.web-portals-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.web-portals-orb-one {
    width: 430px;
    height: 430px;
    left: -210px;
    bottom: -220px;

    background:
        radial-gradient(
            circle,
            rgba(24,201,232,.17),
            transparent 70%
        );
}

.web-portals-orb-two {
    width: 470px;
    height: 470px;
    right: -220px;
    top: -250px;

    background:
        radial-gradient(
            circle,
            rgba(118,87,255,.17),
            transparent 70%
        );
}

.web-portals-hero-inner {
    position: relative;
    z-index: 5;

    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr);

    align-items: center;

    gap: 65px;
}

.web-portals-hero-content {
    max-width: 600px;
}

.web-portals-hero-content h1 {
    margin: 0 0 23px;

    color: var(--wp-navy);

    font-size:
        clamp(46px,5.2vw,70px);

    line-height: .96;
    letter-spacing: -.065em;
}

.web-portals-hero-content h1 span,
.web-portals-hero-content h1 strong {
    display: block;
}

.web-portals-hero-content h1 span {
    background:
        linear-gradient(
            90deg,
            var(--wp-blue),
            var(--wp-purple)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.web-portals-hero-content h1 strong {
    background:
        linear-gradient(
            90deg,
            var(--wp-purple),
            var(--wp-pink)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.web-portals-hero-content > p {
    max-width: 570px;

    margin: 0 0 28px;

    color: var(--wp-muted);

    font-size: 15px;

    line-height: 1.8;
}

.web-portals-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.web-portals-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 34px;
}

.web-portals-trust div {
    display: flex;
    flex-direction: column;
    gap: 4px;

    color: #8090a1;

    font-size: 8px;
    font-weight: 700;
}

.web-portals-trust strong {
    color: var(--wp-navy);
    font-size: 11px;
    font-weight: 900;
}


/* =========================================================
   PORTAL HERO VISUAL
   ========================================================= */

.web-portals-hero-visual {
    position: relative;
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   DASHBOARD
   ========================================================= */

.portal-dashboard {
    position: relative;
    z-index: 5;

    width: min(500px, 94%);

    overflow: hidden;

    border:
        1px solid rgba(215,226,238,.95);

    border-radius: 17px;

    background: #fff;

    box-shadow:
        0 30px 75px rgba(7,27,53,.15);

    transform: rotate(-2deg);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.portal-dashboard:hover {
    transform:
        rotate(0deg)
        translateY(-6px);

    box-shadow:
        0 38px 85px rgba(7,27,53,.19);
}

.portal-dashboard-top {
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 17px;

    border-bottom: 1px solid #e7eef5;

    background: #f8fafc;
}

.portal-brand {
    color: var(--wp-navy);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: .08em;
}

.portal-top-actions {
    display: flex;
    gap: 7px;
}

.portal-top-actions span {
    width: 23px;
    height: 23px;

    border: 1px solid #e0e8f0;

    border-radius: 7px;

    background: #fff;
}

.portal-dashboard-body {
    display: grid;
    grid-template-columns: 67px 1fr;
    min-height: 375px;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.portal-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 16px;

    padding: 18px 9px;

    border-right: 1px solid #e6edf4;

    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #f3f7fb
        );
}

.portal-side-logo {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    margin-bottom: 8px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--wp-blue),
            var(--wp-purple)
        );

    color: #fff;

    font-size: 10px;
    font-weight: 900;

    box-shadow:
        0 8px 20px rgba(8,124,255,.20);
}

.portal-side-line {
    width: 31px;
    height: 28px;

    border-radius: 7px;

    background: #e3ebf3;
}

.portal-side-line.active {
    background:
        linear-gradient(
            135deg,
            rgba(8,124,255,.18),
            rgba(118,87,255,.18)
        );

    border:
        1px solid rgba(8,124,255,.13);
}


/* =========================================================
   MAIN DASHBOARD
   ========================================================= */

.portal-main {
    padding: 20px;
    min-width: 0;
}

.portal-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 17px;
}

.portal-welcome small {
    display: block;

    margin-bottom: 4px;

    color: #8b9aaa;

    font-size: 6px;
    font-weight: 800;
    letter-spacing: .08em;
}

.portal-welcome strong {
    display: block;

    color: var(--wp-navy);

    font-size: 14px;
    font-weight: 900;
}

.portal-user {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f0ebff
        );

    color: var(--wp-purple);

    font-size: 6px;
    font-weight: 900;
}


/* =========================================================
   METRICS
   ========================================================= */

.portal-metrics {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 8px;

    margin-bottom: 13px;
}

.portal-metrics > div {
    padding: 11px;

    border:
        1px solid #e2eaf2;

    border-radius: 9px;

    background: #fff;
}

.portal-metrics small {
    display: block;

    margin-bottom: 5px;

    color: #8998a7;

    font-size: 6px;
    font-weight: 800;
}

.portal-metrics strong {
    display: block;

    margin-bottom: 4px;

    color: var(--wp-navy);

    font-size: 15px;
}

.portal-metrics .up {
    color: var(--wp-green);

    font-size: 6px;
    font-weight: 900;
}


/* =========================================================
   ANALYTICS
   ========================================================= */

.portal-analytics {
    display: grid;

    grid-template-columns:
        1.3fr
        .7fr;

    gap: 10px;
}

.portal-chart,
.portal-activity {
    min-height: 150px;

    padding: 13px;

    border:
        1px solid #e1e9f2;

    border-radius: 10px;

    background: #fff;
}

.portal-chart-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 12px;

    color: #718397;

    font-size: 6px;
    font-weight: 800;
}

.portal-chart-heading strong {
    color: var(--wp-purple);

    font-size: 11px;
}

.portal-chart-area {
    height: 95px;

    display: flex;

    align-items: flex-end;

    gap: 7px;

    padding-top: 10px;

    border-bottom:
        1px solid #edf1f5;
}

.portal-chart-area span {
    flex: 1;

    min-width: 5px;

    border-radius:
        4px 4px 0 0;

    background:
        linear-gradient(
            180deg,
            var(--wp-purple),
            var(--wp-blue)
        );

    animation:
        portalBarPulse 2.5s ease-in-out infinite alternate;
}

.portal-chart-area span:nth-child(2) {
    animation-delay: .15s;
}

.portal-chart-area span:nth-child(3) {
    animation-delay: .30s;
}

.portal-chart-area span:nth-child(4) {
    animation-delay: .45s;
}

.portal-chart-area span:nth-child(5) {
    animation-delay: .60s;
}

.portal-chart-area span:nth-child(6) {
    animation-delay: .75s;
}

.portal-chart-area span:nth-child(7) {
    animation-delay: .90s;
}

@keyframes portalBarPulse {

    from {
        opacity: .60;
    }

    to {
        opacity: 1;
    }

}

.portal-activity > strong {
    display: block;

    margin-bottom: 15px;

    color: var(--wp-navy);

    font-size: 7px;
}

.portal-activity div {
    display: flex;

    align-items: center;

    gap: 7px;

    padding: 8px 0;

    border-bottom:
        1px solid #edf1f5;

    color: #728398;

    font-size: 7px;
}

.portal-activity div:last-child {
    border-bottom: 0;
}

.portal-activity div span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--wp-green);
}


/* =========================================================
   FLOATING CARDS
   ========================================================= */

.portal-floating-card {
    position: absolute;

    z-index: 15;

    display: flex;
    align-items: center;

    gap: 10px;

    min-width: 165px;

    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:
        portalFloat 4.5s ease-in-out infinite;
}

.portal-floating-card small {
    display: block;

    margin-bottom: 3px;

    color: #8b9aaa;

    font-size: 6px;
    font-weight: 800;
}

.portal-floating-card strong {
    color: var(--wp-navy);

    font-size: 9px;
    font-weight: 900;
}

.portal-floating-icon {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border-radius: 9px;

    font-size: 6px;
    font-weight: 900;
}

.portal-floating-icon.blue {
    background: #eaf5ff;
    color: var(--wp-blue);
}

.portal-floating-icon.purple {
    background: #f0ebff;
    color: var(--wp-purple);
}

.portal-floating-icon.green {
    background: #e9faf1;
    color: var(--wp-green);
}

.portal-users-card {
    left: -5px;
    top: 65px;
}

.portal-security-card {
    right: -5px;
    top: 145px;

    animation-delay: .8s;
}

.portal-connect-card {
    right: 15px;
    bottom: 32px;

    animation-delay: 1.5s;
}

@keyframes portalFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


/* =========================================================
   INTRO HIGHLIGHTS
   ========================================================= */

.web-portals-intro {
    background: #fff;
}

.web-portals-highlight-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 16px;
}

.web-portals-highlight-grid article {
    min-height: 225px;

    padding: 25px;

    border:
        1px solid var(--wp-border);

    border-radius: 15px;

    background: #fff;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.web-portals-highlight-grid article:hover {
    transform: translateY(-7px);

    border-color: #d1dfed;

    box-shadow:
        0 20px 40px rgba(7,27,53,.08);
}

.portal-highlight-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    border-radius: 12px;

    font-size: 7px;
    font-weight: 900;
}

.portal-highlight-icon.blue {
    background: #eaf5ff;
    color: var(--wp-blue);
}

.portal-highlight-icon.purple {
    background: #f0ebff;
    color: var(--wp-purple);
}

.portal-highlight-icon.orange {
    background: #fff1df;
    color: #df8a2a;
}

.portal-highlight-icon.green {
    background: #e9faf1;
    color: var(--wp-green);
}

.web-portals-highlight-grid h3 {
    margin: 0 0 9px;

    color: var(--wp-navy);

    font-size: 15px;
}

.web-portals-highlight-grid p {
    margin: 0;

    color: var(--wp-muted);

    font-size: 10px;

    line-height: 1.75;
}


/* =========================================================
   PORTAL SOLUTIONS
   ========================================================= */

.web-portals-solutions {
    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #fff
        );

    border-top:
        1px solid #edf2f7;
}

.portal-solution-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 17px;
}

.portal-solution-card {
    position: relative;

    min-height: 325px;

    padding: 27px;

    overflow: hidden;

    border:
        1px solid var(--wp-border);

    border-top-width: 3px;

    border-radius: 17px;

    background: #fff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.portal-solution-card::after {
    content: "";

    position: absolute;

    right: -65px;
    bottom: -75px;

    width: 175px;
    height: 175px;

    border-radius: 50%;

    opacity: .55;
}

.portal-solution-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 23px 46px rgba(7,27,53,.09);
}

.portal-solution-card.blue-card {
    border-top-color: var(--wp-blue);
}

.portal-solution-card.blue-card::after {
    background: rgba(8,124,255,.07);
}

.portal-solution-card.purple-card {
    border-top-color: var(--wp-purple);
}

.portal-solution-card.purple-card::after {
    background: rgba(118,87,255,.07);
}

.portal-solution-card.orange-card {
    border-top-color: var(--wp-orange);
}

.portal-solution-card.orange-card::after {
    background: rgba(255,159,67,.08);
}

.portal-solution-card.green-card {
    border-top-color: var(--wp-green);
}

.portal-solution-card.green-card::after {
    background: rgba(32,184,107,.07);
}

.portal-solution-card.pink-card {
    border-top-color: var(--wp-pink);
}

.portal-solution-card.pink-card::after {
    background: rgba(236,72,153,.07);
}

.portal-solution-card.cyan-card {
    border-top-color: var(--wp-cyan);
}

.portal-solution-card.cyan-card::after {
    background: rgba(24,201,232,.07);
}

.portal-solution-number {
    position: absolute;

    top: 22px;
    right: 25px;

    color: #b7c3cf;

    font-size: 8px;
    font-weight: 900;
}

.portal-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(--wp-purple);

    font-size: 6px;
    font-weight: 900;
}

.portal-solution-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 10px;

    color: var(--wp-navy);

    font-size: 18px;
}

.portal-solution-card > p {
    position: relative;
    z-index: 2;

    margin: 0 0 17px;

    color: var(--wp-muted);

    font-size: 10px;

    line-height: 1.75;
}

.portal-solution-card ul {
    position: relative;
    z-index: 2;

    margin: 0;
    padding: 0;

    list-style: none;
}

.portal-solution-card li {
    position: relative;

    padding-left: 15px;

    margin-bottom: 7px;

    color: #64778b;

    font-size: 8px;
    font-weight: 700;
}

.portal-solution-card li::before {
    content: "?";

    position: absolute;
    left: 0;

    color: var(--wp-green);

    font-weight: 900;
}


/* =========================================================
   PORTAL ARCHITECTURE
   ========================================================= */

.web-portals-architecture {
    background: #fff;
}

.portal-architecture {
    position: relative;

    max-width: 950px;
    min-height: 440px;

    margin: auto;

    border:
        1px solid #e5edf5;

    border-radius: 25px;

    background:
        radial-gradient(
            circle at center,
            rgba(118,87,255,.07),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #f8fbff,
            #fff,
            #fbf9ff
        );

    box-shadow:
        0 25px 60px rgba(7,27,53,.07);
}

.portal-architecture::before,
.portal-architecture::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 2px;

    height: 300px;

    background:
        linear-gradient(
            transparent,
            rgba(8,124,255,.22),
            transparent
        );

    transform:
        translate(-50%,-50%);
}

.portal-architecture::after {
    width: 520px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(118,87,255,.22),
            transparent
        );
}

.portal-architecture-user,
.portal-architecture-admin,
.portal-core {
    position: absolute;

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}

.portal-architecture-user {
    width: 155px;
    min-height: 80px;

    padding: 15px;

    border:
        1px solid #dfe8f1;

    border-radius: 13px;

    background:
        rgba(255,255,255,.96);

    box-shadow:
        0 12px 28px rgba(7,27,53,.07);
}

.portal-architecture-user strong,
.portal-architecture-admin strong {
    color: var(--wp-navy);

    font-size: 9px;
    font-weight: 900;
}

.portal-architecture-user small,
.portal-architecture-admin small {
    margin-top: 5px;

    color: #7d8d9e;

    font-size: 6px;
    font-weight: 700;
}

.portal-architecture-user.customer {
    left: 70px;
    top: 70px;
}

.portal-architecture-user.supplier {
    right: 70px;
    top: 70px;
}

.portal-architecture-user.partner {
    left: 70px;
    bottom: 70px;
}

.portal-architecture-user.employee {
    right: 70px;
    bottom: 70px;
}

.portal-core {
    left: 50%;
    top: 50%;

    width: 145px;
    height: 145px;

    transform:
        translate(-50%,-50%);

    border:
        2px solid rgba(118,87,255,.25);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #fff,
            #f2edff
        );

    box-shadow:
        0 20px 45px rgba(118,87,255,.16);
}

.portal-core::before {
    content: "";

    position: absolute;

    inset: 10px;

    border:
        1px dashed rgba(8,124,255,.24);

    border-radius: 50%;

    animation:
        portalCoreRotate 14s linear infinite;
}

@keyframes portalCoreRotate {

    to {
        transform: rotate(360deg);
    }

}

.portal-core strong {
    position: relative;
    z-index: 2;

    color: var(--wp-purple);

    font-size: 30px;
    font-weight: 950;
}

.portal-core span {
    position: relative;
    z-index: 2;

    margin-top: 4px;

    color: var(--wp-navy);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: .10em;
}

.portal-architecture-admin {
    left: 50%;
    bottom: 16px;

    min-width: 230px;

    padding: 11px 20px;

    transform:
        translateX(-50%);

    border:
        1px solid #dfe8f1;

    border-radius: 10px;

    background: #fff;

    box-shadow:
        0 10px 25px rgba(7,27,53,.06);
}


/* =========================================================
   FEATURES
   ========================================================= */

.web-portals-features {
    background:
        linear-gradient(
            135deg,
            #f7fbff,
            #fbf9ff
        );
}

.portal-feature-grid {
    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    align-items: center;

    gap: 80px;
}

.portal-feature-content h2 {
    margin: 0 0 18px;

    color: var(--wp-navy);

    font-size:
        clamp(35px,4vw,51px);

    line-height: 1.08;

    letter-spacing: -.045em;
}

.portal-feature-content h2 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--wp-blue),
            var(--wp-purple)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.portal-feature-content > p {
    max-width: 510px;

    margin: 0 0 28px;

    color: var(--wp-muted);

    font-size: 13px;

    line-height: 1.8;
}

.portal-feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.portal-feature-list > div {
    display: grid;

    grid-template-columns:
        42px
        1fr;

    align-items: center;

    gap: 15px;

    padding: 14px;

    border:
        1px solid var(--wp-border);

    border-radius: 11px;

    background: #fff;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.portal-feature-list > div:hover {
    transform: translateX(6px);

    border-color: #cbdced;

    box-shadow:
        0 12px 28px rgba(7,27,53,.06);
}

.portal-feature-list > div > span {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f0ebff
        );

    color: var(--wp-blue);

    font-size: 7px;
    font-weight: 900;
}

.portal-feature-list strong {
    display: block;

    margin-bottom: 3px;

    color: var(--wp-navy);

    font-size: 12px;
}

.portal-feature-list p {
    margin: 0;

    color: var(--wp-muted);

    font-size: 8px;

    line-height: 1.6;
}


/* =========================================================
   WORKFLOW
   ========================================================= */

.web-portals-workflow {
    background: #fff;
}

.portal-workflow {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 11px;
}

.portal-workflow-item {
    width: 215px;
    min-height: 125px;

    padding: 18px;

    border:
        1px solid var(--wp-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;
}

.portal-workflow-item:hover {
    transform: translateY(-6px);

    border-color: #cadced;

    box-shadow:
        0 17px 34px rgba(7,27,53,.08);
}

.portal-workflow-number {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    margin-bottom: 12px;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            var(--wp-blue),
            var(--wp-purple)
        );

    color: #fff;

    font-size: 8px;
    font-weight: 900;
}

.portal-workflow-item h3 {
    margin: 0 0 5px;

    color: var(--wp-navy);

    font-size: 13px;
}

.portal-workflow-item p {
    margin: 0;

    color: var(--wp-muted);

    font-size: 8px;

    line-height: 1.65;
}

.portal-workflow-arrow {
    color: var(--wp-blue);

    font-size: 22px;
}


/* =========================================================
   TECHNOLOGY
   ========================================================= */

.web-portals-technology {
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #071b35,
            #182952,
            #352060
        );

    color: #fff;
}

.web-portals-technology
.web-portals-eyebrow {
    color: #65dcff;
}

.web-portals-technology
.web-portals-heading h2 {
    color: #fff;
}

.web-portals-technology
.web-portals-heading h2 span {
    background:
        linear-gradient(
            90deg,
            #65dcff,
            #a795ff,
            #ff96c9
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.web-portals-technology
.web-portals-heading p {
    color: #bdccdc;
}

.portal-tech-pills {
    display: flex;

    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;

    max-width: 900px;

    margin: auto;
}

.portal-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;
}

.portal-tech-pills span:hover {
    transform: translateY(-3px);

    border-color:
        rgba(101,220,255,.35);

    background:
        rgba(101,220,255,.10);
}


/* =========================================================
   BENEFITS
   ========================================================= */

.web-portals-benefits {
    background: #fff;
}

.portal-benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;
}

.portal-benefit-grid article {
    min-height: 185px;

    padding: 25px;

    border:
        1px solid var(--wp-border);

    border-radius: 14px;

    background: #fff;

    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.portal-benefit-grid article:hover {
    transform: translateY(-6px);

    box-shadow:
        0 17px 34px rgba(7,27,53,.07);
}

.portal-benefit-grid article:nth-child(1) {
    border-top:
        3px solid var(--wp-blue);
}

.portal-benefit-grid article:nth-child(2) {
    border-top:
        3px solid var(--wp-purple);
}

.portal-benefit-grid article:nth-child(3) {
    border-top:
        3px solid var(--wp-pink);
}

.portal-benefit-grid article:nth-child(4) {
    border-top:
        3px solid var(--wp-green);
}

.portal-benefit-grid strong {
    display: block;

    margin-bottom: 10px;

    color: var(--wp-navy);

    font-size: 14px;
}

.portal-benefit-grid p {
    margin: 0;

    color: var(--wp-muted);

    font-size: 9px;

    line-height: 1.75;
}


/* =========================================================
   WHY LBS
   ========================================================= */

.web-portals-why {
    padding: 95px 0;

    background:
        linear-gradient(
            135deg,
            #f7fbff,
            #faf8ff
        );

    border-top:
        1px solid #edf2f7;
}

.portal-why-grid {
    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    align-items: center;

    gap: 80px;
}

.portal-why-grid h2 {
    margin: 0 0 18px;

    color: var(--wp-navy);

    font-size:
        clamp(35px,4vw,52px);

    line-height: 1.08;

    letter-spacing: -.045em;
}

.portal-why-grid h2 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--wp-blue),
            var(--wp-purple)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.portal-why-grid > div:first-child > p {
    max-width: 520px;

    margin: 0;

    color: var(--wp-muted);

    font-size: 13px;

    line-height: 1.8;
}

.portal-why-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.portal-why-points > div {
    display: grid;

    grid-template-columns:
        44px
        1fr;

    align-items: center;

    gap: 14px;

    padding: 14px;

    border:
        1px solid var(--wp-border);

    border-radius: 10px;

    background: #fff;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.portal-why-points > div:hover {
    transform: translateX(6px);

    border-color: #cbdced;

    box-shadow:
        0 10px 25px rgba(7,27,53,.06);
}

.portal-why-points span {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f0ebff
        );

    color: var(--wp-purple);

    font-size: 7px;
    font-weight: 900;
}

.portal-why-points strong {
    color: var(--wp-navy);

    font-size: 11px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.web-portals-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;
}

.portal-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%
        );
}

.portal-final-content {
    position: relative;
    z-index: 2;

    max-width: 820px;

    margin: auto;
}

.portal-final-content > span {
    color: #65dcff;

    font-size: 10px;
    font-weight: 850;

    letter-spacing: .16em;
}

.portal-final-content h2 {
    margin: 15px 0 18px;

    color: #fff;

    font-size:
        clamp(42px,5vw,64px);

    line-height: 1;

    letter-spacing: -.05em;
}

.portal-final-content h2 strong {
    display: block;

    background:
        linear-gradient(
            90deg,
            #65dcff,
            #a795ff,
            #ff96c9
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.portal-final-content > p {
    max-width: 680px;

    margin: 0 auto 30px;

    color: #c2d0e0;

    font-size: 14px;

    line-height: 1.8;
}

.portal-final-actions {
    display: flex;

    justify-content: center;
    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .web-portals-highlight-grid,
    .portal-benefit-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .portal-solution-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 780px) {

    .lbs-web-portals-page .container {
        width: min(
            calc(100% - 30px),
            620px
        );
    }

    .lbs-web-portals-page .section {
        padding: 65px 0;
    }


    /* Hero */

    .web-portals-hero {
        min-height: auto;

        padding: 65px 0;
    }

    .web-portals-hero-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .web-portals-hero-content {
        max-width: 620px;

        margin: auto;

        text-align: center;
    }

    .web-portals-hero-content h1 {
        font-size:
            clamp(42px,9.5vw,60px);
    }

    .web-portals-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .web-portals-hero-actions {
        justify-content: center;
    }

    .web-portals-trust {
        justify-content: center;
    }


    /* Visual */

    .web-portals-hero-visual {
        min-height: 450px;

        max-width: 560px;

        width: 100%;

        margin: auto;
    }

    .portal-dashboard {
        width: min(490px,85%);
    }

    .portal-users-card {
        left: 0;
    }

    .portal-security-card {
        right: 0;
    }

    .portal-connect-card {
        right: 5px;
    }


    /* Architecture */

    .portal-architecture {
        min-height: 600px;
    }

    .portal-architecture-user.customer {
        left: 20px;
        top: 50px;
    }

    .portal-architecture-user.supplier {
        right: 20px;
        top: 50px;
    }

    .portal-architecture-user.partner {
        left: 20px;
        bottom: 110px;
    }

    .portal-architecture-user.employee {
        right: 20px;
        bottom: 110px;
    }

    .portal-architecture::before {
        height: 400px;
    }

    .portal-architecture::after {
        width: 300px;
    }


    /* Feature */

    .portal-feature-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .portal-feature-content {
        text-align: center;
    }

    .portal-feature-content > p {
        margin-left: auto;
        margin-right: auto;
    }


    /* Why */

    .portal-why-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .portal-why-grid > div:first-child {
        text-align: center;
    }

    .portal-why-grid > div:first-child > p {
        margin-left: auto;
        margin-right: auto;
    }


    /* Workflow */

    .portal-workflow {
        gap: 9px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 500px) {

    .lbs-web-portals-page .container {
        width: calc(100% - 28px);
    }

    .lbs-web-portals-page .section {
        padding: 55px 0;
    }


    /* Hero */

    .web-portals-hero {
        padding: 50px 0;
    }

    .web-portals-hero-content h1 {
        font-size: 39px;
    }

    .web-portals-hero-actions {
        flex-direction: column;
    }

    .web-portals-btn {
        width: 100%;
    }

    .web-portals-trust {
        gap: 14px;
    }


    /* Dashboard */

    .web-portals-hero-visual {
        min-height: 370px;
    }

    .portal-dashboard {
        width: 80%;
    }

    .portal-dashboard-body {
        grid-template-columns: 47px 1fr;

        min-height: 300px;
    }

    .portal-sidebar {
        gap: 11px;
        padding: 13px 7px;
    }

    .portal-side-logo {
        width: 28px;
        height: 28px;

        margin-bottom: 5px;
    }

    .portal-side-line {
        width: 25px;
        height: 23px;
    }

    .portal-main {
        padding: 13px;
    }

    .portal-metrics {
        gap: 5px;
    }

    .portal-metrics > div {
        padding: 7px;
    }

    .portal-metrics strong {
        font-size: 11px;
    }

    .portal-analytics {
        grid-template-columns: 1fr;
    }

    .portal-chart {
        min-height: 120px;
    }

    .portal-chart-area {
        height: 65px;
    }

    .portal-activity {
        display: none;
    }

    .portal-floating-card {
        min-width: 120px;

        padding: 9px;

        gap: 7px;
    }

    .portal-floating-icon {
        width: 29px;
        height: 29px;
    }

    .portal-users-card {
        left: -2px;
        top: 30px;
    }

    .portal-security-card {
        right: -2px;
        top: 90px;
    }

    .portal-connect-card {
        right: 0;
        bottom: 20px;
    }


    /* Grids */

    .web-portals-highlight-grid,
    .portal-solution-grid,
    .portal-benefit-grid {
        grid-template-columns: 1fr;
    }


    /* Cards */

    .web-portals-highlight-grid article {
        min-height: auto;
    }

    .portal-solution-card {
        min-height: auto;

        padding: 23px;
    }


    /* Architecture */

    .portal-architecture {
        min-height: 570px;

        border-radius: 18px;
    }

    .portal-architecture-user {
        width: 125px;
        min-height: 65px;

        padding: 10px;
    }

    .portal-architecture-user.customer {
        left: 10px;
        top: 35px;
    }

    .portal-architecture-user.supplier {
        right: 10px;
        top: 35px;
    }

    .portal-architecture-user.partner {
        left: 10px;
        bottom: 100px;
    }

    .portal-architecture-user.employee {
        right: 10px;
        bottom: 100px;
    }

    .portal-core {
        width: 120px;
        height: 120px;
    }

    .portal-core strong {
        font-size: 25px;
    }

    .portal-architecture-admin {
        min-width: 190px;

        bottom: 18px;

        padding: 9px 12px;
    }


    /* Workflow */

    .portal-workflow {
        flex-direction: column;
    }

    .portal-workflow-item {
        width: min(100%,300px);
    }

    .portal-workflow-arrow {
        transform: rotate(90deg);
    }


    /* Technology */

    .web-portals-technology {
        padding: 70px 0;
    }

    .portal-tech-pills span {
        padding: 10px 14px;
    }


    /* CTA */

    .web-portals-final {
        padding: 75px 0;
    }

    .portal-final-content h2 {
        font-size: 37px;
    }

    .portal-final-actions {
        flex-direction: column;
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.lbs-web-portals-page a:focus-visible,
.lbs-web-portals-page button:focus-visible {
    outline:
        3px solid rgba(8,124,255,.25);

    outline-offset: 3px;
}


/* =========================================================
   JS REVEAL
   ========================================================= */

.web-portals-reveal {
    opacity: 0;

    transform: translateY(24px);

    transition:
        opacity .65s ease,
        transform .65s ease;

    transition-delay:
        var(--wp-delay,0ms);
}

.web-portals-visible {
    opacity: 1;

    transform: translateY(0);
}

.web-portal-solution-active {
    transform:
        translateY(-9px) !important;

    box-shadow:
        0 25px 48px rgba(8,124,255,.12) !important;
}

.web-portal-feature-active {
    transform:
        translateX(6px) !important;

    border-color:
        rgba(8,124,255,.25) !important;
}

.web-portal-workflow-active {
    transform:
        translateY(-7px) !important;

    border-color:
        var(--wp-blue) !important;

    box-shadow:
        0 17px 35px rgba(8,124,255,.13) !important;
}

.web-portal-tech-selected {
    transform:
        translateY(-3px) !important;

    border-color:
        rgba(101,220,255,.50) !important;

    background:
        rgba(101,220,255,.12) !important;
}

.web-portal-benefit-active {
    transform:
        translateY(-7px) !important;

    box-shadow:
        0 19px 38px rgba(7,27,53,.09) !important;
}

.web-portal-why-selected {
    transform:
        translateX(6px);

    border-color:
        rgba(8,124,255,.28) !important;

    box-shadow:
        0 12px 27px rgba(8,124,255,.07);
}

.web-portal-button-clicked {
    transform: scale(.97) !important;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

.web-portals-reduced-motion
.web-portals-reveal {
    opacity: 1;

    transform: none;

    transition: none;
}

@media (prefers-reduced-motion: reduce) {

    .web-portals-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .portal-floating-card,
    .portal-chart-area span,
    .portal-core::before {
        animation: none !important;
    }

    .web-portal-solution-active,
    .web-portal-feature-active,
    .web-portal-workflow-active,
    .web-portal-tech-selected,
    .web-portal-benefit-active,
    .web-portal-why-selected {
        transform: none !important;
    }

}