/* LANDING-HERO-STYLES-START */

.product-landing
{
	width: 100%;
    max-width: 160rem;
    box-sizing: border-box;
    margin: 0px auto;
    padding: 0px 2rem;
	display:flex;
	flex-direction:column;
	gap:100px;
}
.landing-hero {
    position: relative;
    width: 100%;
    min-height: 560px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
}
.landing-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.landing-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.75) 100%);
    z-index: 2;
}
.landing-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 40px 48px;
    color: #fff;
	background-color: rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}
.landing-hero-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.landing-hero-subtitle {
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 400;
    opacity: 0.92;
    margin-bottom: 24px;
    max-width: 640px;
    line-height: 1.5;
}
.landing-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}
.landing-hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 30px;
    padding: 8px 16px 8px 8px;
}
.landing-hero-feature img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    flex-shrink: 0;
}
.landing-hero-feature span {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.landing-hero-cta.btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 14px 44px;
    font-size: 15px;
	line-height:15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background-color: #a41f1f;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.landing-hero-cta.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(0,0,0,0.4);
    color: #fff;
    text-decoration: none;
}
.landing-hero-cta.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-20deg);
    animation: landing-cta-shine 3.5s ease-in-out infinite;
}
@keyframes landing-cta-shine {
    0% { left: -75%; }
    35% { left: 130%; }
    100% { left: 130%; }
}
 
@media (max-width: 767px) {
	.product-landing {
		gap: 75px;
	}
    .landing-hero {
        min-height: 420px;
        border-radius: 0;
    }
    .landing-hero-content {
        padding: 24px 18px;
		bottom: 0px;
        position: absolute;
    }
    .landing-hero-features {
        align-items: flex-start;
    }
    .landing-hero-cta.btn {
        display: block;
        width: 100%;
        text-align: center;
		height: 40px;
    }
	.landing-hero-feature img
	{
		width:25px;
	}
	.landing-hero-feature {
		gap: 5px;
		padding: 5px 5px 5px 5px;
	}
	.product-landing-tab-content img {
		height: 100% !important;
	}
	
}
/* LANDING-HERO-STYLES-END */


