/* =========================================================
   LOON TECHNOLOGIES
   PRODUCTS PAGE
   MATCHING INDEX + BRANDING STYLE
========================================================= */


/* =========================================================
   MAIN PAGE
========================================================= */

.product-page-screen {
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.product-page-content {
    width: min(1200px, 86vw);

    margin: 0 auto;

    padding:
        120px 0
        120px;
}


/* =========================================================
   HERO
========================================================= */

.product-hero {
    min-height: 650px;

    display: grid;

    grid-template-columns:
        1fr 0.85fr;

    align-items: center;

    gap: 70px;

    padding:
        70px 0
        100px;
}

.product-hero-left {
    min-width: 0;
}

.product-hero-left h1 {
    margin: 0;

    font-size:
        clamp(
            58px,
            7vw,
            105px
        );

    line-height: .85;

    font-weight: 800;

    letter-spacing: -6px;
}

.product-hero-left h1 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px
        rgba(255,255,255,.85);
}

.product-hero-text {
    max-width: 560px;

    margin-top: 35px;

    color: #666;

    font-size: 16px;

    line-height: 1.9;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.product-hero-visual {
    position: relative;

    width: min(420px, 100%);

    height: 420px;

    margin: auto;

    display: grid;

    place-items: center;
}

.product-orbit {
    position: absolute;

    border:
        1px solid
        rgba(255,255,255,.16);

    border-radius: 50%;
}

.orbit-a {
    width: 220px;
    height: 220px;

    transform:
        rotate(25deg)
        scaleX(1.5);

    animation:
        productOrbitOne
        10s
        linear
        infinite;
}

.orbit-b {
    width: 290px;
    height: 290px;

    transform:
        rotate(-20deg)
        scaleX(.7);

    animation:
        productOrbitTwo
        14s
        linear
        infinite;
}

.orbit-c {
    width: 360px;
    height: 360px;

    transform:
        rotate(60deg)
        scaleY(.45);

    animation:
        productOrbitThree
        18s
        linear
        infinite;
}

@keyframes productOrbitOne {

    from {
        transform:
            rotate(25deg)
            scaleX(1.5);
    }

    to {
        transform:
            rotate(385deg)
            scaleX(1.5);
    }

}

@keyframes productOrbitTwo {

    from {
        transform:
            rotate(-20deg)
            scaleX(.7);
    }

    to {
        transform:
            rotate(340deg)
            scaleX(.7);
    }

}

@keyframes productOrbitThree {

    from {
        transform:
            rotate(60deg)
            scaleY(.45);
    }

    to {
        transform:
            rotate(420deg)
            scaleY(.45);
    }

}

.product-core {
    position: relative;

    width: 115px;
    height: 115px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(255,255,255,.7);

    border-radius: 50%;

    background:
        rgba(255,255,255,.015);

    box-shadow:
        0 0 80px
        rgba(255,255,255,.03);
}

.product-core::before {
    content: "";

    position: absolute;

    inset: 14px;

    border:
        1px solid
        rgba(255,255,255,.2);

    border-radius: 50%;
}

.product-core span {
    position: relative;

    color: #888;

    font-size: 8px;

    letter-spacing: 3px;
}

.product-hero-visual small {
    position: absolute;

    bottom: 15px;

    color: #444;

    font-size: 7px;

    letter-spacing: 3px;
}


/* =========================================================
   INTRO
========================================================= */

.product-introduction {
    display: grid;

    grid-template-columns: 160px 1fr;

    gap: 55px;

    padding:
        100px 0;

    border-top:
        1px solid
        rgba(255,255,255,.1);
}

.product-story-number {
    color: #444;

    font-size: 8px;

    letter-spacing: 2px;

    padding-top: 7px;
}

.product-introduction-content {
    max-width: 780px;
}

.product-introduction-content .small-label {
    color: #444;

    font-size: 15px;

    letter-spacing: 2px;
}

.product-introduction-content h2 {
    margin:
        30px 0
        35px;

    font-size:
        clamp(
            42px,
            5vw,
            72px
        );

    line-height: .88;

    letter-spacing: -4px;
}

.product-introduction-content h2 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px
        rgba(255,255,255,.8);
}

