/* override for no scroll main menu DRUPAL  */
header.main-header {
    position: relative;
    width: 100vw;
    background: transparent;
    border: none;
    z-index: 9;
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}
header.main-header.hidden-header {
    opacity: 0;
    z-index: -1;
}
header.main-header > .top {
    display: none;
}
header.main-header > .bottom {
    margin: 0;
    background: #fff;
}

.sticky-header .main-header > .bottom {
    position: relative;
    display: none;
}

main.main-container {
    margin-top: 0px;
}


.landing-main-container .hide-image {
    opacity: 0;
    /* max-height: 440px; */
}


/* override for no scroll main menu WP  */
div.site.sticky-header .site-header {
    position: relative;
}

div.site.sticky-header > main {
    padding-top: 0px;
}

/* begin landing styles */
.landing-main-container {
    margin: 0;
    overflow: visible; /* removed overflow:hidden so sticky can work */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    pointer-events: none;
    font-size: 1.6rem;
}


.landing-main-container .h1, 
.landing-main-container .h2, 
.landing-main-container .h3, 
.landing-main-container .h4, 
.landing-main-container .h5, 
.landing-main-container .h6, 
.landing-main-container h1, 
.landing-main-container h2, 
.landing-main-container h3, 
.landing-main-container h4, 
.landing-main-container h5, 
.landing-main-container h6 {
	font-family: "Roboto", "Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight: 700;
    margin: 0;
	margin-bottom: 1rem;
}

.landing-main-container p {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 2rem;
    line-height: 1.5;
}


.landing-main-container #landing-content {
    width: 100%;
}

.landing-main-container .landing-content-box {
    background-color: #000000;
    pointer-events: auto;
    /*padding-top: 70px;*/
}

.landing-main-container .landing-content-box section {
    padding: 120px 0;
    margin: 0 auto;
}

.landing-main-container .landing-content-box section.no-padding {
    padding: 0;
}

/*
.landing-main-container .landing-content-box section:last-child {
    padding-bottom: 0px;
}
*/

/*
#quote {
    font-size: clamp(2rem, 10rem, 5vw);
    color: #dfdcff;
    text-align: center;
    line-height: 1.2
}

button {
    padding: 10px;
    margin: 20px 0;
}
*/

.landing-main-container .fade-in {
    opacity: 1;
    transform: translateY(0px);
}

.landing-main-container #landing-extra-space {
    height: 40dvh;
    border: 1px solid red;
    background-color: transparent;
    pointer-events: none;
}


.landing-main-container .landing-content-box {
    color: #ffffff;
}

.landing-main-container .landing-content-box h1 {
    /*color: var(--wp--preset--color--came-cyan) !important;*/
    font-family: Came,Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 5rem;
    line-height: 5rem;
    color: #ffffff;
    margin: 0;
    margin-bottom: 1rem;
}

.landing-main-container .lp-header {
    height: 100vh;
    position: relative;
    background-color: black;
}

.landing-main-container .box-top {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 0;
}