/* LANDING-KEY-FEATURES-START */
.landing-key-features {
    padding: 48px 0;
    text-align: center;
    perspective: 1000px;
}
.landing-key-features-title {
	font-family: Roboto;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1E1E1E;
    margin: 0 0 36px;
}
.landing-key-features-title::first-letter {
    color: #a41f1f;
}
.landing-key-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 100%;
    margin: 0 auto;
}
.landing-key-features-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    padding: 28px 20px;
    opacity: 0;
    transform: rotateX(60deg);
    transform-origin: bottom center;
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease, scale 0.25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
	background: linear-gradient(135deg, #eaf4ff 0%, #c3ddfa 100%);
}
.landing-key-features-item.is-visible {
    opacity: 1;
    transform: rotateX(0deg);
}
.landing-key-features-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 16px 34px rgba(0,0,0,0.12);
}
.landing-key-features-item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    padding: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    transition: transform 0.3s ease;
}
.landing-key-features-item:hover img {
    transform: rotate(-8deg) scale(1.1);
}
.landing-key-features-item span {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .landing-key-features {
        padding: 32px 0;
    }
    .landing-key-features-list {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .landing-key-features-item {
        padding: 20px 14px;
    }
	.landing-key-features-title
	{
		font-size:32px;
	}
}
@media (max-width: 480px) {
    .landing-key-features-list {
        grid-template-columns: 1fr;
    }
}
/* LANDING-KEY-FEATURES-END */

/* LANDING-VIDEO-START */
.landing-video {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.landing-video::-webkit-scrollbar {
    height: 6px;
}
.landing-video::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
.landing-video-item {
    position: relative;
    flex: 0 0 calc(50% - 10px);
    aspect-ratio: 16 / 9;
    scroll-snap-align: start;
    padding: 10px;
    overflow: hidden;
	background: #F4F4F4;;
	border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.landing-video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
	border-radius: 10px;
}

@media (max-width: 767px) {
    .landing-video {
        gap: 12px;
    }
    .landing-video-item {
        flex: 0 0 86%;
    }
}
/* LANDING-VIDEO-END */

/* LANDING-FEATURE-SECTION-START */
.landing-feature-section-block {
    margin: 0px;
}
.landing-feature-section-block-title {
    margin: 0 0 36px;
    text-align: center;
    font-family: Roboto;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1E1E1E;
}
.landing-feature-section-block-title::first-letter {
    color: #a41f1f;
}
.landing-feature-section {
    display: flex;
    align-items: center;
    gap: 48px;
}
.landing-feature-section-items
{
    display: flex;
    flex-direction:column;
    gap: 48px;	
}
.landing-feature-section--image-left {
    flex-direction: row;
	padding:20px;
	border-radius:10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	background: linear-gradient(135deg, #EFF7FF 0%, #C5DEF9 100%);
}
.landing-feature-section--image-right {
    flex-direction: row-reverse;
	padding:20px;
	border-radius:10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	background: linear-gradient(135deg, #C5DEF9 0%, #EFF7FF 100%);
}
.landing-feature-section-image {
    flex: 1 1 45%;
    min-width: 0;
}
.landing-feature-section-image img {
    width: 100%;
    height: 300px;
	object-fit:cover;
    display: block;
    border-radius: 10px;
}
.landing-feature-section-content {
    flex: 1 1 55%;
    min-width: 0;
}
.landing-feature-section-title {
    font-size: 30px;
	line-height:40px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #a41f1f;
}
.landing-feature-section-text {
    color: rgb(85, 85, 85);
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0%;
}
 
@media (max-width: 767px) {
    .landing-feature-section-block {
        margin-bottom: 36px;
    }
    .landing-feature-section,
    .landing-feature-section--image-left,
    .landing-feature-section--image-right {
        flex-direction: column;
        gap: 18px;
    }
    .landing-feature-section-image,
    .landing-feature-section-content {
        flex: 1 1 100%;
    }
	.landing-feature-section-block-title
	{
		font-size:32px;
	}
	.landing-feature-section-title
	{
		font-size:20px;
	}
}
/* LANDING-FEATURE-SECTION-END */

/* LANDING-USAGE-SCENARIOS-START */
.landing-usage-scenarios {
    background: linear-gradient(135deg, #f7f4f2 0%, #d2d4d6 100%);
    border-radius: 20px;
    padding: 56px 40px;
    margin-bottom: 56px;
}
.landing-usage-scenarios-title {
    text-align: center;
    margin: 0 0 36px;
    font-family: Roboto;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1E1E1E;
}
.landing-usage-scenarios-title::first-letter {
    color: #a41f1f;
}
.landing-usage-scenarios-list {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.landing-usage-scenarios-item {
    flex: 1 1 280px;
    min-width: 0;
    transition: flex-grow 0.4s ease;
}
.landing-usage-scenarios-item-inner {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease, flex-grow 0.4s ease;
}
.landing-usage-scenarios-item.landing-reveal-left .landing-usage-scenarios-item-inner {
    transform: translateX(-50px);
}
.landing-usage-scenarios-item.landing-reveal-right .landing-usage-scenarios-item-inner {
    transform: translateX(50px);
}
.landing-usage-scenarios-item.is-visible .landing-usage-scenarios-item-inner {
    opacity: 1;
    transform: translateX(0);
}
.landing-usage-scenarios-item:hover {
    flex-grow: 4;
}
.landing-usage-scenarios-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    margin-bottom: 16px;
    transition: height 0.35s ease;
}
.landing-usage-scenarios-item img.landing-wiggle-active {
    animation: landing-usage-scenarios-wiggle 0.6s ease-in-out;
}
@keyframes landing-usage-scenarios-wiggle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    20% { transform: rotate(-3deg) scale(1.02); }
    40% { transform: rotate(3deg) scale(1.02); }
    60% { transform: rotate(-2deg) scale(1.02); }
    80% { transform: rotate(1deg) scale(1.02); }
}
.landing-usage-scenarios-text {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}
@media (max-width: 767px) {
    .landing-usage-scenarios {
        padding: 36px 20px;
        border-radius: 0;
    }
	.landing-usage-scenarios-title
	{
		font-size:32px;
	}
    .landing-usage-scenarios-item {
        flex: 1 1 100%;
    }
    .landing-usage-scenarios-item:hover {
        flex-grow: 1;
    }
    .landing-usage-scenarios-item img {
        height: 220px;
    }
    .landing-usage-scenarios-item.is-expanded img {
        height: 320px;
    }
}
/* LANDING-USAGE-SCENARIOS-END */

/* LANDING-CTA1-START */
.landing-cta-block--1 {
    display: flex;
    align-items: stretch;
    min-height: 420px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 56px;
    background: linear-gradient(120deg, #eef5fb 0%, #dbe9f4 100%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.landing-cta-block-image {
    flex: 1 1 45%;
    min-width: 0;
	border-radius: 20px 0px 0px 20px;
}
.landing-cta-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	border-radius: 20px 0px 0px 20px;
	-webkit-mask-image: linear-gradient(to right, black 55%, transparent 100%);
    mask-image: linear-gradient(to right, black 55%, transparent 100%);
}
.landing-cta-block-content {
	border-radius: 0px 20px 20px 0px;
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    padding: 48px 56px;
    background: linear-gradient(135deg, #2f7d32 0%, #8bc34a 100%);
    color: #143d0a;
	background: transparent;
}
.landing-cta-block-title {
    color: #b1232a;
	font-family: Roboto;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
}
.landing-cta-block-subtitle {
    color: rgb(85, 85, 85);
    font-family: Roboto;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0%;
    max-width: 600px;
}
.landing-cta-block--1 .landing-cta-scroll-btn {
    margin-top: 8px;
    padding: 20px 40px;
    font-size: 22px;
	position: relative;
    overflow: hidden;
}
.landing-cta-block--1 .btn.round-red
{
	font-size: 24px;
    padding: 30px 50px;
}
.landing-cta-block--1 .landing-cta-scroll-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-20deg);
    animation: landing-cta-shine 3.5s ease-in-out infinite;
}

@media (max-width: 767px) {
    .landing-cta-block--1 {
        flex-direction: column;
        min-height: 0;
        border-radius: 0;
    }
    .landing-cta-block-image {
        flex: none;
        height: 220px;
    }
    .landing-cta-block-content {
        flex: none;
        padding: 28px 20px;
        align-items: stretch;
        text-align: left;
    }
	.landing-cta-block-title
	{
		font-size:32px;
	}
    .landing-cta-block--1 .landing-cta-scroll-btn {
        width: 100%;
        text-align: center;
    }
}
/* LANDING-CTA1-END */

/* LANDING-USAGE-METHODS-START */
.landing-usage-methods {
    margin-bottom: 56px;
}
.landing-usage-methods-title {
    text-align: center;
	font-family: Roboto;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 0 0 32px;
    color: #1a1a1a;
}
.landing-usage-methods-title::first-letter {
    color: #a41f1f;
}
.landing-usage-methods-body {
    display: flex;
    align-items: stretch;
    gap: 40px;
    background: #f7f8fa;
    border-radius: 20px;
    padding: 32px;
}
.landing-usage-methods-image {
    flex: 1 1 45%;
    min-width: 0;
    border-radius: 14px;
    overflow: hidden;
}
.landing-usage-methods-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}
.landing-usage-methods-accordion {
    flex: 1 1 55%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.landing-usage-methods-item {
    border-bottom: 1px solid #e2e4e8;
}
.landing-usage-methods-item:first-child {
    border-top: 1px solid #e2e4e8;
}
.landing-usage-methods-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
}
span.lumi-title
{
	font-size:22px;
}
.landing-usage-methods-item-arrow {
	width: 15px;
    height: 15px;
    transition: transform 0.2s ease;
    color: #999;
    font-size: 14px;
    flex-shrink: 0;
    margin-left: 12px;
	background: url(/img/arrow-down-grey.svg) no-repeat center;
    background-size: 15px;
}
.landing-usage-methods-item.active .landing-usage-methods-item-arrow {
    transform: rotate(180deg);
    color: #a41f1f;
}
.landing-usage-methods-item.active .landing-usage-methods-item-header {
    color: #a41f1f;
}
.landing-usage-methods-item-body {
    display: none;
    padding: 0 4px 18px;
    color: rgb(85, 85, 85);
    font-family: Roboto;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0%;
}
.landing-usage-methods-item.active .landing-usage-methods-item-body {
    display: block;
}

@media (max-width: 767px) {
    .landing-usage-methods-body {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
	.landing-usage-methods-title
	{
		font-size:32px;
	}
    .landing-usage-methods-image img {
        min-height: 220px;
    }
}
/* LANDING-USAGE-METHODS-END */

/* LANDING-MINI-FEATURES-GRID-START */
.landing-mini-features-grid {
    margin-bottom: 56px;
}
.landing-mini-features-grid-title {
    text-align: center;
    font-family: Roboto;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 0 0 32px;
    color: #1a1a1a;
}
.landing-mini-features-grid-title::first-letter {
    color: #a41f1f;
}
.landing-mini-features-grid-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.landing-mini-features-grid-item {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.25s ease;
    border-radius: 14px;
    padding: 15px;
	background: linear-gradient(120deg, #eef5fb 0%, #dbe9f4 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.landing-mini-features-grid-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.landing-mini-features-grid-item:nth-child(1) { transition-delay: 0s; }
.landing-mini-features-grid-item:nth-child(2) { transition-delay: 0.1s; }
.landing-mini-features-grid-item:nth-child(3) { transition-delay: 0.2s; }
.landing-mini-features-grid-item:nth-child(4) { transition-delay: 0.3s; }
.landing-mini-features-grid-item:hover {
    box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}
.landing-mini-features-grid-item-title {
    order: 1;
    font-size: 22px;
    font-weight: 700;
    color: #b1232a;
	text-align:center;
    margin-bottom: 20px;
}
.landing-mini-features-grid-item-text {
    order: 2;
    color: rgb(85, 85, 85);
    font-family: Roboto;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    margin-bottom: 15px;
}
.landing-mini-features-grid-item img {
    order: 3;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.35s ease;
	margin-top:auto;
}
.landing-mini-features-grid-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .landing-mini-features-grid-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
	.landing-mini-features-grid-title
	{
		font-size:32px;
	}
}
@media (max-width: 480px) {
    .landing-mini-features-grid-list {
        grid-template-columns: 1fr;
    }
}
/* LANDING-MINI-FEATURES-GRID-END */

/* LANDING-DATA-STORAGE-START */
.landing-data-storage {
    margin-bottom: 56px;
}
.landing-data-storage-title {
    text-align: center;
    font-family: Roboto;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 0 0 32px;
    color: #1a1a1a;
}
.landing-data-storage-title::first-letter {
    color: #a41f1f;
}
.landing-data-storage-list {
    display: flex;
    gap: 32px;
    position: relative;
}
.landing-data-storage-list::before {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    bottom: 14px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #a41f1f 15%, #d94f4f 50%, #a41f1f 85%, transparent 100%);
    background-size: 200% 100%;
    border-radius: 2px;
    animation: landing-data-flow 4s linear infinite;
    z-index: 1;
}
@keyframes landing-data-flow {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.landing-data-storage-item {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 34px;
    transition: transform 0.25s ease;
}
.landing-data-storage-item:hover {
    transform: translateY(-4px);
}
.landing-data-storage-item::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #a41f1f;
    box-shadow: 0 0 0 2px #e08a8a, 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
}
.landing-data-storage-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 16px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}
.landing-data-storage-item:hover img {
    transform: scale(1.03);
}
.landing-data-storage-item-title {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
}

@media (max-width: 767px) {
    .landing-data-storage-list {
        flex-direction: column;
        gap: 28px;
    }
    .landing-data-storage-list::before {
        top: 0;
        bottom: 0;
        left: 24px;
        right: auto;
        width: 3px;
        height: auto;
        background: linear-gradient(180deg, transparent 0%, #a41f1f 15%, #d94f4f 50%, #a41f1f 85%, transparent 100%);
        background-size: 100% 200%;
        animation: landing-data-flow-vertical 4s linear infinite;
    }
    @keyframes landing-data-flow-vertical {
        0% { background-position: 0 200%; }
        100% { background-position: 0 -200%; }
    }
	.landing-data-storage-title
	{
	font-size:32px;
	}
    .landing-data-storage-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 16px;
        padding-bottom: 0;
        padding-left: 48px;
    }
    .landing-data-storage-item::after {
        left: 24px;
        bottom: auto;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .landing-data-storage-item img {
        width: 90px;
        flex-shrink: 0;
        margin-bottom: 0;
    }
}
/* LANDING-DATA-STORAGE-END */


/* LANDING-APP-SMART-HOME-START */
.landing-app-smart-home {
    background: linear-gradient(135deg, #f7f4f2 0%, #d2d4d6 100%);
    border-radius: 24px;
    padding: 0px 0px 56px 0px;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.landing-app-smart-home-image {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 32px;
}
.landing-app-smart-home-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.landing-app-smart-home-content {
    max-width: 1100px;
}
.landing-app-smart-home-title {
	text-align:Center;
	font-family: Roboto;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1a1a1a;
	margin:0px 0px 20px 0px;
}
.landing-app-smart-home-title::first-letter {
    color: #a41f1f;
}
.landing-app-smart-home-description {
    color: rgb(85, 85, 85);
    font-family: Roboto;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0%;
    margin-bottom: 15px;
}
.landing-app-smart-home-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}
.landing-app-smart-home-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 40px;
    padding: 8px 20px 8px 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.landing-app-smart-home-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}
.landing-app-smart-home-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f2f3f5;
    border: 1px solid #f0d9d9;
    color: #b1232a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.landing-app-smart-home-item-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}
.landing-app-smart-home-item-text {
    font-size: 14px;
    font-weight: 600;
    color: #a41f1f;
}

@media (max-width: 767px) {
    .landing-app-smart-home {
        padding: 0px 0px 32px 0px;
        border-radius: 0;
    }
    .landing-app-smart-home-image {
        margin-bottom: 24px;
    }
	.landing-app-smart-home-title
	{
		font-size:32px;
	}
}
/* LANDING-APP-SMART-HOME-END */

/* LANDING-CTA2-START */
.landing-cta-block--2 {
    display: flex;
    align-items: stretch;
    min-height: 420px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 56px;
    background: linear-gradient(120deg, #eef5fb 0%, #dbe9f4 100%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.landing-cta-block--2 .landing-cta-block-content {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    padding: 48px 56px;
}
.landing-cta-block--2 .landing-cta-block-title {
    color: #b1232a;
    font-family: Roboto;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
}
.landing-cta-block--2 .landing-cta-block-subtitle {
    color: rgb(85, 85, 85);
    font-family: Roboto;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0%;
    max-width: 600px;
}
.landing-cta-block--2 .btn.round-red {
    font-size: 24px;
    padding: 30px 50px;
}
.landing-cta-block--2 .landing-cta-block-image {
    flex: 1 1 45%;
    min-width: 0;
}
.landing-cta-block--2 .landing-cta-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-mask-image: linear-gradient(to left, black 55%, transparent 100%);
    mask-image: linear-gradient(to left, black 55%, transparent 100%);
}
.landing-cta-block--2 .landing-cta-scroll-btn {
    margin-top: 8px;
    padding: 14px 40px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}
.landing-cta-block--2 .landing-cta-scroll-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-20deg);
    animation: landing-cta-shine 3.5s ease-in-out infinite;
}

@media (max-width: 767px) {
	.landing-cta-block--2 .landing-cta-block-title
	{
		font-size:32px;
	}
    .landing-cta-block--2 {
        flex-direction: column;
        min-height: 0;
        border-radius: 0;
    }
    .landing-cta-block--2 .landing-cta-block-image {
        flex: none;
        height: 220px;
        order: -1;
    }
    .landing-cta-block--2 .landing-cta-block-content {
        flex: none;
        padding: 28px 20px;
        align-items: stretch;
    }
    .landing-cta-block--2 .landing-cta-scroll-btn {
        width: 100%;
        text-align: center;
    }
}
/* LANDING-CTA2-END */

/* LANDING-KIT-CONTENTS-START */
.landing-kit-contents {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 56px;
	background: linear-gradient(120deg, #a5d2f5 0%, #f5f7f8 100%);
	padding:20px;
	border-radius:20px;
}
.landing-kit-contents-content {
    flex: 1 1 55%;
    min-width: 0;
}
.landing-kit-contents-image {
    flex: 1 1 45%;
    min-width: 0;
}
.landing-kit-contents-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.landing-kit-contents-title {
    font-family: Roboto;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 0 0 32px;
    color: #1a1a1a;
}
.landing-kit-contents-title::first-letter {
    color: #a41f1f;
}
.landing-kit-contents-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}
.landing-kit-contents-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}
.landing-kit-contents-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    background: #f5f6f8;
    border-radius: 14px;
    padding: 20px 14px;
}
.landing-kit-contents-item-image img {
    width: 150px;
    height: 150px;
    object-fit: contain;
	border-radius:10px;
}
.landing-kit-contents-item-title {
    font-size: 22px;
	line-height:26px;
    font-weight: 700;
    color: #b1232a;
}
.landing-kit-contents-item-description {
    color: rgb(85, 85, 85);
    font-family: Roboto;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0%;
}

