/* =========================================================
   LBS SOFTWARE
   WEB DEVELOPMENT SERVICES
   web-development.css
   ========================================================= */

:root {
    --wd-navy: #071b35;
    --wd-navy-2: #102c50;

    --wd-blue: #087cff;
    --wd-cyan: #18c9e8;
    --wd-purple: #7657ff;
    --wd-pink: #ec4899;
    --wd-orange: #ff9f43;
    --wd-green: #20b86b;

    --wd-text: #18283c;
    --wd-muted: #697b8f;
    --wd-border: #e1e9f2;
    --wd-white: #ffffff;
}


/* =========================================================
   BASE
   ========================================================= */

.lbs-web-development-page {
    width: 100%;
    overflow: hidden;

    color: var(--wd-text);
    background: #ffffff;
}

.lbs-web-development-page * {
    box-sizing: border-box;
}

.lbs-web-development-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.lbs-web-development-page .section {
    padding: 90px 0;
}

.web-development-eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--wd-blue);

    font-size: 10px;
    font-weight: 850;

    letter-spacing: .16em;

    line-height: 1.4;

    text-transform: uppercase;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.web-development-heading {
    max-width: 820px;

    margin: 0 auto 50px;

    text-align: center;
}

.web-development-heading h2 {
    margin: 0 0 17px;

    color: var(--wd-navy);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.07;

    letter-spacing: -.045em;
}