.landing-main-container .video-fs {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.landing-main-container .video-fs video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.landing-main-container .video-fs img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Zoom-out effect managed by GSAP: image appears slightly larger and settles to
   normal scale while fading in. No infinite loop — happens once on reveal. */

.landing-main-container .box-title {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    z-index: 5;
    /* width: 1170px; */
    width: 70%;
    height: 100%;
    margin: 0 auto;
}

.landing-main-container .box-title .box {
    margin-top: 15vh;
    padding: 35px 30px;
    background-color: #00b0ed;
    max-width: 460px;
    width: 100%;
}

.landing-main-container .box-title .box h2 {
    color: #003247;
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
    margin-bottom: 1rem;
}
.landing-main-container .gallery-features {
    /* Use a CSS variable for slide width and center offset so the layout remains consistent
        across different viewport sizes and can be reused for pseudo spacing elements. */
    --slide-width: 70vw;
    --center-offset: calc((100vw - var(--slide-width)) / 2);
    overflow-y: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    width: 100%;
    padding: 0; /* spacing provided by pseudo elements inside .slider-wrapper */
    -webkit-scrollbar {
        display: none;
    }
    scrollbar-width: none;
    /* touch-action is controlled via media query and JS to avoid blocking horizontal scroll on touch devices */
    /* touch-action is intentionally not set here to allow native horizontal panning on mobile */
}


/* for mouse only */
@media (pointer: fine) and (hover: hover) {
    .landing-main-container .gallery-features {
        cursor: grab;
        touch-action: pan-y; /* desktop only: allow vertical page pan while enabling mouse drag */
    }
    .landing-main-container .gallery-features.drag-active {
        cursor: grabbing;
        user-select: none;
    }

    /*
    .landing-main-container .gallery-features {
        background-color: red;
    }
    */
}

/* Restored slider wrapper layout (was accidentally removed) */
.landing-main-container .slider-wrapper {
    display: flex;
    gap: 20px; /* horizontal spacing between slides */
    align-items: stretch;
}

/* Add pseudo elements so first/last slides can be centered without hitting the page edge */
.landing-main-container .slider-wrapper::before,
.landing-main-container .slider-wrapper::after {
    content: "";
    flex: 0 0 var(--center-offset);
    height: 1px; /* minimal height so it does not affect vertical flow */
    pointer-events: none;
}

.landing-main-container .slider-item {
    flex: 0 0 var(--slide-width);
    scroll-snap-align: center;
    text-align: center;
    margin-right: 0; /* spacing handled with gap */
    /* Make slides look clickable */
    cursor: pointer;
    /* height: 680px; */
    /* height: 780px; */
    /* min-height: 760px; */
    height: 80vh;
    /* height: clamp(580px, 50vw, 860px); */
    height: clamp(580px, 50vw, 780px);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-main-container .slider-item img {
    width: 100%;
    display: block;
    margin: 0 auto;
    height: 100%;
    object-fit: cover;
    -webkit-user-drag: none; /* prevent default image drag which interferes with pointer drag */
    -webkit-user-select: none;
    user-select: none;
}

.landing-main-container .content-box {
    height: 100%;
}

.landing-main-container .slider-item .desc-text {
    position: static;
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 16px 0 0 0;
    margin-bottom: 25px;
}

.landing-main-container .slider-item .desc-text img {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    object-fit: contain;
    display: block;
}

.landing-main-container .slider-item .desc-text .block-text-full {
    text-align: left;
    width: 100%;
}

.landing-main-container .slider-item .desc-text .block-text-full h4 {
    font-size: 1.08em;
    line-height: 1.45;
    font-weight: 700;
    margin: 0;
}

.landing-main-container .slider-item .desc-text .block-text-full h5 {
    /*
    font-size: 2.4em;
    line-height: 1.1;
    */
    font-size: clamp(2rem, 3vw, 3.4rem);
    line-height: clamp(2rem, 3vw, 3.4rem);
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.landing-main-container .slider-item .desc-text .block-text-full p {
    max-width: 800px;
    color: #B1B1B1;
    font-weight: 700;
}

.landing-main-container .slider-item p {
    text-align: left;
    position: relative;
    width: 100%;
    margin: 0;
    /* padding: 12px 16px; */
    font-size: 1.08em;
    line-height: 1.45;
    font-weight: 400;
    border-radius: 16px;
}

.landing-main-container .dots {
    display: flex;
    justify-content: center;
    background: rgba(55, 55, 55, 0.5);
    padding: 20px;
    border-radius: 100px;
    width: fit-content;
    backdrop-filter: blur(5px);
}

/* Make dots sticky inside the gallery-section and horizontally centered */
.landing-main-container .gallery-section .dots-container {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    bottom: 0;           /* stick to the bottom of the viewport while within the container */
    left: 0;
    right: 0;
    display: flex;
    justify-content: center; /* center horizontally */
    align-items: center;
    z-index: 20;
    padding: 30px 0;     /* vertical spacing */
    pointer-events: auto; /* enable clicks inside dots when parent has pointer-events disabled */
    background: transparent;
    margin: 0;
    padding-top: 40px;
}

/* Fallback when an ancestor is clipping (overflow:hidden/auto) and sticky can't work:
    keep dots anchored to the bottom of the gallery-section using absolute positioning */
.landing-main-container .gallery-section .dots-container.absolute-fallback {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    justify-content: center;
    pointer-events: auto;
}

.landing-main-container .dot {
    width: 10px;
    height: 10px;
    border-radius: 20px;
    background-color: rgba(245, 245, 247, 0.8);
    margin: 0 8px;
    cursor: pointer;
    transition: background-color 0.3s, width 0.3s;
}

.landing-main-container .dot.active {
    background-color: #ffffff;
    border-radius: 0px;
    /* background-color: #00b0ed; */
    /* border-radius: 20px; */
    width: 30px;
}

.landing-main-container .gallery-section {
    background-color: #222222;
    position: relative;
    /* Ensure enough bottom padding so the gallery content doesn't get overlapped by sticky dots. Adjust as needed for your design. */
    padding-bottom: 40px;
}

/* ===== CUSTOM GALLERY SECTION ===== */
.landing-main-container .custom-gallery-section {
    position: relative;
    padding-bottom: 40px;
    height: 100vh;
}

/* Background image layer - covers full section behind the scroll */
.landing-main-container .custom-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    padding: 10vh 0 14vh 0;
    overflow: hidden;  /* clips the 150vw image to section bounds */
    pointer-events: none;
    background-color: #ffffff;
}

.landing-main-container .custom-bg-layer img {
    width: 100vw;
    max-width: none;
    height: 100%;
    object-fit: contain;
    /* object-position: center center; */
    object-position: calc(92% - 1vw) center;
    display: block;
    will-change: transform;
}

.landing-main-container .custom-gallery-section .fade-block {
    position: relative;
    z-index: 1;
}

/* Horizontal scroll container */
.landing-main-container .gallery-features-custom {
    --slide-width-custom: 100vw;
    --center-offset-custom: calc((100vw - var(--slide-width-custom)) / 2);
    overflow-y: hidden;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: 100%;
    padding: 0;
    scrollbar-width: none;
}

.landing-main-container .gallery-features-custom::-webkit-scrollbar {
    display: none;
}

@media (pointer: fine) and (hover: hover) {
    .landing-main-container .gallery-features-custom {
        cursor: grab;
        touch-action: pan-y;
    }
    .landing-main-container .gallery-features-custom.drag-active {
        cursor: grabbing;
        user-select: none;
    }
}

.landing-main-container .slider-wrapper-custom {
    display: flex;
    gap: 20px;
    align-items: stretch;
    position: relative;
}

.landing-main-container .slider-wrapper-custom::before,
.landing-main-container .slider-wrapper-custom::after {
    content: "";
    flex: 0 0 var(--center-offset-custom);
    height: 1px;
    pointer-events: none;
}

.landing-main-container .custom-slide-item {
    flex: 0 0 var(--slide-width-custom);
    scroll-snap-align: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 60px;
    /* min-height: 420px; */
    height: 80vh;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-main-container .custom-slide-item .card-content {
    /* background: rgba(0, 0, 0, 0.65); */
    /*
    background: rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
    border-radius: 20px;
    padding: 32px 30px;
    width: 100%;
    /* max-width: 480px; */
    max-width: 30vw;
    min-width: 360px;
    text-align: left;
    box-shadow: 0px 0px 20px #0000001c;
    margin-left: 50px;
}

.landing-main-container .custom-slide-item .card-content h4 {
    color: #00b0ed;
    font-size: 34px;
    /* text-shadow: 10px 1px 10px #c7d2d6; */
    /* font-size: 2.2rem; */
    margin-bottom: 10px;
    font-weight: 700;
}

.landing-main-container .custom-slide-item .card-content p {
    /* color: #d1d1d6; */
    color: #003247;
    font-weight: 700;
    font-size: 1.08em;
    line-height: 1.5;
    margin: 0;
}

/* Sticky dots for custom gallery */
.landing-main-container .custom-gallery-section .dots-container {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    padding: 30px 0;
    pointer-events: auto;
    background: transparent;
    margin: 0;
    padding-top: 40px;
}

.landing-main-container .custom-gallery-section .dots-container.absolute-fallback {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    justify-content: center;
    pointer-events: auto;
}

.landing-main-container .slider-item .box-top {
    position: relative;
}    

.landing-main-container .title-features {
    text-align: left;
    color: #ffffff;
    max-width: 70%;
    margin: 0 auto;
    display: flex;
    padding-top: 40px;
    padding-bottom: 30px;
    justify-content: space-between;
    flex-flow: row wrap;
    align-items: flex-end;
}

.landing-main-container .title-features p {
    /* margin-left: auto; */
    align-self: center;
    margin-bottom: 0;
    flex: 0 0 auto;
}

.landing-main-container .title-features p a {
    text-decoration: none;
}

.landing-main-container .title-features h2 {
    font-weight: 700 !important;
    font-size: 4.6rem;
}

.landing-main-container .block-black-center {
    background-color: #000000;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    color: #ffffff;
}

.landing-main-container .block-black-center .header-title h2 {
    color: #ffffff;
    font-size: 7rem;
    line-height: 7rem;
    font-family: Came,Roboto,Arial,sans-serif;
    font-weight: 400;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
}

.landing-main-container .block-black-center .header-title p {
    color: #86868B;
    font-size: 18px;
    line-height: 3.6rem;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.landing-main-container .block-black-center .header-title .headline-eyebrow {
    font-size: 24px;
    color: #00b0ed;
    font-weight: 700;
}

.landing-main-container .block-black-center h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}

.landing-main-container .box-compare-features {
    display: flex;
    justify-content: center;
    gap: clamp(10px, 1.5vw, 40px);
    margin-top: 80px;
    width: 70%;
    margin: 10px auto 0 auto;
}

@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 90deg;
    inherits: false;
}

.landing-main-container .box-feature {
    --clr-card: #222222;
    --clr-1: #000000;
    --clr-2: #000000;
    --clr-3: #00b0ed;

    position: relative;
    flex: 1;
    text-align: left;
    background-color: var(--clr-card);
    border-radius: 30px;
    padding: 24px;
    overflow: hidden;
    isolation: isolate;
}

.landing-main-container .box-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(
        from var(--gradient-angle),
        var(--clr-card),
        var(--clr-1),
        var(--clr-2),
        var(--clr-3),
        var(--clr-2),
        var(--clr-1),
        var(--clr-card)
    );
    background-clip: padding-box;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    animation: came-card-rotate 3.5s linear infinite;
    pointer-events: none;
}

@keyframes came-card-rotate {
    0% {
        --gradient-angle: 0deg;
    }
    100% {
        --gradient-angle: 360deg;
    }
}

.landing-main-container .container-compare-features {
    padding-top: 10px;
}

.landing-main-container .bold {
    font-weight: bold;
    font-size: 28px !important;
}

.landing-main-container .box-info-feature h3 {
    /* font-size: 22px; */
    font-size: clamp(2rem, 1.5vw, 2.4rem);
    line-height: clamp(2rem, 1.5vw, 2.4rem);

	word-wrap: break-word;
    overflow-wrap: break-word;
    /* hyphens: auto; */

    margin-top: 15px;
    margin-bottom: 4px;
    color: #00b0ed;
    text-transform: uppercase;
}

.landing-main-container .box-info-feature h4 {
    font-size: 16px;
    margin-top: 0px;
    color: #ffffff;
    text-transform: uppercase;
}

.landing-main-container .box-info-feature p {
    margin: 30px auto;
    color: #ffffff;
    margin-bottom: 10px;
}

.landing-main-container .box-info-feature p strong {
    font-weight: bold;
    display: block;
    color: #ffffff;
}

.landing-main-container .small-icon-font {
    font-size: 20px !important;
    vertical-align: text-bottom;
}

/* download app buttons in the integration section */
.landing-main-container .download-app-container {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
    flex-direction: column;
}

.landing-main-container .download-app-container a[class^="link-download-app-"] {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    min-height: 60px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: Came,Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0.02em;
    width: fit-content;
}

.landing-main-container .download-app-container a[class^="link-download-app-"]:before {
    content: "";
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 16px;
    border: 1px solid #ffffff81;
}

.landing-main-container .link-download-app-automation:before {
    background-image: url("../assets/img/connect-app-icon-app-automation.webp");
}

.landing-main-container .link-download-app-access:before {
    background-image: url("../assets/img/connect-app-icon-came-access.webp");
}

.landing-main-container .link-download-app-thermo:before {
    background-image: url("../assets/img/connect-app-icon-app-thermo.webp");
}

.landing-main-container .link-download-app-setup-pro:before {
    background-image: url("../assets/img/connect-app-icon-app-setup-pro.webp");
}

.landing-main-container .download-app-container a[class^="link-download-app-"] span:hover,
.landing-main-container .download-app-container a[class^="link-download-app-"] span:focus-visible {
    background-color: #003247;
    color: #00b0ed;
}

.landing-main-container .download-app-container a span {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 400;
    background-color: #00b0ed;
    color: #003247;
    min-height: 50px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

/* box-quadri-links CTA buttons, matched to CAME global - NEW ATI page style */
.landing-main-container .box-quadri-links {
    display: flex;
    gap: 20px;
    justify-content: center; /* center the two buttons */
    align-items: center;
    margin-top: 24px;
    flex-wrap: wrap;
    padding-left: 25px;
    padding-right: 25px;
}

.landing-main-container .box-quadri-links .button-style1 {
    font-family: Came,Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;

    display: inline-block;
    background-color: #00b0ed; /* main brand blue used on the page */
    color: #003247; /* dark color used for text on the blue background in the landing */
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    white-space: nowrap;
}

.landing-main-container .box-quadri-links .button-style1:hover,
.landing-main-container .box-quadri-links .button-style1:focus {
    background-color: #003247;
    color: #00b0ed;
}

.landing-main-container .box-video1 {
    margin-top: 80px;
    width: 100%;
}

.landing-main-container .box-video1 video {
    width: 100%;
    display: block;
}

.landing-main-container .bg-gradient-black {
    background-image: linear-gradient(rgb(0,0,0),rgb(29,29,31) 50%);
}

.landing-main-container .bg-inverse-gradient-black {
    background-image: linear-gradient(rgb(29,29,31), rgb(0,0,0) 90%);
}

.landing-main-container .box-last-image {
    height: 30vw;
    overflow: hidden;
}

.landing-main-container .box-last-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.landing-main-container .border-radius {
    border-radius: 30px;
}


.landing-main-container .box-ending-links {
    display: flex;
    gap: 20px;
    justify-content: center; /* center the two buttons */
    align-items: center;
    margin-top: 24px;
    margin-bottom: 120px;
    flex-wrap: wrap;
    padding-left: 25px;
    padding-right: 25px;
}

.landing-main-container .box-ending-links .button-style1 {
    font-family: Came,Roboto,Arial,sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;

    display: inline-block;
    background-color: #00b0ed; /* main brand blue used on the page */
    color: #003247; /* dark color used for text on the blue background in the landing */
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    white-space: nowrap;
}

.landing-main-container .box-ending-links .button-style1:hover,
.landing-main-container .box-ending-links .button-style1:focus {
    background-color: #003247;
    color: #00b0ed;
}

.landing-main-container .box-ending-text {
    padding-bottom: 10px;
}

.landing-main-container .box-3d {
    width: 100%;
    /* margin: 80px auto; */
}

.landing-main-container .box-3d model-viewer {
    width: 100%;
    height: 40vw;
    /* background-color: #000000; */
}

.landing-main-container .lp-header .box {
    will-change: transform, opacity;
    transition: transform 0.2s ease-out;
}

.landing-main-container .block-white {
    background-color: rgb(245, 245, 247);
    color: #000000;
}

.landing-main-container .block-black-center.block-white .header-title h2 {
    color: rgb(51, 51, 54);
}

.landing-main-container .box-header-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: left; /* center the two buttons */
    align-items: center;
    margin-top: 24px;
}

.landing-main-container .lp-header .box-header-links {
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.landing-main-container .box-header-links .button-style1 {
    font-family: Came,Roboto,Arial,sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;

    display: inline-block;
    background-color: #ffffff;
    color: #003247;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    border: 0px solid #ffffff;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    white-space: nowrap;
}
.landing-main-container .box-header-links .button-style1:hover,
.landing-main-container .box-header-links .button-style1:focus {
    background-color: #003247;
    color: #ffffff;
}

.landing-main-container .box-header-links .button-style2 {
    font-family: Came,Roboto,Arial,sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;

    display: inline-block;
    background-color: #ffffff;
    color: #003247;
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid #ffffff;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    white-space: nowrap;
}


.landing-main-container .graph-anim {
    position: relative;
    overflow: hidden; /* clip overflowing content */
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.landing-main-container .graph-anim .lines {
    background-image: url("../assets/img/came-bkx-grafico.png");
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.landing-main-container .graph-anim .lines {
    z-index: 1;
    will-change: clip-path, -webkit-clip-path;
    /* Start fully clipped on the left: 0 width (invisible) */
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.landing-main-container .graph-anim .bg-text {
    z-index: 2; /* ensure text overlay sits above the graph */
    pointer-events: none;
}

.landing-main-container .graph-anim .bg-text img {
    width: 100%;
    display: block;
}

.landing-main-container .box-graph-anim {
    /*
    padding: 40px 0 60px 0;
    */
    margin-top: -2vw;
}


.landing-main-container .small.bold {
    font-size: 21px !important;
    line-height: 3rem !important;
}


.landing-main-container .box-2cols {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 80px;
    width: 70%;
    max-width: 1390px;
    margin: 80px auto 0 auto;
}
.landing-main-container .box-2cols .box-col {
    flex: 1;
    text-align: left;
}

.landing-main-container .box-2cols .box-col .box-video1 {
    margin-top: 0px;
}

/*
.landing-main-container .box-2cols .box-col .box-video1 video {
    border-radius: 8px;
}
*/

.landing-main-container .box-2cols .box-col .box-quadri-links {
    justify-content: left;
}

.landing-main-container .maxwidth400 {
    max-width: 400px;
}

.landing-main-container .maxwidth500 {
    max-width: 500px;
}

.landing-main-container .box-video-container {
    width: 100%;
    min-height: 500px; 
    height: 100%;
    position: relative; 
    overflow: hidden;
}

.landing-main-container .box-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover; 
    z-index: -1;
}


.landing-main-container .block-darkgrey-center {
    background-color: #222222;
}

.landing-main-container .box-big-card {
    border-radius: 30px;
    background-color: #000000;
    padding: 80px;
    width: 70%;
    max-width: 1390px;
    margin: 0 auto;
}



.landing-main-container .box-big-card.bg-connect-integration {
    background-image: url("../assets/img/connect-background-came-app_new1.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.landing-main-container .box-big-card.bg-connect-integration p {
    /* color: #003247; */
    color: #ffffff;
    max-width: 470px;
}

.landing-main-container .box-big-card.bg-connect-integration .box-2cols h2 {
    /* color: #003247; */
    color: #ffffff;
    font-size: clamp(1rem, 4vw, 6rem);
    line-height: clamp(1rem, 4vw, 6rem);
}

.landing-main-container .box-big-card p {
    color: #86868B;
}

.landing-main-container .box-big-card .box-2cols {
    width: 100%;
    margin-top: 0;
}

.landing-main-container .box-big-card .box-2cols h2 {
    color: #ffffff;
    font-size: 7rem;
    line-height: 7rem;
    font-weight: 400;
    font-family: Came,Roboto,Arial,sans-serif;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.landing-main-container .box-download-app-links {
    padding-top: 10px;
}

.landing-main-container .box-download-app-links a {
    border-radius: 8px;
    border: 1px solid #86868B;
    display: inline-block;
    margin-right: 10px;
}

.landing-main-container .box-download-app-links img {
    display: block;
    width: 140px;
    padding: 2px 10px;
    border-radius: 8px;
    background-color: #000;
}

.landing-main-container p.subtext {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 30px 0 6px 0 !important;
    line-height: 1.5 !important;
}

.landing-main-container .box-col .box-quadri-links {
    padding-left: 0;
    padding-right: 0;
}


.landing-main-container .landing-content-box section.block-wide-section {
    padding: 30px 0;
}

.landing-main-container .landing-content-box section.block-wide-section:last-child {
    padding-bottom: 120px;
}

.landing-main-container .block-wide-section .box-2cols {
    width: 100%;
    max-width: none;
    margin-top: 0;
    min-height: 50vw;
}

.landing-main-container .block-wide-section .box-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}


.landing-main-container .block-wide-section .box-col {
    display: flex;
    align-items: center;
}

.landing-main-container .block-wide-section .box-col h2 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


.landing-main-container #box-features-section {
    display: flex;
    gap: 60px;
    justify-content: center;
    width: 70%;
    max-width: 1390px;
    margin: 80px auto 0 auto;
}

.landing-main-container #box-features-section .list-features {
    flex: 1;
    text-align: left;
}

.landing-main-container #box-features-section .box-section-img-features {
    flex: 1;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.landing-main-container #box-features-section .list-features ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.landing-main-container #box-features-section .list-features ul li {
    display: block;
    padding-bottom: 8px;
}

.landing-main-container #box-features-section .list-features ul li span {
    font-weight: 700;
    background-color: #222222;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid #444444;
    cursor: pointer; /* span is clickable */
    user-select: none;
    transition: opacity .18s ease, border-color .18s ease, color .18s ease;
}

.landing-main-container #box-features-section .list-features ul li span i {
    font-size: 14px;
}