.product-introduction-content p {
    max-width: 700px;

    margin-top: 20px;

    color: #666;

    font-size: 16px;

    line-height: 1.9;
}


/* =========================================================
   PRODUCT MAP
========================================================= */

.product-selection {
    padding:
        80px 0
        120px;
}

.product-section-heading {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 18px;

    border-bottom:
        1px solid
        rgba(255,255,255,.1);
}

.product-section-heading span,
.product-section-heading small {
    color: #444;

    font-size: 15px;

    letter-spacing: 2px;
}

.product-selection-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 1px;

    margin-top: 20px;

    background:
        rgba(255,255,255,.12);
}

.product-selection-card {
    position: relative;

    min-height: 250px;

    padding: 28px;

    color: #fff;

    text-decoration: none;

    background:
        rgba(3,3,3,.8);

    transition:
        background .4s ease;
}

.product-selection-card:hover {
    background:
        rgba(255,255,255,.04);
}

.product-selection-card > span {
    color: #444;

    font-size: 8px;
}

.product-selection-card strong {
    display: block;

    margin-top: 65px;

    font-size: 40px;

    letter-spacing: -2px;
}

.product-selection-card small {
    display: block;

    margin-top: 9px;

    color: #555;

    font-size: 12px;

    letter-spacing: 2px;
}

.product-selection-card p {
    max-width: 230px;

    margin-top: 18px;

    color: #555;

    font-size: 16px;

    line-height: 1.8;
}

.product-selection-card b {
    position: absolute;

    right: 25px;
    bottom: 22px;

    color: #555;

    font-size: 18px;

    font-weight: 300;
}


/* =========================================================
   PRODUCT DETAILS
========================================================= */

.product-detail-block {
    padding:
        110px 0
        140px;

    border-top:
        1px solid
        rgba(255,255,255,.1);

    scroll-margin-top: 100px;
}

.product-detail-header {
    display: flex;

    justify-content: space-between;

    margin-bottom: 75px;
}

.product-detail-header span,
.product-detail-header small {
    color: #444;

    font-size: 15px;

    letter-spacing: 2.5px;
}


/* =========================================================
   PRODUCT HERO AREA
========================================================= */

.product-detail-hero {
    display: grid;

    grid-template-columns:
        40%
        60%;

    gap: 60px;

    align-items:
        start;
}

.product-detail-title h2 {
    margin-top: 35px;

    font-size:
        clamp(
            75px,
            9vw,
            125px
        );

    line-height: .8;

    letter-spacing: -7px;
}

.ecommerce-title {
    font-size:
        clamp(
            52px,
            6vw,
            90px
        ) !important;

    letter-spacing: -5px !important;
}

.product-detail-copy {
    max-width: 650px;

    padding-top: 5px;
}

.product-detail-copy h3 {
    margin: 0;

    font-size:
        clamp(
            30px,
            4vw,
            52px
        );

    line-height: .9;

    letter-spacing: -3px;

    font-weight: 500;
}

.product-detail-copy h3 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px
        rgba(255,255,255,.8);
}

.product-detail-copy p {
    max-width: 630px;

    margin-top: 24px;

    color: #666;

    font-size: 16px;

    line-height: 1.9;
}


/* =========================================================
   PRODUCT ICONS
========================================================= */

.product-icon {
    position: relative;

    width: 62px;

    height: 62px;
}


/* ERP */

.product-icon-erp {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 4px;

    padding: 5px;

    transform:
        rotate(45deg);
}

.product-icon-erp i {
    border:
        1px solid
        rgba(255,255,255,.7);
}


/* CRM */

.product-icon-crm i {
    position: absolute;

    width: 9px;
    height: 9px;

    border:
        1px solid
        rgba(255,255,255,.8);

    border-radius:
        50%;
}