.web-development-heading h2 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--wd-blue),
            var(--wd-purple),
            var(--wd-pink)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.web-development-heading p {
    max-width: 700px;

    margin: 0 auto;

    color: var(--wd-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.web-development-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-development-btn:hover {
    transform: translateY(-2px);
}

.web-development-btn-primary {
    border: 1px solid var(--wd-blue);

    background:
        linear-gradient(
            135deg,
            var(--wd-blue),
            var(--wd-purple)
        );

    color: #ffffff;

    box-shadow:
        0 10px 28px rgba(8, 124, 255, .22);
}

.web-development-btn-primary:hover {
    box-shadow:
        0 16px 36px rgba(8, 124, 255, .30);
}

.web-development-btn-outline {
    border: 1px solid #cbd8e7;

    background: #ffffff;

    color: var(--wd-navy);
}

.web-development-btn-outline:hover {
    border-color: var(--wd-blue);

    color: var(--wd-blue);
}

.web-development-btn-white {
    border: 1px solid #ffffff;

    background: #ffffff;

    color: var(--wd-purple);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .10);
}

.web-development-btn-dark {
    border: 1px solid rgba(255,255,255,.20);

    background: rgba(255,255,255,.06);

    color: #ffffff;
}

.web-development-btn-dark:hover {
    background: rgba(255,255,255,.12);
}


/* =========================================================
   HERO
   ========================================================= */

.web-development-hero {
    position: relative;

    min-height: 660px;

    display: flex;

    align-items: center;

    overflow: hidden;

    border-bottom: 1px solid var(--wd-border);

    background:
        radial-gradient(
            circle at 5% 30%,
            rgba(24,201,232,.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 94% 20%,
            rgba(118,87,255,.14),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #f5fbff 0%,
            #ffffff 50%,
            #fbf8ff 100%
        );
}

.web-development-grid {
    position: absolute;

    inset: 0;

    opacity: .35;

    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-development-orb {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.web-development-orb-one {
    width: 430px;
    height: 430px;

    left: -200px;
    bottom: -220px;

    background:
        radial-gradient(
            circle,
            rgba(24,201,232,.16),
            transparent 70%
        );
}

.web-development-orb-two {
    width: 470px;
    height: 470px;

    right: -200px;
    top: -250px;

    background:
        radial-gradient(
            circle,
            rgba(118,87,255,.15),
            transparent 70%
        );
}

.web-development-hero-inner {
    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 65px;
}

.web-development-hero-content {
    max-width: 600px;
}

.web-development-hero-content h1 {
    margin: 0 0 23px;

    color: var(--wd-navy);

    font-size:
        clamp(46px, 5.2vw, 70px);

    line-height: .96;

    letter-spacing: -.065em;
}

.web-development-hero-content h1 span,
.web-development-hero-content h1 strong {
    display: block;
}

.web-development-hero-content h1 span {
    background:
        linear-gradient(
            90deg,
            var(--wd-blue),
            var(--wd-purple)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.web-development-hero-content h1 strong {
    background:
        linear-gradient(
            90deg,
            var(--wd-purple),
            var(--wd-pink)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.web-development-hero-content > p {
    max-width: 570px;

    margin: 0 0 28px;

    color: var(--wd-muted);

    font-size: 15px;

    line-height: 1.8;
}

.web-development-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.web-development-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 26px;

    margin-top: 34px;
}

.web-development-trust div {
    display: flex;

    flex-direction: column;

    gap: 4px;

    color: #8090a1;

    font-size: 8px;

    font-weight: 700;
}

.web-development-trust strong {
    color: var(--wd-navy);

    font-size: 11px;

    font-weight: 900;
}


/* =========================================================
   HERO BROWSER
   ========================================================= */

.web-development-hero-visual {
    position: relative;

    min-height: 510px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.web-browser-window {
    position: relative;

    z-index: 5;

    width: min(470px, 92%);

    overflow: hidden;

    border: 1px solid rgba(215,226,238,.95);

    border-radius: 17px;

    background: #ffffff;

    box-shadow:
        0 28px 70px rgba(7,27,53,.14);

    transform: rotate(-2deg);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.web-browser-window:hover {
    transform:
        rotate(0deg)
        translateY(-6px);

    box-shadow:
        0 35px 80px rgba(7,27,53,.18);
}

.browser-top {
    height: 44px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 0 14px;

    border-bottom: 1px solid #e9eff5;

    background: #f8fafc;
}

.browser-dots {
    display: flex;

    gap: 5px;
}

.browser-dots span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #d5dee8;
}

.browser-dots span:nth-child(1) {
    background: #ff8b8b;
}

.browser-dots span:nth-child(2) {
    background: #ffc85b;
}

.browser-dots span:nth-child(3) {
    background: #54d991;
}

.browser-address {
    flex: 1;

    height: 23px;

    display: flex;

    align-items: center;

    padding: 0 12px;

    border: 1px solid #e0e8f0;

    border-radius: 20px;

    background: #ffffff;

    color: #8c9aaa;

    font-size: 7px;
}

.browser-content {
    min-height: 335px;

    padding: 17px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f8fbff
        );
}

.browser-navbar {
    display: grid;

    grid-template-columns:
        55px
        repeat(4, 1fr);

    align-items: center;

    gap: 8px;

    padding-bottom: 17px;
}

.browser-logo {
    display: grid;

    place-items: center;

    width: 43px;
    height: 20px;

    border-radius: 5px;

    background:
        linear-gradient(
            135deg,
            var(--wd-blue),
            var(--wd-purple)
        );

    color: #ffffff;

    font-size: 7px;

    font-weight: 900;
}

.browser-navbar > span:not(.browser-logo) {
    height: 5px;

    width: 80%;

    border-radius: 5px;

    background: #dfe8f1;
}

.browser-hero-content {
    display: grid;

    grid-template-columns:
        1fr
        .9fr;

    align-items: center;

    gap: 18px;

    padding: 22px 5px 25px;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #eef7ff,
            #f5f0ff
        );
}

.browser-title-line {
    width: 90%;
    height: 12px;

    margin-bottom: 7px;

    border-radius: 5px;

    background: var(--wd-navy);
}

.browser-title-line.short {
    width: 62%;

    background:
        linear-gradient(
            90deg,
            var(--wd-blue),
            var(--wd-purple)
        );
}

.browser-text-line {
    width: 92%;
    height: 5px;

    margin-top: 13px;

    border-radius: 5px;

    background: #bfcddd;
}

.browser-text-line.small {
    width: 70%;

    margin-top: 6px;
}

.browser-buttons {
    display: flex;

    gap: 6px;

    margin-top: 17px;
}

.browser-buttons span {
    width: 45px;
    height: 15px;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            var(--wd-blue),
            var(--wd-purple)
        );
}

.browser-buttons span:last-child {
    background: #d9e4ee;
}

.browser-visual-box {
    position: relative;

    height: 125px;

    overflow: hidden;

    border: 1px solid #dce7f1;

    border-radius: 11px;

    background: #ffffff;
}

.browser-chart-line {
    position: absolute;

    left: 12%;
    bottom: 30%;

    width: 75%;
    height: 45%;

    border-top: 3px solid var(--wd-purple);

    transform:
        rotate(-15deg);

    border-radius: 50%;
}

.browser-chart-bars {
    position: absolute;

    left: 13%;
    right: 10%;
    bottom: 12%;

    height: 45px;

    display: flex;

    align-items: flex-end;

    gap: 7px;
}

.browser-chart-bars span {
    flex: 1;

    border-radius: 4px 4px 0 0;

    background:
        linear-gradient(
            180deg,
            var(--wd-cyan),
            var(--wd-blue)
        );
}

.browser-chart-bars span:nth-child(1) {
    height: 25%;
}

.browser-chart-bars span:nth-child(2) {
    height: 43%;
}

.browser-chart-bars span:nth-child(3) {
    height: 36%;
}

.browser-chart-bars span:nth-child(4) {
    height: 68%;
}

.browser-chart-bars span:nth-child(5) {
    height: 92%;
}

.browser-cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;

    margin-top: 15px;
}

.browser-cards span {
    height: 48px;

    border: 1px solid #e0e8f0;

    border-radius: 8px;

    background: #ffffff;

    box-shadow:
        0 4px 12px rgba(7,27,53,.03);
}


/* =========================================================
   FLOATING CARDS
   ========================================================= */

.web-floating-card {
    position: absolute;

    z-index: 15;

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 155px;

    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:
        webDevelopmentFloat 4.5s ease-in-out infinite;
}

.web-floating-card small {
    display: block;

    margin-bottom: 3px;

    color: #8b9aaa;

    font-size: 6px;

    font-weight: 800;
}

.web-floating-card strong {
    color: var(--wd-navy);

    font-size: 9px;

    font-weight: 900;
}

.web-floating-icon {
    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

    flex: 0 0 auto;

    border-radius: 9px;

    font-size: 6px;

    font-weight: 900;
}

.web-floating-icon.blue {
    background: #eaf5ff;

    color: var(--wd-blue);
}

.web-floating-icon.green {
    background: #e9faf1;

    color: var(--wd-green);
}

.web-floating-icon.purple {
    background: #f0ebff;

    color: var(--wd-purple);
}

.code-card {
    left: -5px;
    top: 70px;
}

.responsive-card {
    right: -5px;
    top: 155px;

    animation-delay: .8s;
}

.performance-card {
    right: 25px;
    bottom: 35px;

    animation-delay: 1.5s;
}

@keyframes webDevelopmentFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


/* =========================================================
   INTRO
   ========================================================= */

.web-development-intro {
    background: #ffffff;
}

.web-development-highlight-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}

.web-development-highlight-grid article {
    min-height: 220px;

    padding: 25px;

    border: 1px solid var(--wd-border);

    border-radius: 15px;

    background: #ffffff;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.web-development-highlight-grid article:hover {
    transform: translateY(-7px);

    border-color: #d2e0ef;

    box-shadow:
        0 20px 40px rgba(7,27,53,.08);
}

.web-highlight-icon {
    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    margin-bottom: 18px;

    border-radius: 12px;

    font-size: 7px;

    font-weight: 900;
}

.web-highlight-icon.blue {
    background: #eaf5ff;

    color: var(--wd-blue);
}

.web-highlight-icon.purple {
    background: #f0ebff;

    color: var(--wd-purple);
}

.web-highlight-icon.orange {
    background: #fff1df;

    color: #df8a2a;
}

.web-highlight-icon.green {
    background: #e9faf1;

    color: var(--wd-green);
}

.web-development-highlight-grid h3 {
    margin: 0 0 9px;

    color: var(--wd-navy);

    font-size: 15px;
}

.web-development-highlight-grid p {
    margin: 0;

    color: var(--wd-muted);

    font-size: 10px;

    line-height: 1.75;
}


/* =========================================================
   SERVICES
   ========================================================= */

.web-development-services {
    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #ffffff
        );

    border-top: 1px solid #edf2f7;
}

.web-service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 17px;
}

.web-service-card {
    position: relative;

    min-height: 320px;

    padding: 27px;

    overflow: hidden;

    border: 1px solid var(--wd-border);

    border-top-width: 3px;

    border-radius: 17px;

    background: #ffffff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.web-service-card::after {
    content: "";

    position: absolute;

    right: -65px;
    bottom: -75px;

    width: 175px;
    height: 175px;

    border-radius: 50%;

    opacity: .50;
}

.web-service-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 23px 46px rgba(7,27,53,.09);
}