#section-img-features {
    position: relative;
    width: 100%;
    height: auto;
}


.landing-main-container #box-features-section .box-top-svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Visual state for SVG sections */
.landing-main-container #box-features-section .box-top-svg svg .section-part {
    fill: #ffffff;
    opacity: 0;
    transition: all .18s ease;
    /* transition: opacity .18s ease, fill .18s ease, filter .18s ease; */
    transform-origin: center;
    transform: scale(1.2,1.2);
}

.landing-main-container #box-features-section .box-top-svg svg .section-part.active {
    fill: #00b0ed;
    opacity: 0.7;
    transform: scale(1,1);
}

/* Visual indicator for the active list item */
.landing-main-container #box-features-section .list-features ul li.active span {
    border-color: #00b0ed;
    color: #00b0ed;
}


.landing-main-container .box-2cols-inverted {
    flex-direction: row-reverse;
}


.landing-main-container .block-black-center .header-title h3 {
    font-family: "Came", "Roboto", "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 4rem;
    line-height: 4rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.landing-main-container .border-radius-8 {
    border-radius: 8px;
}

.landing-main-container .border-radius-25 {
    border-radius: 25px;
}

.landing-main-container .block-black-center .header-title ul.list-text {
    padding-left: 20px;
    padding-right: 20px;
}

.landing-main-container .block-black-center .header-title ul.list-text li {
    color: #86868B;
    font-weight: bold;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    font-size: 21px !important;
    line-height: 3rem !important;
    margin-bottom: 1rem;
}

.landing-main-container p strong {
    color: #ffffff;
}

.landing-main-container .width100 {
    width: 100%;
}


.landing-main-container .came-cyan-color {
    color: #00b0ed !important;
}

.landing-main-container .came-white-color {
    color: #ffffff !important;
}

.landing-main-container .came-text-nowrap {
    white-space: nowrap;
}

.landing-main-container a:focus-visible {
  outline: 3px solid #ffffff !important;
  outline-offset: 3px;
}


.landing-main-container .came-box-compact-content {
    text-align: left;
}

.landing-main-container .came-box-compact-content .box-video1 {
    margin-top: 20px;
    margin-bottom: 40px;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.landing-main-container .desc-text-over-video {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 2;
}

.landing-main-container .desc-text-over-video img {
    width: 80px;
    display: inline-block !important;
    vertical-align: middle;
}

.download-app-container-video {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.download-app-container-video .link-app a {
    font-family: Came,Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-decoration: none;
    letter-spacing: 0.02em;
    width: fit-content;
    padding: 12px 24px;
    border-radius: 8px;
    background-color: #00b0ed;
    color: #003247;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    white-space: nowrap;
    display: inline-block;
}

.download-app-container-video .link-app a:hover {
    background-color: #003247;
    color: #00b0ed;
}


.landing-main-container ul.list-text-checked-icon {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 0;
    padding: 0 0 0 30px !important;
}

.landing-main-container ul.list-text-checked-icon li::before {
    content: "";
    background-image: url("../assets/img/icon-list-plus.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: text-bottom;
    margin-bottom: 3px;
    margin-left: -30px;
}

.landing-main-container ul.list-text-checked-icon li {
    width: 100%;
    /* padding: 0 2.5rem 0 0; */
    /* margin: 1rem 0; */
    box-sizing: inherit;
    font-size: 1.8rem;
    list-style-type: none;
    margin-left: 30px;
}


@media (max-width: 1440px) {
    .landing-main-container .box-big-card.bg-connect-integration p {
        max-width: 330px;
    }
}

@media (max-width: 1280px) {
    .landing-main-container .box-compare-features {
        /* width: 100%; */
        flex-wrap: wrap;
        gap: 24px;
    }

    .landing-main-container .box-feature {
        flex: 0 0 calc(50% - 12px);
        min-width: 0;
    }

    .landing-main-container .box-big-card {
        padding: 40px;
    }

    .landing-main-container .box-big-card .box-2cols h2 {
        font-size: 5rem;
        line-height: 5rem;
    }
}

@media (max-width: 1068px) {

    .landing-main-container .box-big-card.bg-connect-integration .box-2cols h2 {
        font-size: 5rem;
        line-height: 5rem;
    }

    .landing-main-container .landing-content-box h1 {
        font-size: 5rem;
    }

    /*
    .landing-main-container .box-title .box h2 {
        font-size: 2.8rem;
    }
    */

    .landing-main-container .title-features h2 {
        font-size: 2.8rem;
    }

    .landing-main-container .slider-item p {
        font-size: 1.6rem;
    }

    .landing-main-container .block-black-center .header-title h2 {
        font-size: 5rem;
        line-height: 5rem;
        padding-left: 20px;
        padding-right: 20px;
    }

    .landing-main-container .block-black-center .header-title p {
        line-height: 2.8rem;
        padding-left: 20px;
        padding-right: 20px;
    }

    .landing-main-container .bold {
        font-size: 20px !important;
    }

    .landing-main-container .block-black-center .header-title .headline-eyebrow {
        font-size: 20px;
    }

    .landing-main-container .box-2cols {
        width: 100%;
        max-width: 840px;
        padding-left: 20px;
        padding-right: 20px;
        gap: 35px;
        margin-top: 40px;
    }

    .landing-main-container .box-big-card .box-2cols h2 {
        font-size: 5rem;
        line-height: 5rem;
    }

    .landing-main-container .box-big-card {
        padding: 40px;
        width: 100%;
        max-width: 840px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .landing-main-container .block-black-center .box-col .header-title p {
        padding-left: 0;
        padding-right: 0;
    }

    .landing-main-container .box-2cols .box-col .box-quadri-links {
        padding-left: 0;
        padding-right: 0;
    }

    /* box-features-section css for mobile */
    .landing-main-container #box-features-section {
        width: 100%;
        max-width: 840px;
        flex-direction: column-reverse;
        gap: 20px;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 40px;
        display: flex;
    }

    .landing-main-container #box-features-section .list-features {
        order: 2;
        width: 100%;
    }

    .landing-main-container #box-features-section .box-section-img-features {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        padding-bottom: 16px;
    }

    .landing-main-container #box-features-section .list-features ul {
        display: flex;
        flex-direction: row;
        gap: 12px;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }
    .landing-main-container #box-features-section .list-features ul li {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .landing-main-container #box-features-section .list-features ul li span {
        padding: 10px 14px;
        font-size: 16px;
        border-radius: 20px;
    }

    .landing-main-container #box-features-section .list-features ul li span i {
        display: none;
    }

    .landing-main-container #box-features-section .box-top-svg {
        width: 100%;
        height: auto;
        top: auto;
        left: auto;
    }

}