@media (max-width: 767px) {
	.landing-kit-contents-title
	{
		font-size:32px;
	}
	.landing-kit-contents-item-title
	{
		font-size:18px;
	}
	.landing-kit-contents-item-description
	{
		font-size:16px;
	}
    .landing-kit-contents {
        flex-direction: column;
        gap: 24px;
    }
    .landing-kit-contents-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}
@media (max-width: 480px) {
    .landing-kit-contents-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* LANDING-KIT-CONTENTS-END */

/* LANDING-OBJECTIONS-START */
.landing-objections {
    margin-bottom: 56px;
}
.landing-objections-title {
    text-align: center;
    font-family: Roboto;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 0 0 32px;
    color: #1a1a1a;
}
.landing-objections-title::first-letter {
    color: #a41f1f;
}
.landing-objections-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}
.landing-objections-item {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #f7f8fa;
    border-radius: 16px;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.landing-objections-item.landing-reveal-left {
    transform: translateX(-50px);
}
.landing-objections-item.landing-reveal-right {
    transform: translateX(50px);
}
.landing-objections-item.is-visible {
    opacity: 1;
    transform: translateX(0);
}
.landing-objections-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}
.landing-objections-item-content {
    min-width: 0;
}
.landing-objections-item-title {
    font-size: 22px;
    font-weight: 700;
    color: #b1232a;
    margin-bottom: 20px;
}
.landing-objections-item-text {
    color: rgb(85, 85, 85);
    font-family: Roboto;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0%;
}