.product-icon-crm i:nth-child(1) {
    left: 27px;
    top: 0;
}

.product-icon-crm i:nth-child(2) {
    left: 0;
    bottom: 3px;
}

.product-icon-crm i:nth-child(3) {
    right: 0;
    bottom: 3px;
}

.product-icon-crm i:nth-child(4) {
    left: 27px;
    top: 26px;
}

.product-icon-crm::before,
.product-icon-crm::after {
    content: "";

    position: absolute;

    width: 42px;

    height: 1px;

    left: 50%;

    top: 50%;

    background:
        rgba(255,255,255,.3);

    transform-origin:
        left center;
}

.product-icon-crm::before {
    transform:
        rotate(140deg);
}

.product-icon-crm::after {
    transform:
        rotate(40deg);
}


/* ECOMMERCE */

.product-icon-shop span {
    position: absolute;

    left: 8px;

    top: 17px;

    width: 45px;

    height: 28px;

    border:
        1px solid
        white;

    transform:
        skew(-8deg);
}

.product-icon-shop::before {
    content: "";

    position: absolute;

    left: 0;

    top: 13px;

    width: 18px;

    height: 1px;

    background:
        white;
}

.product-icon-shop i {
    position: absolute;

    bottom: 6px;

    width: 7px;

    height: 7px;

    border:
        1px solid
        white;

    border-radius:
        50%;
}

.product-icon-shop i:first-of-type {
    left: 18px;
}

.product-icon-shop i:last-of-type {
    left: 47px;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.product-capability-area {
    display: grid;

    grid-template-columns:
        32%
        68%;

    gap: 50px;

    margin-top: 100px;

    padding-top: 70px;

    border-top:
        1px solid
        rgba(255,255,255,.08);
}

.product-capability-title span {
    color: #444;

    font-size: 8px;

    letter-spacing: 2px;
}

.product-capability-title h3 {
    max-width: 430px;

    margin-top: 30px;

    font-size:
        clamp(
            35px,
            4vw,
            58px
        );

    line-height: .9;

    letter-spacing: -4px;
}

.product-capability-title h3 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px
        rgba(255,255,255,.8);
}

.product-capability-list {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 14px;
}

.product-capability-list article {
    min-height: 195px;

    padding: 24px;

    border:
        1px solid
        rgba(255,255,255,.08);

    background:
        rgba(255,255,255,.01);

    transition:
        transform .35s ease,
        border-color .35s ease;
}

.product-capability-list article:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(255,255,255,.28);
}

.product-capability-list article > span {
    color: #444;

    font-size: 7px;

    letter-spacing: 2px;
}

.product-capability-list h4 {
    margin-top: 34px;

    color:
        rgba(255,255,255,.85);

    font-size: 15px;

    letter-spacing: 1.2px;
}

.product-capability-list p {
    margin-top: 15px;

    color: #555;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   PRODUCT STATEMENT
========================================================= */

.product-statement {
    margin-top: 90px;

    padding-top: 65px;

    border-top:
        1px solid
        rgba(255,255,255,.08);
}

.product-statement > span {
    color: #444;

    font-size: 15px;

    letter-spacing: 2px;
}

.product-statement h3 {
    max-width: 850px;

    margin-top: 30px;

    font-size:
        clamp(
            40px,
            5vw,
            70px
        );

    line-height: .85;

    letter-spacing: -4px;
}

.product-statement h3 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px
        rgba(255,255,255,.8);
}


/* =========================================================
   CRM JOURNEY
========================================================= */

.crm-journey,
.commerce-flow {
    margin-top: 90px;

    border:
        1px solid
        rgba(255,255,255,.08);
}

.crm-journey-line {
    display: grid;

    grid-template-columns:
        1fr
        45px
        1fr
        45px
        1fr
        45px
        1fr;

    align-items:
        center;

    padding: 30px;
}

.crm-journey-line > div {
    min-height: 125px;

    padding: 20px;

    border:
        1px solid
        rgba(255,255,255,.08);
}