@media (max-width: 870px) {
    .landing-main-container .box-big-card.bg-connect-integration {
        margin: 0 20px;
        box-sizing: border-box;
        width: calc(100% - 40px);
    }
}

/* mobile */
@media (max-width: 734px) {

    .landing-main-container .landing-content-box section.custom-gallery-section {
        padding: 40px 0;
    }

    .landing-main-container .custom-bg-layer {
        padding: 20vh 0 14vh 0;
        padding-top: calc(40vh);
    }

    .landing-main-container .custom-bg-layer img {
        object-position: center center;
    }

    .landing-main-container .custom-slide-item .card-content {
        max-width: 100%;
        min-width: 0;
        margin: 0 25px;
    }

    .landing-main-container .custom-gallery-section {
        height: auto;
    }


    .landing-main-container .box-title .box {
        margin-top: 0vh;
        bottom: 0px;
        position: relative;
        max-width: none;
    }

    .landing-main-container .box-title {
        width: 100%;
        position: static;
    }

    .landing-main-container .lp-header {
        /* height: calc(100vh - 51px); */
        height: auto;
        position: relative;
    }
    .landing-main-container .box-top {
        position: relative;
    }

    .landing-main-container .lp-header .video-fs {
        position: static;
        width: 100%;
        height: 50vh;
    }
    .landing-main-container .lp-header .video-fs video {
        position: static;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .landing-main-container .slider-item {
        height: 400px;
    }

    .landing-main-container .box-compare-features {
        width: 100%;
        flex-direction: column;
        padding-left: 25px;
        padding-right: 25px;
    }

    .landing-main-container .box-2cols {
        flex-direction: column;
        width: 100%;
        max-width: none;
        padding-left: 25px;
        padding-right: 25px;
        gap: 40px; 
        margin-top: 40px;
    }

    .landing-main-container .maxwidth400 {
        max-width: none;
    }

    .landing-main-container .box-2cols .box-col .header-title p {
        padding-left: 0;
        padding-right: 0;
    }

    .landing-main-container .box-2cols .box-col .box-quadri-links {
        padding-left: 0;
        padding-right: 0;
    }

    .landing-main-container .box-big-card {
        margin: 0 20px;
        width: auto;
    }

    .landing-main-container .video-fs img {
        position: static;
    }

    .landing-main-container .box-big-card.bg-connect-integration .box-2cols h2 {
        font-size: 3.6rem;
        line-height: 4rem;
    }

    .landing-main-container .box-big-card.bg-connect-integration.lp-mobile {
        background-image: url("../assets/img/connect-background-came-app-mobile_new1.webp");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center bottom;
    }

    .landing-main-container .box-big-card.bg-connect-integration p {
        max-width: none;
    }

}

@media (max-width: 620px) {
    .download-app-container-video .link-app {
        width: 100%;
        text-align: left;
    }
}


@media (max-width: 481px) {
    .landing-main-container .box-title .box {
        padding: 35px 25px;
    }

    .landing-main-container .box-title .box h2 {
        font-size: 2.2rem;
    }

    .landing-main-container .lp-header .box-header-links > div {
        flex: 1 1 100%;
    }

    .landing-main-container .lp-header .box-header-links > div a {
        width: 100%;
        text-align: center;
    }

    .landing-main-container .gallery-section .title-features {
        max-width: 100%;
        padding: 25px;
    }

    .landing-main-container .landing-content-box section {
        padding: 60px 0;
    }

    .landing-main-container .box-3d model-viewer {
        height: 70vw;
    }

    .landing-main-container .box-last-image {
        height: 50vh;
        min-height: 400px;
    }

    .landing-main-container .block-black-center .header-title h2 {
        font-size: 3.6rem;
        line-height: 4rem;
        text-align: left;
    }

    .landing-main-container .block-black-center .header-title p {
        line-height: 2.1rem;
        padding-left: 20px;
        padding-right: 20px;
        text-align: left;
    }

    .landing-main-container .bold {
        font-size: 17px !important;
    }

    .landing-main-container .block-black-center .header-title .headline-eyebrow {
        font-size: 17px;
    }

    .landing-main-container .box-ending-links > div {
        width: 100%;
    }

    .landing-main-container .box-ending-links > div > a {
        width: 100%;
    }

    .landing-main-container .box-ending-links {
        margin-bottom: 60px;
    }

    .landing-main-container .box-quadri-links > div {
        width: 100%;
    }

    .landing-main-container .box-quadri-links > div > a {
        width: 100%;
    }

    .landing-main-container .box-2cols .box-col .box-quadri-links > div {
        width: 100%;
    }

    .landing-main-container .box-2cols .box-col .box-quadri-links > div > a {
        width: 100%;
        text-align: center;
    }

    .landing-main-container .small.bold {
        font-size: 17px !important;
        line-height: 2.1rem !important
    }

    .landing-main-container .box-video-container {
        min-height: 370px;
    }

    .landing-main-container .box-big-card .box-2cols h2 {
        font-size: 3.6rem;
        line-height: 4rem;
    }

    .landing-main-container p.subtext {
        font-size: 17px !important;
        line-height: 2.1rem !important;
    }

    .landing-main-container .box-big-card .box-2cols {
        padding-left: 10px;
        padding-right: 10px;
    }

    .landing-main-container .box-big-card {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .landing-main-container .slider-wrapper::before {
        flex: 0 0 8px;
    }

    .landing-main-container .gallery-features {
        --slide-width: 80vw;
    }

    .landing-main-container .slider-item .desc-text {
        bottom: -8px;
    }

    .landing-main-container #box-features-section .list-features ul li span {
        font-size: 14px;
        padding: 8px 12px;
    }

    .landing-main-container .graph-anim {
        width: 100vw;
        margin-left: -30px;
    }

    .landing-main-container .box-quadri-links .button-style1 { 
        font-size: 18px;
    }

    .landing-main-container .block-black-center .header-title h3 {
        font-size: 3rem;
        line-height: 3.6rem;
    }

    .landing-main-container .block-black-center .header-title ul.list-text li {
        font-size: 17px !important;
        line-height: 2.1rem !important;
    }

    .landing-main-container .box-download-app-links img {
        width: 100%;
    }

    .landing-main-container .box-download-app-links a {
        max-width: 140px;
        width: calc(50% - 12px);
    }

    .landing-main-container .box-download-app-links a:last-child {
        margin-right: 0px;
    }

    .landing-main-container .box-video1 {
        margin-top: 40px;
    }

    .landing-main-container .came-box-compact-content .box-video1 {
        margin-bottom: 25px;
    }

    .landing-main-container .slider-item .desc-text .block-text-full h5 {
        font-size: 24px;
        line-height: 3rem;
        min-height: 6rem;
    }

    .landing-main-container .slider-item {
        height: 65vh;
    }

    .landing-main-container .desc-text-over-video img {
        width: 60px;
    }

    .landing-main-container .desc-text-over-video {
        top: 15px;
        left: 15px;
    }

    .download-app-container-video {
        text-align: left;
        gap: 15px;
    }

    .download-app-container-video .link-app a {
        font-size: 18px;
    }

    .landing-main-container .landing-content-box h1  {
        font-size: 4rem;
        line-height: 4rem;
    }

    .landing-main-container .custom-slide-item .card-content h4 {
        font-size: 2.4rem;
        line-height: 2.4rem;
    }

    .landing-main-container .box-big-card.bg-connect-integration .box-2cols h2 {
        font-size: 3.2rem;
        line-height: 3.6rem;
    }

}