.blue-card {
    border-top-color: var(--wd-blue);
}

.blue-card::after {
    background: rgba(8,124,255,.07);
}

.purple-card {
    border-top-color: var(--wd-purple);
}

.purple-card::after {
    background: rgba(118,87,255,.07);
}

.orange-card {
    border-top-color: var(--wd-orange);
}

.orange-card::after {
    background: rgba(255,159,67,.08);
}

.green-card {
    border-top-color: var(--wd-green);
}

.green-card::after {
    background: rgba(32,184,107,.07);
}

.pink-card {
    border-top-color: var(--wd-pink);
}

.pink-card::after {
    background: rgba(236,72,153,.07);
}

.cyan-card {
    border-top-color: var(--wd-cyan);
}

.cyan-card::after {
    background: rgba(24,201,232,.07);
}

.web-service-number {
    position: absolute;

    top: 22px;
    right: 25px;

    color: #b7c3cf;

    font-size: 8px;

    font-weight: 900;
}

.web-service-icon {
    position: relative;

    z-index: 2;

    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

    margin-bottom: 20px;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f0ebff
        );

    color: var(--wd-purple);

    font-size: 7px;

    font-weight: 900;
}

.web-service-card h3 {
    position: relative;

    z-index: 2;

    margin: 0 0 10px;

    color: var(--wd-navy);

    font-size: 18px;

    line-height: 1.25;
}