.crm-journey-line > div > span {
    color: #444;

    font-size: 7px;
}

.crm-journey-line strong {
    display: block;

    margin-top: 27px;

    font-size: 15px;

    letter-spacing: 1px;
}

.crm-journey-line small {
    display: block;

    margin-top: 7px;

    color: #444;

    font-size: 16px;
}

.crm-journey-line > i {
    color: #444;

    text-align: center;

    font-size: 15px;

    font-style: normal;
}


/* =========================================================
   ECOMMERCE FLOW
========================================================= */

.commerce-flow-line {
    display: grid;

    grid-template-columns:
        1fr
        30px
        1fr
        30px
        1fr
        30px
        1fr
        30px
        1fr;

    align-items:
        center;

    padding: 30px 25px;
}

.commerce-flow-line > div {
    min-height: 120px;

    padding: 18px;

    border:
        1px solid
        rgba(255,255,255,.08);
}

.commerce-flow-line > div > span {
    color: #444;

    font-size: 7px;
}

.commerce-flow-line strong {
    display: block;

    margin-top: 27px;

    font-size: 15px;

    letter-spacing: 1px;
}

.commerce-flow-line small {
    display: block;

    margin-top: 6px;

    color: #444;

    font-size: 16px;
}

.commerce-flow-line > i {
    color: #444;

    font-size: 14px;

    font-style: normal;

    text-align:
        center;
}


/* =========================================================
   TECHNOLOGY
========================================================= */

.product-technology {
    padding:
        120px 0;

    border-top:
        1px solid
        rgba(255,255,255,.08);
}

.product-technology h2 {
    max-width: 850px;

    margin-top: 45px;

    font-size:
        clamp(
            48px,
            6vw,
            90px
        );

    line-height: .85;

    letter-spacing: -5px;
}

.product-technology h2 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px
        rgba(255,255,255,.8);
}

.product-technology > p {
    max-width: 620px;

    margin-top: 30px;

    color: #555;

    font-size: 16px;

    line-height: 1.9;
}

.product-tech-tags {
    display: flex;

    flex-wrap:
        wrap;

    gap: 7px;

    margin-top: 30px;
}

.product-tech-tags span {
    padding:
        8px 11px;

    border:
        1px solid
        rgba(255,255,255,.1);

    color: #555;

    font-size: 7px;

    letter-spacing: 1px;
}


/* =========================================================
   FINAL
========================================================= */

.product-final {
    padding:
        1px 0
        50px;

    text-align:
        center;
}

.product-final > span {
    color: #444;

    font-size: 8px;

    letter-spacing: 3px;
}

.product-final h2 {
    max-width: 900px;

    margin:
        40px auto 0;

    font-size:
        clamp(
            48px,
            7vw,
            100px
        );

    line-height: .85;

    letter-spacing: -6px;
}

.product-final h2 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px
        rgba(255,255,255,.8);
}

.product-final > p {
    max-width: 550px;

    margin:
        30px auto;

    color: #555;

    font-size: 16px;

    line-height: 1.9;
}

.product-final-button {
    display: inline-flex;

    align-items:
        center;

    gap: 20px;

    padding:
        14px 20px;

    border:
        1px solid
        rgba(255,255,255,.18);

    color: #fff;

    text-decoration: none;

    font-size: 15px;

    letter-spacing: 2px;

    transition:
        .3s ease;
}

.product-final-button:hover {
    color: #000;

    background: #fff;
}