@media (max-width: 767px) {
	.landing-objections-title
	{
		font-size:32px;
	}
	.landing-objections-item-title
	{
		font-size:20px;
	}
    .landing-objections-item {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        padding: 20px;
    }
    .landing-objections-item img {
        width: 72px;
        height: 72px;
    }
}
/* LANDING-OBJECTIONS-END */

/* LANDING-TRUST-START */
.landing-trust {
	padding:50px 20px;
    margin-bottom: 56px;
	background: linear-gradient(120deg, #eef5fb 0%, #dbe9f4 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	border-radius:20px;
}
.landing-trust-title {
    text-align: center;
    font-family: Roboto;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 0 0 32px;
    color: #1a1a1a;
}
.landing-trust-title::first-letter {
    color: #a41f1f;
}
.landing-trust-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.landing-trust-item {
    flex: 0 0 calc(25% - 18px);
    max-width: calc(25% - 18px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #f7f8fa;
    border-radius: 16px;
    padding: 28px 16px;
    opacity: 0;
    transform: scale(0.6) rotate(-6deg);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.landing-trust-item.is-visible {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}
.landing-trust-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 14px;
    padding: 10px;
    background: #FFF;
    border-radius: 50%;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.landing-trust-item-text {
    font-size: 22px;
	line-height:26px;
    font-weight: 700;
    color: #b1232a;
}

@media (max-width: 991px) {
    .landing-trust-item {
        flex: 0 0 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
    }
}
@media (max-width: 676px) {
	.landing-trust-title
	{
		font-size:32px;
	}
	.landing-trust-item-text
	{
		font-size:18px;
	}
}
@media (max-width: 600px) {
    .landing-trust-item {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}
/* LANDING-TRUST-END */

/* LANDING-REVIEWS-START */
.landing-reviews {
    margin-bottom: 56px;
	padding:50px 20px;
	background: #f7f8fa;
    border-radius: 20px;
}
.landing-reviews-title {
    text-align: center;
    font-family: Roboto;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 0 0 32px;
    color: #1a1a1a;
}
.landing-reviews-title::first-letter {
    color: #a41f1f;
}
.landing-reviews-list {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.landing-reviews-list::-webkit-scrollbar {
    height: 6px;
}
.landing-reviews-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
.landing-reviews-item {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: #f7f8fa;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.landing-reviews-item-vote {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.landing-reviews-item-name {
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    color: #b1232a;
    margin-bottom: 10px;
}
.landing-reviews-item-text {
    color: rgb(85, 85, 85);
    font-family: Roboto;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0%;
}

@media (max-width: 767px) {
	.landing-reviews-title
	{
		font-size:32px;
	}
    .landing-reviews-list {
        gap: 14px;
    }
    .landing-reviews-item {
        flex: 0 0 82%;
        padding: 20px;
    }
}
/* LANDING-REVIEWS-END */

/* LANDING-FAQ-START */
.landing-faq {
    margin-bottom: 56px;
}
.landing-faq-title {
    text-align: center;
    font-family: Roboto;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 0 0 32px;
    color: #1a1a1a;
}
.landing-faq-title::first-letter {
    color: #a41f1f;
}
.landing-faq-list {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.landing-faq-item {
    background: #f7f8fa;
    border-radius: 14px;
    overflow: hidden;
}
.landing-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    color: #b1232a;
}
.landing-faq-arrow {
    flex-shrink: 0;
    color: #999;
    font-size: 13px;
    transition: transform 0.25s ease, color 0.25s ease;
	background: url(/img/arrow-down-grey.svg) no-repeat center;
    background-size: 15px;
	width:15px;
	height:15px;
}
.landing-faq-item--open .landing-faq-arrow {
    transform: rotate(180deg);
    color: #a41f1f;
}
.landing-faq-item--open .landing-faq-question {
    color: #a41f1f;
}
.landing-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.landing-faq-answer--open {
    max-height: 600px;
}
.landing-faq-answer-text {
    padding: 0 22px 18px;
    color: rgb(85, 85, 85);
    font-family: Roboto;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0%;
}

@media (max-width: 767px) {
	.landing-faq-title
	{
		font-size:32px;
	}
    .landing-faq-question {
        padding: 15px 18px;
        font-size: 18px;
    }
    .landing-faq-answer-text {
        padding: 0 18px 15px;
    }
}
/* LANDING-FAQ-END */