.web-service-card > p {
    position: relative;

    z-index: 2;

    margin: 0 0 17px;

    color: var(--wd-muted);

    font-size: 10px;

    line-height: 1.75;
}

.web-service-card ul {
    position: relative;

    z-index: 2;

    margin: 0;

    padding: 0;

    list-style: none;
}

.web-service-card li {
    position: relative;

    padding-left: 15px;

    margin-bottom: 7px;

    color: #64778b;

    font-size: 8px;

    font-weight: 700;
}

.web-service-card li::before {
    content: "?";

    position: absolute;

    left: 0;

    color: var(--wd-green);

    font-weight: 900;
}


/* =========================================================
   SOLUTIONS
   ========================================================= */

.web-development-solutions {
    background: #ffffff;
}

.web-solution-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}

.web-solution-grid article {
    position: relative;

    min-height: 220px;

    padding: 27px;

    border: 1px solid var(--wd-border);

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f9fbff
        );

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.web-solution-grid article:hover {
    transform: translateY(-7px);

    border-color: #cfddeb;

    box-shadow:
        0 20px 40px rgba(7,27,53,.08);
}

.web-solution-grid article > span {
    display: block;

    margin-bottom: 18px;

    color: var(--wd-blue);

    font-size: 8px;

    font-weight: 900;
}

.web-solution-grid article:nth-child(2) > span {
    color: var(--wd-purple);
}

.web-solution-grid article:nth-child(3) > span {
    color: var(--wd-pink);
}

.web-solution-grid article:nth-child(4) > span {
    color: var(--wd-orange);
}

.web-solution-grid h3 {
    margin: 0 0 10px;

    color: var(--wd-navy);

    font-size: 16px;

    line-height: 1.3;
}

.web-solution-grid p {
    margin: 0;

    color: var(--wd-muted);

    font-size: 10px;

    line-height: 1.75;
}


/* =========================================================
   DEVELOPMENT PROCESS
   ========================================================= */

.web-development-process {
    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #ffffff
        );
}

.web-process {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 11px;
}

.web-process-item {
    display: flex;

    align-items: center;

    gap: 12px;

    width: 220px;

    min-height: 105px;

    padding: 17px;

    border: 1px solid var(--wd-border);

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 10px 25px rgba(7,27,53,.05);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.web-process-item:hover {
    transform: translateY(-6px);

    border-color: #cadced;

    box-shadow:
        0 17px 34px rgba(7,27,53,.08);
}

.web-process-number {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    flex: 0 0 auto;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--wd-blue),
            var(--wd-purple)
        );

    color: #ffffff;

    font-size: 8px;

    font-weight: 900;
}