.product-final-button b {
    font-size: 14px;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .product-page-content {
        width: 88%;
    }

    .product-hero {
        grid-template-columns:
            1fr;

        gap: 50px;
    }

    .product-hero-visual {
        width: 350px;
        height: 350px;
    }

    .product-detail-hero {
        grid-template-columns:
            1fr;

        gap: 45px;
    }

    .product-capability-area {
        grid-template-columns:
            1fr;

        gap: 45px;
    }

    .product-selection-grid {
        grid-template-columns:
            1fr;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .product-introduction {
        grid-template-columns:
            1fr;

        gap: 30px;
    }

    .product-capability-list {
        grid-template-columns:
            repeat(2,1fr);
    }

    .crm-journey-line {
        grid-template-columns:
            1fr;

        gap: 10px;
    }

    .crm-journey-line > i {
        display:
            none;
    }

    .commerce-flow-line {
        grid-template-columns:
            1fr;

        gap: 10px;
    }

    .commerce-flow-line > i {
        display:
            none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .product-page-content {
        width: 92%;

        padding-top:
            100px;
    }

    .product-hero {
        min-height:
            auto;

        padding:
            45px 0
            80px;
    }

    .product-hero-left h1 {
        font-size:
            48px;

        letter-spacing:
            -3px;
    }

    .product-hero-text {
        font-size:
            11px;
    }

    .product-hero-visual {
        width:
            270px;

        height:
            270px;
    }

    .orbit-a {
        width: 150px;
        height: 150px;
    }

    .orbit-b {
        width: 190px;
        height: 190px;
    }

    .orbit-c {
        width: 230px;
        height: 230px;
    }

    .product-core {
        width: 80px;
        height: 80px;
    }

    .product-introduction {
        padding:
            75px 0;
    }

    .product-introduction-content h2 {
        font-size:
            42px;

        letter-spacing:
            -3px;
    }

    .product-detail-block {
        padding:
            80px 0
            100px;
    }

    .product-detail-header {
        display:
            block;

        line-height:
            2;
    }

    .product-detail-header small {
        display:
            block;
    }

    .product-detail-title h2 {
        font-size:
            70px;

        letter-spacing:
            -5px;
    }

    .ecommerce-title {
        font-size:
            55px !important;

        letter-spacing:
            -4px !important;
    }

    .product-detail-copy h3 {
        font-size:
            28px;
    }

    .product-detail-copy p {
        font-size:
            11px;
    }

    .product-capability-list {
        grid-template-columns:
            1fr;
    }

    .product-capability-list article {
        min-height:
            180px;
    }

    .product-statement h3 {
        font-size:
            42px;

        letter-spacing:
            -3px;
    }

    .product-side-left,
    .product-side-right {
        display:
            none;
    }

}
/* =========================================================
   REDUCE TOP GAP — PRODUCTS PAGE
========================================================= */

.product-page-content {
    padding-top: 50px !important;
}

.product-hero {
    min-height: 520px !important;
    padding-top: 25px !important;
    padding-bottom: 70px !important;
}


/* Keep the hero content closer to the header */
.product-hero-left {
    transform: translateY(-10px);
}

.product-hero-visual {
    transform: translateY(-10px);
}


/* Laptop */
@media (max-width: 1200px) {

    .product-page-content {
        padding-top: 50px !important;
    }

    .product-hero {
        min-height: 500px !important;
        padding-top: 20px !important;
    }

}


/* Mobile */
@media (max-width: 600px) {

    .product-page-content {
        padding-top: 35px !important;
    }

    .product-hero {
        min-height: auto !important;
        padding-top: 20px !important;
        padding-bottom: 60px !important;
    }

}
/* =========================================================
   CAPABILITY SIDE HEADING — MATCH SECOND IMAGE STYLE
========================================================= */

.product-capability-area {
    grid-template-columns: 39% 61% !important;
    gap: 65px !important;
    align-items: start !important;
}

.product-capability-title {
    padding-top: 5px !important;
}

.product-capability-title span {
    display: block !important;

    margin-bottom: 28px !important;

    color: #444 !important;

    font-size: 8px !important;

    letter-spacing: 2.5px !important;
}

.product-capability-title h3 {
    max-width: 500px !important;

    margin: 0 !important;

    font-size:
        clamp(48px, 5vw, 78px) !important;

    line-height: 0.88 !important;

    letter-spacing: -5px !important;

    font-weight: 800 !important;
}

.product-capability-title h3 span {
    display: block !important;

    margin: 0 !important;

    color: transparent !important;

    -webkit-text-stroke:
        1px rgba(255,255,255,0.82) !important;
}


/* =========================================================
   KEEP CAPABILITY CARDS BALANCED
========================================================= */

.product-capability-list {
    align-self: start !important;

    padding-top: 0 !important;
}

.product-capability-list article {
    min-height: 205px !important;

    padding: 26px !important;
}


/* =========================================================
   ERP
========================================================= */

#product-erp .product-capability-title h3 {
    max-width: 490px !important;
}


/* =========================================================
   CRM
========================================================= */

#product-crm .product-capability-title h3 {
    max-width: 500px !important;
}


/* =========================================================
   E-COMMERCE
========================================================= */

#product-ecommerce .product-capability-title h3 {
    max-width: 500px !important;
}


/* =========================================================
   DESKTOP — MORE LIKE YOUR SECOND SCREENSHOT
========================================================= */

@media (min-width: 1201px) {

    .product-capability-area {
        grid-template-columns: 40% 60% !important;

        gap: 70px !important;

        min-height: 520px;
    }

    .product-capability-title h3 {
        font-size: 70px !important;

        line-height: 0.86 !important;
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .product-capability-area {
        grid-template-columns: 38% 62% !important;

        gap: 45px !important;
    }

    .product-capability-title h3 {
        font-size: 55px !important;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .product-capability-area {
        grid-template-columns: 1fr !important;

        gap: 45px !important;
    }

    .product-capability-title h3 {
        max-width: 700px !important;

        font-size: 60px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .product-capability-area {
        grid-template-columns: 1fr !important;

        gap: 35px !important;

        margin-top: 70px !important;

        padding-top: 55px !important;
    }

    .product-capability-title h3 {
        max-width: 100% !important;

        font-size: 43px !important;

        line-height: 0.9 !important;

        letter-spacing: -3px !important;
    }

}
/* =========================================================
   FIX PRODUCT CAPABILITY HEADING
========================================================= */

.product-capability-title > span {
    display: block !important;

    margin-bottom: 28px !important;

    color: #444 !important;

    font-size: 15px !important;

    line-height: 1 !important;

    letter-spacing: 2.5px !important;
}


/* THIS IS THE IMPORTANT FIX */
.product-capability-title h3 {
    display: block !important;

    max-width: 520px !important;

    margin: 0 !important;

    font-size: 72px !important;

    line-height: 0.86 !important;

    font-weight: 800 !important;

    letter-spacing: -5px !important;
}


.product-capability-title h3 span {
    display: block !important;

    margin: 0 !important;

    padding: 0 !important;

    color: transparent !important;

    font-size: 72px !important;

    line-height: 0.86 !important;

    font-weight: 800 !important;

    letter-spacing: -5px !important;

    -webkit-text-stroke:
        1px rgba(255,255,255,0.82) !important;

    text-transform: none !important;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1201px) {

    .product-capability-area {
        display: grid !important;

        grid-template-columns:
            42% 58% !important;

        gap: 55px !important;

        align-items: start !important;
    }

    .product-capability-title h3,
    .product-capability-title h3 span {
        font-size: 72px !important;
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .product-capability-title h3,
    .product-capability-title h3 span {
        font-size: 60px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .product-capability-title h3,
    .product-capability-title h3 span {
        font-size: 43px !important;

        line-height: 0.88 !important;

        letter-spacing: -3px !important;
    }

}
/* =========================================================
   TECHNOLOGY SECTION
   LEFT CONTENT + RIGHT TECHNOLOGY BOXES
========================================================= */

.product-technology {
    padding: 120px 0 110px;

    border-top:
        1px solid
        rgba(255,255,255,.08);
}


/* =========================================================
   TOP LABEL
========================================================= */

.product-tech-heading {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding-bottom: 18px;

    border-bottom:
        1px solid
        rgba(255,255,255,.1);
}

.product-tech-label,
.product-tech-number {
    color: #444;

    font-size: 8px;

    letter-spacing: 2.5px;
}


/* =========================================================
   TWO COLUMN LAYOUT
========================================================= */

.product-tech-layout {
    display: grid;

    grid-template-columns:
        58%
        42%;

    gap: 60px;

    align-items: start;

    padding-top: 65px;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.product-tech-content {
    padding-right: 20px;
}

.product-tech-content h2 {
    max-width: 750px;

    margin: 0;

    font-size:
        clamp(
            52px,
            6vw,
            90px
        );

    line-height: .84;

    font-weight: 800;

    letter-spacing: -5px;
}

.product-tech-content h2 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px
        rgba(255,255,255,.8);
}

.product-tech-content p {
    max-width: 620px;

    margin-top: 30px;

    color: #555;

    font-size: 12px;

    line-height: 1.9;
}


/* =========================================================
   RIGHT SIDE TECHNOLOGY LIST
========================================================= */

.product-tech-stack {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    padding-top: 5px;
}


/* =========================================================
   TECHNOLOGY BOX
========================================================= */

.tech-box {
    position: relative;

    min-height: 58px;

    display: flex;

    align-items: center;

    padding: 0 16px;

    border:
        1px solid
        rgba(255,255,255,.12);

    background:
        rgba(255,255,255,.015);

    color:
        rgba(255,255,255,.55);

    font-size: 15px;

    letter-spacing: 1.5px;

    transition:
        color .3s ease,
        border-color .3s ease,
        background .3s ease,
        transform .3s ease;
}


/* small line on left */

.tech-box::before {
    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 2px;

    height: 0;

    background: #fff;

    transition:
        height .3s ease;
}


.tech-box:hover {
    color: #fff;

    border-color:
        rgba(255,255,255,.35);

    background:
        rgba(255,255,255,.035);

    transform:
        translateX(4px);
}


.tech-box:hover::before {
    height: 100%;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1201px) {

    .product-tech-layout {
        grid-template-columns:
            58%
            42%;

        gap: 70px;
    }

    .product-tech-stack {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .product-tech-layout {
        grid-template-columns:
            55%
            45%;

        gap: 40px;
    }

    .product-tech-content h2 {
        font-size:
            65px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .product-tech-layout {
        grid-template-columns:
            1fr;

        gap: 45px;
    }

    .product-tech-content {
        padding-right: 0;
    }

    .product-tech-content h2 {
        max-width: 700px;

        font-size:
            60px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .product-technology {
        padding:
            90px 0;
    }

    .product-tech-heading {
        display: block;

        line-height: 2;
    }

    .product-tech-number {
        margin-top: 5px;
    }

    .product-tech-layout {
        padding-top: 45px;
    }

    .product-tech-content h2 {
        font-size:
            45px;

        letter-spacing:
            -3px;
    }

    .product-tech-content p {
        font-size:
            11px;
    }

    .product-tech-stack {
        grid-template-columns:
            1fr 1fr;

        gap: 8px;
    }

    .tech-box {
        min-height:
            52px;

        padding:
            0 12px;

        font-size:
            7px;
    }

}
/* =========================================================
   ERP FULL FORM
   ========================================================= */

.product-detail-title .erp-full-form {
    margin-top: 18px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 18px;
    font-weight: 400;

    letter-spacing: 3px;
    line-height: 1.4;

    text-transform: uppercase;
}

/* Desktop */
@media (min-width: 901px) {

    .product-detail-title .erp-full-form {
        margin-top: 20px;
        font-size: 18px;
        letter-spacing: 3px;
    }

}

/* Mobile */
@media (max-width: 600px) {

    .product-detail-title .erp-full-form {
        margin-top: 14px;
        font-size: 16px;
        letter-spacing: 2px;
    }

}
/* =========================================================
   PRODUCTS PAGE
   GLOBAL PARAGRAPH & DESCRIPTION COLOUR FIX
   ========================================================= */

.product-page-screen p,
.product-hero-text,
.product-introduction-content p,
.product-selection-card p,
.product-detail-copy p,
.product-capability-list p,
.product-technology > p,
.product-tech-content p,
.product-final > p {
    color: #b8b8b8 !important;
}


/* Product card descriptions */
.product-selection-card p {
    color: #b8b8b8 !important;
}


/* Product detail descriptions */
.product-detail-copy p {
    color: #b8b8b8 !important;
}


/* Capability descriptions */
.product-capability-list p {
    color: #b8b8b8 !important;
}


/* Technology description */
.product-technology > p,
.product-tech-content p {
    color: #b8b8b8 !important;
}


/* Final description */
.product-final > p {
    color: #b8b8b8 !important;
}


/* =========================================================
   MOBILE
   KEEP SAME DESCRIPTION COLOUR
   ========================================================= */

@media (max-width: 900px) {

    .product-page-screen p,
    .product-hero-text,
    .product-introduction-content p,
    .product-selection-card p,
    .product-detail-copy p,
    .product-capability-list p,
    .product-technology > p,
    .product-tech-content p,
    .product-final > p {
        color: #b8b8b8 !important;
    }

}


@media (max-width: 600px) {

    .product-page-screen p,
    .product-hero-text,
    .product-introduction-content p,
    .product-selection-card p,
    .product-detail-copy p,
    .product-capability-list p,
    .product-technology > p,
    .product-tech-content p,
    .product-final > p {
        color: #b8b8b8 !important;
    }

}
/* =========================================================
   PRODUCTS PAGE
   LIGHT & VISIBLE BORDERS
   ========================================================= */

/* Main product section separators */
.product-introduction,
.product-detail-block,
.product-technology {
    border-color: rgba(255, 255, 255, 0.25) !important;
}


/* Product section headings */
.product-section-heading,
.product-tech-heading {
    border-color: rgba(255, 255, 255, 0.28) !important;
}


/* ERP / CRM / E-COMMERCE product cards */
.product-selection-grid {
    background: rgba(255, 255, 255, 0.25) !important;
}

.product-selection-card {
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
}


/* Product capability cards */
.product-capability-list article {
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
}

.product-capability-list article:hover {
    border-color: rgba(255, 255, 255, 0.50) !important;
}


/* CRM journey */
.crm-journey {
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.crm-journey-line > div {
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
}


/* E-commerce flow */
.commerce-flow {
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.commerce-flow-line > div {
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
}


/* Technology boxes */
.tech-box {
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
}

.tech-box:hover {
    border-color: rgba(255, 255, 255, 0.50) !important;
}


/* Technology tags */
.product-tech-tags span {
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
}


/* Final button */
.product-final-button {
    border: 1px solid rgba(255, 255, 255, 0.30) !important;
}

.product-final-button:hover {
    border-color: rgba(255, 255, 255, 0.70) !important;
}


/* =========================================================
   PRODUCT HERO ORBIT
   ========================================================= */

.product-orbit {
    border-color: rgba(255, 255, 255, 0.22) !important;
}

.product-core {
    border-color: rgba(255, 255, 255, 0.70) !important;
}

.product-core::before {
    border-color: rgba(255, 255, 255, 0.30) !important;
}


/* =========================================================
   ALL PRODUCT SCREEN SIZES
   ========================================================= */

@media (max-width: 1200px) {

    .product-selection-card,
    .product-capability-list article,
    .crm-journey-line > div,
    .commerce-flow-line > div,
    .tech-box {
        border-color: rgba(255, 255, 255, 0.25) !important;
    }

}


@media (max-width: 900px) {

    .product-selection-card,
    .product-capability-list article,
    .crm-journey-line > div,
    .commerce-flow-line > div,
    .tech-box {
        border-color: rgba(255, 255, 255, 0.27) !important;
    }

}


@media (max-width: 600px) {

    .product-selection-card,
    .product-capability-list article,
    .crm-journey-line > div,
    .commerce-flow-line > div,
    .tech-box {
        border: 1px solid rgba(255, 255, 255, 0.28) !important;
    }

}