.web-process-item h3 {
    margin: 0 0 4px;

    color: var(--wd-navy);

    font-size: 12px;
}

.web-process-item p {
    margin: 0;

    color: var(--wd-muted);

    font-size: 8px;

    line-height: 1.55;
}

.web-process-arrow {
    color: var(--wd-blue);

    font-size: 22px;
}


/* =========================================================
   FEATURES
   ========================================================= */

.web-development-features {
    background:
        linear-gradient(
            135deg,
            #f7fbff,
            #fbf9ff
        );
}

.web-feature-grid {
    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    align-items: center;

    gap: 80px;
}

.web-feature-content h2 {
    margin: 0 0 18px;

    color: var(--wd-navy);

    font-size:
        clamp(35px, 4vw, 51px);

    line-height: 1.08;

    letter-spacing: -.045em;
}

.web-feature-content h2 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--wd-blue),
            var(--wd-purple)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.web-feature-content > p {
    max-width: 510px;

    margin: 0 0 28px;

    color: var(--wd-muted);

    font-size: 13px;

    line-height: 1.8;
}

.web-feature-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.web-feature-list > div {
    display: grid;

    grid-template-columns:
        42px
        1fr;

    align-items: center;

    gap: 15px;

    padding: 14px;

    border: 1px solid var(--wd-border);

    border-radius: 11px;

    background: #ffffff;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.web-feature-list > div:hover {
    transform: translateX(6px);

    border-color: #cbdced;

    box-shadow:
        0 12px 28px rgba(7,27,53,.06);
}

.web-feature-list > div > span {
    width: 39px;
    height: 39px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f0ebff
        );

    color: var(--wd-blue);

    font-size: 7px;

    font-weight: 900;
}

.web-feature-list strong {
    display: block;

    margin-bottom: 3px;

    color: var(--wd-navy);

    font-size: 12px;
}

.web-feature-list p {
    margin: 0;

    color: var(--wd-muted);

    font-size: 8px;

    line-height: 1.6;
}


/* =========================================================
   TECHNOLOGY
   ========================================================= */

.web-development-technology {
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #071b35,
            #182952,
            #332060
        );

    color: #ffffff;
}

.web-development-technology
.web-development-eyebrow {
    color: #65dcff;
}

.web-development-technology
.web-development-heading h2 {
    color: #ffffff;
}

.web-development-technology
.web-development-heading h2 span {
    background:
        linear-gradient(
            90deg,
            #65dcff,
            #a795ff,
            #ff96c9
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.web-development-technology
.web-development-heading p {
    color: #bdccdc;
}

.web-tech-pills {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    max-width: 850px;

    margin: auto;
}

.web-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;
}

.web-tech-pills span:hover {
    transform: translateY(-3px);

    border-color:
        rgba(101,220,255,.35);

    background:
        rgba(101,220,255,.10);
}


/* =========================================================
   BENEFITS
   ========================================================= */

.web-development-benefits {
    background: #ffffff;
}

.web-benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.web-benefit-grid article {
    min-height: 180px;

    padding: 25px;

    border: 1px solid var(--wd-border);

    border-radius: 14px;

    background: #ffffff;

    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.web-benefit-grid article:hover {
    transform: translateY(-6px);

    box-shadow:
        0 17px 34px rgba(7,27,53,.07);
}

.web-benefit-grid article:nth-child(1) {
    border-top: 3px solid var(--wd-blue);
}

.web-benefit-grid article:nth-child(2) {
    border-top: 3px solid var(--wd-purple);
}

.web-benefit-grid article:nth-child(3) {
    border-top: 3px solid var(--wd-pink);
}

.web-benefit-grid article:nth-child(4) {
    border-top: 3px solid var(--wd-green);
}

.web-benefit-grid strong {
    display: block;

    margin-bottom: 10px;

    color: var(--wd-navy);

    font-size: 14px;
}

.web-benefit-grid p {
    margin: 0;

    color: var(--wd-muted);

    font-size: 9px;

    line-height: 1.75;
}


/* =========================================================
   WHY LBS
   ========================================================= */

.web-development-why {
    padding: 95px 0;

    background:
        linear-gradient(
            135deg,
            #f7fbff,
            #faf8ff
        );

    border-top: 1px solid #edf2f7;
}

.web-why-grid {
    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    align-items: center;

    gap: 80px;
}

.web-why-grid h2 {
    margin: 0 0 18px;

    color: var(--wd-navy);

    font-size:
        clamp(35px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -.045em;
}

.web-why-grid h2 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--wd-blue),
            var(--wd-purple)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.web-why-grid > div:first-child > p {
    max-width: 520px;

    margin: 0;

    color: var(--wd-muted);

    font-size: 13px;

    line-height: 1.8;
}

.web-why-points {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.web-why-points > div {
    display: grid;

    grid-template-columns:
        44px
        1fr;

    align-items: center;

    gap: 14px;

    padding: 14px;

    border: 1px solid var(--wd-border);

    border-radius: 10px;

    background: #ffffff;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.web-why-points > div:hover {
    transform: translateX(6px);

    border-color: #cbdced;

    box-shadow:
        0 10px 25px rgba(7,27,53,.06);
}

.web-why-points span {
    width: 39px;
    height: 39px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #eaf5ff,
            #f0ebff
        );

    color: var(--wd-purple);

    font-size: 7px;

    font-weight: 900;
}

.web-why-points strong {
    color: var(--wd-navy);

    font-size: 11px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.web-development-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;
}

.web-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%
        );
}

.web-final-content {
    position: relative;

    z-index: 2;

    max-width: 820px;

    margin: auto;
}

.web-final-content > span {
    color: #65dcff;

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .16em;
}

.web-final-content h2 {
    margin: 15px 0 18px;

    color: #ffffff;

    font-size:
        clamp(42px, 5vw, 64px);

    line-height: 1;

    letter-spacing: -.05em;
}

.web-final-content h2 strong {
    display: block;

    background:
        linear-gradient(
            90deg,
            #65dcff,
            #a795ff,
            #ff96c9
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.web-final-content > p {
    max-width: 680px;

    margin: 0 auto 30px;

    color: #c2d0e0;

    font-size: 14px;

    line-height: 1.8;
}

.web-final-actions {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .web-development-highlight-grid,
    .web-benefit-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .web-solution-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .web-service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 780px) {

    .lbs-web-development-page .container {
        width: min(100% - 30px, 620px);
    }

    .lbs-web-development-page .section {
        padding: 65px 0;
    }


    /* Hero */

    .web-development-hero {
        min-height: auto;

        padding: 65px 0;
    }

    .web-development-hero-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .web-development-hero-content {
        max-width: 620px;

        margin: auto;

        text-align: center;
    }

    .web-development-hero-content h1 {
        font-size:
            clamp(42px, 9.5vw, 60px);
    }

    .web-development-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .web-development-hero-actions {
        justify-content: center;
    }

    .web-development-trust {
        justify-content: center;
    }


    /* Browser */

    .web-development-hero-visual {
        min-height: 430px;

        max-width: 540px;

        width: 100%;

        margin: auto;
    }

    .web-browser-window {
        width: min(460px, 84%);
    }

    .code-card {
        left: 0;
    }

    .responsive-card {
        right: 0;
    }

    .performance-card {
        right: 5px;
    }


    /* Features */

    .web-feature-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .web-feature-content {
        text-align: center;
    }

    .web-feature-content > p {
        margin-left: auto;
        margin-right: auto;
    }


    /* Why */

    .web-why-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .web-why-grid > div:first-child {
        text-align: center;
    }

    .web-why-grid > div:first-child > p {
        margin-left: auto;
        margin-right: auto;
    }


    /* Process */

    .web-process {
        gap: 9px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 500px) {

    .lbs-web-development-page .container {
        width: calc(100% - 28px);
    }

    .lbs-web-development-page .section {
        padding: 55px 0;
    }


    /* Hero */

    .web-development-hero {
        padding: 50px 0;
    }

    .web-development-hero-content h1 {
        font-size: 39px;
    }

    .web-development-hero-actions {
        flex-direction: column;
    }

    .web-development-btn {
        width: 100%;
    }

    .web-development-trust {
        gap: 14px;
    }


    /* Browser */

    .web-development-hero-visual {
        min-height: 350px;
    }

    .web-browser-window {
        width: 81%;

        border-radius: 14px;
    }

    .browser-top {
        height: 36px;
    }

    .browser-content {
        min-height: 270px;

        padding: 11px;
    }

    .browser-hero-content {
        gap: 9px;

        padding: 15px 5px;
    }

    .browser-visual-box {
        height: 95px;
    }

    .browser-cards span {
        height: 35px;
    }

    .web-floating-card {
        min-width: 120px;

        padding: 9px;

        gap: 7px;
    }

    .web-floating-icon {
        width: 29px;
        height: 29px;
    }

    .code-card {
        left: -3px;
        top: 35px;
    }

    .responsive-card {
        right: -3px;
        top: 90px;
    }

    .performance-card {
        right: 0;
        bottom: 20px;
    }


    /* Grids */

    .web-development-highlight-grid,
    .web-service-grid,
    .web-solution-grid,
    .web-benefit-grid {
        grid-template-columns: 1fr;
    }


    /* Cards */

    .web-development-highlight-grid article {
        min-height: auto;
    }

    .web-service-card {
        min-height: auto;

        padding: 23px;
    }

    .web-solution-grid article {
        min-height: auto;
    }


    /* Process */

    .web-process {
        flex-direction: column;
    }

    .web-process-item {
        width: min(100%, 300px);
    }

    .web-process-arrow {
        transform: rotate(90deg);
    }


    /* Technology */

    .web-development-technology {
        padding: 70px 0;
    }

    .web-tech-pills span {
        padding: 10px 14px;
    }


    /* CTA */

    .web-development-final {
        padding: 75px 0;
    }

    .web-final-content h2 {
        font-size: 37px;
    }

    .web-final-actions {
        flex-direction: column;
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.lbs-web-development-page a:focus-visible,
.lbs-web-development-page button:focus-visible {
    outline: 3px solid rgba(8,124,255,.25);

    outline-offset: 3px;
}


/* =========================================================
   JAVASCRIPT INTERACTIONS
   ========================================================= */

.web-development-reveal {
    opacity: 0;

    transform: translateY(24px);

    transition:
        opacity .65s ease,
        transform .65s ease;

    transition-delay:
        var(--wd-delay, 0ms);
}

.web-development-visible {
    opacity: 1;

    transform: translateY(0);
}

.web-service-active {
    transform: translateY(-9px) !important;

    box-shadow:
        0 25px 48px rgba(8,124,255,.12) !important;
}

.web-solution-selected {
    transform: translateY(-7px) !important;

    border-color:
        rgba(118,87,255,.35) !important;

    box-shadow:
        0 20px 42px rgba(118,87,255,.12) !important;
}

.web-process-active,
.web-process-auto-active {
    transform: translateY(-7px) !important;

    border-color:
        var(--wd-blue) !important;

    box-shadow:
        0 17px 35px rgba(8,124,255,.13) !important;
}

.web-feature-active {
    transform: translateX(6px) !important;

    border-color:
        rgba(8,124,255,.25) !important;
}

.web-tech-selected {
    transform: translateY(-3px) !important;

    border-color:
        rgba(101,220,255,.50) !important;

    background:
        rgba(101,220,255,.12) !important;
}

.web-benefit-active {
    transform: translateY(-7px) !important;

    box-shadow:
        0 19px 38px rgba(7,27,53,.09) !important;
}

.web-why-selected {
    transform: translateX(6px);

    border-color:
        rgba(8,124,255,.28) !important;

    box-shadow:
        0 12px 27px rgba(8,124,255,.07);
}

.web-button-clicked {
    transform: scale(.97) !important;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

.web-development-reduced-motion
.web-development-reveal {
    opacity: 1;

    transform: none;

    transition: none;
}

@media (prefers-reduced-motion: reduce) {

    .web-development-reveal {
        opacity: 1;

        transform: none;

        transition: none;
    }

    .web-floating-card {
        animation: none !important;
    }

    .web-service-active,
    .web-solution-selected,
    .web-process-active,
    .web-process-auto-active,
    .web-feature-active,
    .web-tech-selected,
    .web-benefit-active,
    .web-why-selected {
        transform: none !important;
    }

    .web-development-btn,
    .web-browser-window,
    .web-development-highlight-grid article,
    .web-service-card,
    .web-solution-grid article,
    .web-process-item,
    .web-feature-list > div,
    .web-benefit-grid article,
    .web-why-points > div,
    .web-tech-pills span {
        transition: none !important;
    }

}