.header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    position: fixed;
    z-index: 9999999;
}

.logo-lng #lang {
    display: inline-flex;
    align-items: center;
    position: fixed;
    top: 40px;
    left: 2%;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 1000;
}

/* Hover էֆեկտ՝ երբ մկնիկը պահում ես վրան */
.logo-lng #lang:hover {
    /* Hover-ի ժամանակ թույլ ֆոն, որ երևա սեղմելը */
    background: rgba(255, 255, 255, 0.1);
    border-color: #ff6b6b;
    /* RezX ծիրանագույն շրջանակ */
    color: #ff6b6b;

}

.logo-lng #lang {
    display: none;
}

#langToggle {
    background: transparent;
    border: none;

    color: azure;
}

.bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    z-index: 9999999;
    color: #C7D0DD;
    text-align: center;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.7);
}


.close-btn {
    position: absolute;
    right: 2%;
    top: 2%;
    cursor: pointer;
}

.img {
    width: 150px;
    margin-left: 20px;

}

.logo {
    z-index: 9999;
}

.nav {
    position: sticky;
    top: 20px;
    z-index: 100;
    width: fit-content;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.85),
            rgba(176, 182, 199, 0.65));
    /* background-color: #F0F0F0; */
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);

    border: 1px solid rgba(0, 0, 0, 0.04);
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}




.menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 10px 14px;
    margin: 0;
}

.lang {
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.menu li {
    display: flex;
}

/* Links & buttons unified */
.menu a,
.menu button {
    appearance: none;
    border: none;
    background: transparent;

    padding: 8px 14px;
    border-radius: 12px;

    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;

    color: var(--text-primary);

    position: relative;
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.15s ease;

}

/* Hover — liquid feel */
.menu a:hover,
.menu button:hover {
    background: rgba(255, 255, 255, 0.45);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}



/* Active / pressed */
.menu a:active,
.menu button:active {
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.12);
}

/* Accent button (optional) */
.menu li:last-child button {
    color: var(--accent);
    font-weight: 600;
}


/*----------hero-----------*/

.hero {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 25vh;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: clamp(4vw, 40px);

}

.text-box {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.brand-gradient {
    background: linear-gradient(90deg,
            #FE645A 0%,
            #ff8a7a 45%,
            #2a2e3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

.hero-title {

    position: relative;
    z-index: 10;
    color: #F8FAFC;
    opacity: 1;
}

.hero-description {
    font-size: 18px;
}

.circle {
    height: 50px;
    width: 50px;
    display: block;
    border-radius: 50%;
    background-color: #FE645A;
    position: absolute;
    z-index: -1;
    left: 85%;
    top: 45%;
    animation: floatCircle 1.2s ease-out forwards;
    animation-delay: 0.35s;
}

.btn-box {
    width: 50%;
    display: flex;
    flex-direction: column;
    margin-top: 100px;
}

.hero-eyebrow {
    color: #8B96A8;
    animation: fadeUp 0.9s ease-out forwards;
    animation-delay: 0.9s;
    z-index: 10;
}



.hero-description {
    color: #C7D0DD;
    animation: fadeUp 0.9s ease-out forwards;
    animation-delay: 0.6s;
    z-index: 10;
}



.title-left,
.title-right {
    display: inline-block;
}

.title-left {
    animation: slideLeft 0.8s ease-out forwards;
}

.title-right {
    animation: slideRight 0.8s ease-out forwards;
    animation-delay: 0.15s;
}




@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatCircle {
    0% {
        opacity: 0;
        transform: scale(0.2) translateY(6px);
    }

    100% {
        opacity: 0․6;
        transform: scale(1) translateY(0);
    }
}


.arrow-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 220px;
    margin: 15px auto;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    z-index: 10;



    border: 1px solid #FE645A;
    color: #FE645A;
    border-radius: 18px;


    overflow: hidden;
    transition: all 0.35s ease;
}

.arrow-btn:hover {
    background: var(--text-secondary);
    color: #000;
    box-shadow: 0 0 20px rgba(70, 130, 255, 0.5);
    transform: translateY(-2px);
    color: var(--text-secondary);
}

.sec {
    background-color: #FE645A;
    border: 1px solid #313956;
    color: var(--text-secondary);

}

.sec.no-gradient::before {
    opacity: 0;
}

/* subtle glass shine */
.arrow-btn::before {
    content: "";
    position: absolute;

    inset: 0;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.6),
            rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.35s ease;

}

/* hover */
.arrow-btn:hover {
    color: #fe645a;
    border-color: rgba(254, 100, 90, 0.6);
    box-shadow:
        0 14px 40px rgba(254, 100, 90, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.arrow-btn:hover::before {
    opacity: 1;
}

/* arrow animation */
.arrow-btn .arrow {
    font-size: 18px;
}

.arrow-btn:hover .arrow {
    animation: arrow-move 0.9s ease-in-out infinite;
}

@keyframes arrow-move {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    10% {
        transform: translateX(8px);
        opacity: 0.5;
    }

    30% {
        transform: translateX(16px);
        opacity: 0.8;
    }

    50% {
        transform: translateX(24px);
        opacity: 0.9;
    }

    70% {
        transform: translateX(32px);
        opacity: 0.9;
    }

    100% {
        transform: translateX(37px);
        opacity: 1;
    }
}



.features {
    width: 100%;
    margin-top: 100px;
    padding: 10px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 999;
}

.features-title {
    margin-bottom: clamp(40px, 8vh, 60px);
    z-index: 999;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FE645A, #0088cc);
    border-radius: 2px;
}

.boxes {
    width: 100%;
    max-width: 1200px;
    display: grid;
    /* Օգտագործում ենք auto-fit, որպեսզի 6 բոքսերը ավտոմատ բաշխվեն */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(20px, 3vw, 40px);

    /* Հեռավորություն վերևի սեկցիայից */
    margin-top: 80px;
    margin-inline: auto;

    /* Ապահովում ենք, որ grid-ը լինի կենտրոնում */
    justify-content: center;
}

.box {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Էլեմենտները մեջտեղում */
    justify-content: center;
    /* Վերտիկալ մեջտեղում */
    text-align: center;
    /* Տեքստը մեջտեղում */

    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;

    /* Ապահովում ենք, որ բոքսերը չունենան անհարկի մեծ բարձրություն */
    min-height: 250px;
}


/* --- Polished Features Hover & Icons --- */
.box:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(254, 100, 90, 0.4) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(254, 100, 90, 0.1);
}

.features-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    filter: brightness(1.2);
    transition: transform 0.4s ease;
}

.box:hover .features-icon {
    transform: scale(1.1) rotate(5deg);
}













.box h5 {
    font-size: 25px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #ffffff;
}

.box .description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}









/* Ընդհանուր կոնտեյների կենտրոնացում */
.screens {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Մեջտեղ բերելու համար */
    padding: 40px 20px;

    z-index: 999;
}

.features-grid {
    width: 100%;
    max-width: 1100px;
    /* Սահմանափակում ենք ընդհանուր լայնությունը */
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Քարտի ոճը */
.feature-card.split {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 30px 40px;
    gap: 30px;
    transition: transform 0.3s ease;
}

/* Տեքստի հատված (45%) */
.feature-card.split .info {
    flex: 1;
    text-align: left;
}

.feature-card.split .info h3 {
    font-size: 28px;
    /* Մի փոքր ավելի փոքր ու կոմպակտ */
    margin-bottom: 15px;
    color: #fff;
}

.feature-card.split .info p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Նկարի հատված (55%) */
.feature-card.split .visual {
    flex: 1.2;
    /* Նկարը մի քիչ փոքրացված է նախորդից */
    display: flex;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.screenshot-img {
    width: 80%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;

    border: none;
    object-fit: cover;
    object-position: center;
}

/* Շրջված տարբերակը */
.feature-card.split.reverse {
    flex-direction: row-reverse;
}





/* Hover էֆեկտ */
/* .screenshot-img:hover {
   scale: calc(50%);
}
 */


/* --- RESPONSIVE (Մոբայլի համար) --- */

@media (max-width: 992px) {

    .feature-card.split,
    .feature-card.split.reverse {
        flex-direction: column !important;
        /* Իրար տակ են դառնում */
        text-align: center;
        padding: 30px 20px;
    }

    .feature-card.split .info {
        text-align: center;
        margin-bottom: 20px;
    }

    .screenshot-img {
        max-width: 100%;
        /* Մոբայլում թող լայն լինի, որ տեսանելի լինի */
    }

    /* .feature-card.split .info h3 {
        font-size: 35px;
    }

    .feature-card.split .info p {
        font-size: 25px;
    } */
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}





/* 
.slide-img{
    width: 100%;
} */

.custom-slider-section {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    overflow: hidden;
    z-index: 999;
    border-radius: 25px;
}

.slider-viewport {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.single-slide {
    min-width: 100%;
    /* Մեկական սլայդ (կարող ես փոխել 33.33% desktop-ի համար) */

    box-sizing: border-box;
}

.glass-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    color: white;
}

.glass-card img {
    width: auto;
    max-height: 300px;
    object-fit: contain;
    margin-top: 20px;
}



.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* Նարնջագույն կետիկներ */
.dots-container {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #ff6b00;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.3;
    transition: 0.3s;
    cursor: pointer;
}

.dot.active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}





.tags {
    position: relative;

    height: 100px;
    /* Հաստատուն բարձրություն */
    background-color: transparent;
    overflow: hidden;


    z-index: 999;
}

.tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    background-color: #CFF2EA;
    color: #004d40;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    border: 1px solid #b2dfdb;
    font-family: sans-serif;
    font-size: 14px;
    right: -300px;
    /* Սկսում են աջից՝ էկրանից դուրս */
    animation: moveLeft linear infinite;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}




/* Բաժանում ենք 2 շարքի, որպեսզի տեղավորվեն 100px-ի մեջ */

/* Վերին շարք (Top row) - մոտ 15px վերևից */
.tag:nth-child(1) {
    top: 15px;
    animation-duration: 15s;
    animation-delay: 0s;
}

.tag:nth-child(3) {
    top: 15px;
    animation-duration: 18s;
    animation-delay: 4s;
}

.tag:nth-child(5) {
    top: 15px;
    animation-duration: 14s;
    animation-delay: 8s;
}

/* Ներքևի շարք (Bottom row) - մոտ 55px վերևից */
.tag:nth-child(2) {
    top: 55px;
    animation-duration: 16s;
    animation-delay: 2s;
}

.tag:nth-child(4) {
    top: 55px;
    animation-duration: 20s;
    animation-delay: 6s;
}

.tag:nth-child(6) {
    top: 55px;
    animation-duration: 13s;
    animation-delay: 1s;
}

@keyframes moveLeft {
    from {
        right: -300px;
    }

    to {
        right: 100vw;
    }
}

.tag:hover {
    animation-play-state: paused;
    background-color: #ffffff;
    border-color: #00796b;
    z-index: 100;
}

.close {
    margin-left: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #999;
}

.close:hover {
    color: #d32f2f;
}

.tags-box {
    width: 100%;
    color: #F8FAFC;
    z-index: 999;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;

}

.tags-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
    text-align: center;
    font-size: 20px;
}







.partners-section {
    width: 100%;
    margin-top: 80px;
    text-align: center;
    z-index: 99999;
    margin-bottom: 10px;
}




.partners-container {
    width: 100%;
    overflow: hidden;
    /* Թաքցնում է սքրոլբարը, բայց JS-ը կաշխատի ներսում */
    white-space: nowrap;
    cursor: grab;
    background: transparent;
    user-select: none;

}


.partners-track {
    display: flex !important;
    flex-shrink: 0;
    /* Կարևոր է, որ չսեղմվի */
    width: max-content !important;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    /* Յուրաքանչյուր քարտի լայնությունը */
    margin: 0 30px;
    flex-shrink: 0;
}

.partner-card img {
    width: 150px;
    height: auto;
    pointer-events: none;
    /* Որ նկարը չխանգարի թերթելուն */
    margin-bottom: 10px;
    border-radius: 50%;
}

.partner-card span {
    font-family: sans-serif;
    font-size: 14px;
    color: #F8FAFC;
}


#scrollContainer {
    display: flex !important;
    width: 100% !important;
    /* Ստիպում ենք վերցնել էկրանի ամբողջ լայնությունը */
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    position: relative;
}

#scrollContainer::-webkit-scrollbar {
    display: none;
}

/*ապպ*/





/* --- Ecosystem Section Style --- */
.ecosystem-section {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    background: transparent;
}

.ecosystem-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.ecosystem-title {
    font-size: 30px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    z-index: 9999;
}

.ecosystem-subtitle {
    font-size: 25px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.ecosystem-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* Նեղացնում ենք հեռավորությունը սահուն անցման համար */
}

/* Common Label Style */
.label {
    display: block;
    margin-top: 15px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* --- 1. Mobile Style (Guest App) --- */
.ecosystem-mobile {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 9999;
}

.mobile-mockup {
    width: 250px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 8px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.mobile-mockup img {
    width: 100%;
    height: 100%;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.mockup-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 136, 204, 0.2);
    pointer-events: none;
}

/* --- New Switcher Components (Isolated) --- */
.unique-switcher-container-reviews,
.unique-switcher-container-whatsapp {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

/* --- Unique Phone Switcher --- */
.unique-phone-switcher {
    position: relative;
    width: 250px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    transition: all 0.5s ease;
    object-fit: cover;
   
}

.unique-phone-card {
    position: absolute;
    width: 240px;
    height: 480px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    user-select: none;

}



.unique-app-screenshot {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    border-radius: 25px;
    display: block;



}

/* Active Card */
.unique-phone-card.active {
    z-index: 10;
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
    cursor: default;
}

/* Previous Card */
.unique-phone-card.prev {
    z-index: 5;
    transform: translate3d(-120px, 0, -200px) rotateY(25deg);
    opacity: 0.6;
}

.unique-phone-card.prev:hover {
    transform: translate3d(-130px, 0, -180px) rotateY(20deg);
    opacity: 0.8;
}

/* Next Card */
.unique-phone-card.next {
    z-index: 5;
    transform: translate3d(120px, 0, -200px) rotateY(-25deg);
    opacity: 0.6;
}

.unique-phone-card.next:hover {
    transform: translate3d(130px, 0, -180px) rotateY(-20deg);
    opacity: 0.8;
}

/* Hide other cards if they exist */
.unique-phone-card:not(.active):not(.prev):not(.next) {
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 0, -400px) scale(0.5);
}

@media (max-width: 768px) {
    .unique-phone-switcher {
        width: 100%;
        height: auto;
        min-height: 400px;
    }

    .unique-phone-card {
        width: 180px;
        height: 360px;
    }

    .unique-phone-card.prev {
        transform: translate3d(-60px, 0, -150px) rotateY(20deg);
    }

    .unique-phone-card.next {
        transform: translate3d(60px, 0, -150px) rotateY(-20deg);
    }

    .feature-card.split .visual {
        width: 100%;
    }
}

.mockup-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 136, 204, 0.2);
    pointer-events: none;
}

/* --- 2. Diagram Style (Cloud Sync) --- */
.ecosystem-diagram {
    flex: 0.8;
    position: relative;
    height: 300px;
    /* Բարձրություն ամպային տարրի համար */
    display: flex;
    justify-content: center;
    align-items: center;
}

.diagram-elements {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.element.cloud {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.element.cloud i {
    font-size: 15px;
    color: #0088cc;
    background: rgba(0, 136, 204, 0.1);
    padding: 25px;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* Animated Lines Flow */
.flow-lines {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.line {
    height: 3px;
    background: rgba(0, 136, 204, 0.15);
    border-radius: 2px;
    position: relative;
}

.line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: #0088cc;
    border-radius: 2px;
    animation: flowLine 2s infinite linear;
}

.app-to-cloud {
    width: 35%;
}

.cloud-to-admin {
    width: 35%;
}

@keyframes flowLine {
    0% {
        left: -30%;
    }

    100% {
        left: 100%;
    }
}

/* --- 3. Tablet Style (iPad Admin Panel) --- */
.ecosystem-tablet {
    flex: 1.5;
    /* Տալիս ենք ավելի շատ լայնություն պլանշետին */
    display: flex;
    justify-content: center;
    z-index: 999;
}

.tablet-mockup {

    /* iPad Լայնությունը */
    height: 320px;
    /* iPad Բարձրությունը */
    /* background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(240, 223, 223, 0.1); */
    border-radius: 25px;
    padding: 5px;
    margin-right: 5px;
    margin-left: 5px;
    position: relative;
    /* box-shadow: 4px 4px 4px 5px rgba(240, 236, 236, 0.6); */
    cursor: pointer;
    transition: 0.3s;

}

.tablet-mockup img {
   object-fit: contain;
border: none !important;
}

.tablet-screenshot {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.tablet-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    pointer-events: none;
    transition: 0.3s;

}

/* Active Hover for iPad Admin (as requested) */
.tablet-mockup:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0, 136, 204, 0.3);
}

.tablet-mockup:hover .tablet-glow {
    box-shadow: 0 0 25px rgba(0, 136, 204, 0.5);
}

/* Tooltip on hover */
.tablet-mockup::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -45px;
    right: 20px;
    background: #0088cc;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s;
}

.tablet-mockup:hover::after {
    opacity: 1;
}







/* --- RESPONSIVE DESIGN --- */

@media (max-width: 1024px) {
    .ecosystem-content {

        flex-direction: column;
        /* Դիագրամը և հեռախոսը դառնում են իրար տակ */
        gap: 50px;
    }

    .ecosystem-diagram {
        width: 100%;
        padding: 20px;
    }

    .ecosystem-title {
        font-size: 30px;
    }

    .partners-section {

        margin-top: 0px;


    }

    .features {
        margin-top: 20px;
    }

    .boxes {
        margin-top: 30px;
    }

    .logo-lng #lang {
        top: 35px;
        padding: 10px 5;

        font-size: 16px;

    }

    .contact-grid {
        justify-content: center;
        grid-template-columns: 1f;
        width: 100%;
    }

    .demo-form {
        width: 100%;
    }



    @media (max-width: 1024px) {

        /* 1. Փոխում ենք ընդհանուր դիագրամի բարձրությունը, որ տեղ լինի ուղղահայաց գծերի համար */
        .ecosystem-diagram {
            height: 450px;
            flex-direction: column;
        }

        /* 2. Գծերի կոնտեյները դարձնում ենք ուղղահայաց */
        .flow-lines {
            top: 0;
            left: 50%;
            width: auto;
            height: 100%;
            flex-direction: column;
            justify-content: space-between;
            transform: translateX(-50%);
            /* Կենտրոնացնում ենք հորիզոնական */
            padding: 20px 0;
            /* Որպեսզի գծերը չկպնեն եզրերին */
        }

        /* 3. Փոխում ենք հորիզոնական գծերը ուղղահայացի */
        .line {
            width: 3px;
            /* Դառնում է բարակ */
            height: 30%;
            /* Տալիս ենք բարձրություն */
            background: rgba(0, 136, 204, 0.15);
        }

        /* 4. Ուղղում ենք անիմացիան, որ շարժվի վերևից ներքև */
        .line::before {
            width: 100%;
            height: 30%;
            top: 0;
            left: 0;
            animation: flowLineVertical 2s infinite linear;
        }

        /* Յուրաքանչյուր գծի համար բարձրությունը կարող ես հարմարեցնել */
        .app-to-cloud,
        .cloud-to-admin {
            width: 3px;
            height: 35%;
        }
    }

    /* Ավելացրու նաև ուղղահայաց անիմացիայի keyframes-ը */
    @keyframes flowLineVertical {
        0% {
            top: -30%;
        }

        100% {
            top: 100%;
        }
    }



}

@media (max-width: 768px) {
    .ecosystem-section {
        padding: 40px 15px;
        margin-top: 50px;
    }

    /* Դիագրամի ներսի էլեմենտները փոքրացնում ենք */
    .element i {
        font-size: 1.6rem;
        padding: 15px;
    }

    .element .label {
        font-size: 0.8rem;
    }

   
    /* Հեռախոսի մոկապը փոքրացնում ենք */
    .mobile-mockup {
        width: 260px;
        height: 520px;
    }


    .ecosystem-title {
        font-size: 25px;
    }

    .ecosystem-subtitle {
        font-size: 20px;
    }

    .glass-card img {
        width: 100%;
        max-height: 150px;
        object-fit: contain;
        margin-top: 10px;

    }


    .header-center {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
        width: 100%;
    }

    .label {
        margin-bottom: 0 !important;
    }

    @media (max-width: 1024px) {

        /* 1. Փոխում ենք ընդհանուր դիագրամի բարձրությունը, որ տեղ լինի ուղղահայաց գծերի համար */
        .ecosystem-diagram {
            height: 450px;
            flex-direction: column;
        }

        /* 2. Գծերի կոնտեյները դարձնում ենք ուղղահայաց */
        .flow-lines {
            top: 0;
            left: 50%;
            width: auto;
            height: 100%;
            flex-direction: column;
            justify-content: space-between;
            transform: translateX(-50%);
            /* Կենտրոնացնում ենք հորիզոնական */
            padding: 20px 0;
            /* Որպեսզի գծերը չկպնեն եզրերին */
        }

        /* 3. Փոխում ենք հորիզոնական գծերը ուղղահայացի */
        .line {
            width: 3px;
            /* Դառնում է բարակ */
            height: 30%;
            /* Տալիս ենք բարձրություն */
            background: rgba(0, 136, 204, 0.15);
        }

        /* 4. Ուղղում ենք անիմացիան, որ շարժվի վերևից ներքև */
        .line::before {
            width: 100%;
            height: 30%;
            top: 0;
            left: 0;
            animation: flowLineVertical 2s infinite linear;
        }

        /* Յուրաքանչյուր գծի համար բարձրությունը կարող ես հարմարեցնել */
        .app-to-cloud,
        .cloud-to-admin {
            width: 3px;
            height: 35%;
        }
    }

    /* Ավելացրու նաև ուղղահայաց անիմացիայի keyframes-ը */
    @keyframes flowLineVertical {
        0% {
            top: -30%;
        }

        100% {
            top: 100%;
        }
    }
}

/* 
@media (max-width: 480px) {
    .diagram-elements {
        flex-direction: column;
        gap: 20px;
        position: relative;
       
        padding: 20px 0;
    }

    .ecosystem-diagram {
        background: rgba(255, 255, 255, 0.02);
       
    }

    .restaurant-map {
        display: none;
       
    }
} */

/*/////////////////*/

.contact-section {
    margin-top: 50px;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    z-index: 9999;
}

.contact-container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.section-title {
    font-size: 38px;
    color: #fff;
    margin-bottom: 10px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    font-size: 20px;
}



.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    text-align: left;
}

/* Քարտերի Glassmorphism ոճը */
.contact-info-card,
.contact-form-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 20px;
    width: 100%;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 30px;
    color: #0088cc;
    /* RezX կապույտ */
    background: rgba(0, 136, 204, 0.1);
    padding: 15px;
    border-radius: 50%;
}

.info-item span {
    display: block;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: unset;
}

.info-item a {
    font-size: 20px;
    color: #fff;
    margin: 0;
}

/* Սոցիալական հղումներ */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon img {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    background: #959ea3;
    transform: translateY(-3px);
}

.info-item svg {
    width: 40px;
    height: 40px;
    fill: #959ea3;

}

/* Ֆորմայի էլեմենտներ */
input,
textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 15px;
    color: #fff;
    margin-bottom: 15px;
    outline: none;
    font-size: 20px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #0088cc;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    font-size: 20px;
}

.submit-btn:hover {
    background: #0077b3;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

/*ֆութեր*/

.main-footer {
    width: 100%;
    /* Ամբողջ լայնությունը */
    background: rgba(8, 8, 12, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 0 20px 0;
    color: #fff;
    z-index: 9999;

}

.footer-inner {
    max-width: 1300px;
    /* Բովանդակության մաքսիմալ լայնությունը */
    margin: 0 auto;
    padding: 20px 40px;

}

.footer-description {
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-logo-section {
    flex: 1;
    min-width: 250px;
}

.footer-links-group {
    flex: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-logo span {
    color: #FF6B6B;
}

.footer-logo-section p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 25px;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links ul li a:hover {
    color: #0088cc;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #fff;
    font-size: 1.3rem;
    opacity: 0.5;
    transition: 0.3s;
}

.footer-socials a:hover {
    opacity: 1;
    color: #0088cc;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* Responsive */
/* @media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo-section,
    .footer-links-group {
        width: 100%;
        justify-content: center;
    }

    .footer-logo-section p {
        margin: 0 auto 25px;
    }

    .footer-socials {
        justify-content: center;
    }

    .herader {
        height: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

} */

/* Responsive */
/* @media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .herader {
        height: 100%;
    }
} */

/*ռեսպոնսիվ*/
/* @media (min-width: 1200px) {



    .rep1 {
        width: 450px;
        height: 220px;
    }


    .rep1 {
        width: 580px;
        height: 350px;
    }

} */

/* @media (max-width: 1200px) {

    .logo .img {
        width: 120px;
    }

    .menu {
        padding: 10px;
        gap: 0;
    }

    .menu a,
    .menu button {
        padding: 6px 12px;
        font-size: 12px;
    }

} */





/* 
@media (max-width:1050px) {

    .header {
        padding: 0;
        display: flex;

        padding-left: 20px;
        padding-right: 20px;

    }


 

    .hero {
        flex-direction: column;
        padding-top: 80px;
    }

    .text-box {
        width: 80%;
        text-align: center;
    }

    .btn-box {
        width: 100%;
        padding-top: 40px;
    }


    .mobile-logo img {
        width: 60px;
        height: 60px;
    }

    .burger-menu {
        display: block;
        z-index: 12;
    }

    .burger-menu svg {
        width: 60px;
        height: 60px;
    }

    .circle {
        display: none;
    }

    .hero-description {
        font-size: 25px;
    }

    .hero-eyebrow {
        font-size: 14px;
    }

    .hero-title {
        font-size: 35px;
    }

    .bg.active {
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .boxes {


        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 20px;
        grid-row-gap: 20px;

    }

    .screens {
        width: 100%;
        display: flex;
        flex-direction: column
    }


    .features-grid {
        width: 100%;
        display: flex;
        flex-direction: column;

    }

    .feature-card.large {
        display: flex;
        flex-direction: row;

    }

    .left-box {
        display: flex;
        flex-direction: column;
    }


    .rep1 {
        width: 450px;
        height: 220px;
        object-fit: fill;
    }
} */


@media (max-width: 768px) {


    /* Main containers, slider track, and glass card overrides */
    .container,
    .content-container,
    .hero,
    .features,
    .screens,
    .custom-slider-section,
    .ecosystem-section,
    .contact-section,
    .partners-section,
    .slider-track,
    .glass-card,
    .single-slide,
    .main-footer {
        width: 100%;
        padding: 0px;
        box-sizing: border-box;
    }


    /* Header navigation rules moved to 1050px media query below */

    /* Fix grids for mobile */
    .boxes {
        grid-template-columns: 1fr !important;
    }

    .footer-links-group {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1f;
        width: 100%;
    }

    @media (max-width: 1024px) {

        /* 1. Փոխում ենք ընդհանուր դիագրամի բարձրությունը, որ տեղ լինի ուղղահայաց գծերի համար */
        .ecosystem-diagram {
            height: 450px;
            flex-direction: column;
        }

        /* 2. Գծերի կոնտեյները դարձնում ենք ուղղահայաց */
        .flow-lines {
            top: 0;
            left: 50%;
            width: auto;
            height: 100%;
            flex-direction: column;
            justify-content: space-between;
            transform: translateX(-50%);
            /* Կենտրոնացնում ենք հորիզոնական */
            padding: 20px 0;
            /* Որպեսզի գծերը չկպնեն եզրերին */
        }

        /* 3. Փոխում ենք հորիզոնական գծերը ուղղահայացի */
        .line {
            width: 3px;
            /* Դառնում է բարակ */
            height: 30%;
            /* Տալիս ենք բարձրություն */
            background: rgba(0, 136, 204, 0.15);
        }

        /* 4. Ուղղում ենք անիմացիան, որ շարժվի վերևից ներքև */
        .line::before {
            width: 100%;
            height: 30%;
            top: 0;
            left: 0;
            animation: flowLineVertical 2s infinite linear;
        }

        /* Յուրաքանչյուր գծի համար բարձրությունը կարող ես հարմարեցնել */
        .app-to-cloud,
        .cloud-to-admin {
            width: 3px;
            height: 35%;
        }
    }

    /* Ավելացրու նաև ուղղահայաց անիմացիայի keyframes-ը */
    @keyframes flowLineVertical {
        0% {
            top: -30%;
        }

        100% {
            top: 100%;
        }
    }
}

/* Tablet and mobile: remove menu entirely, place logo on the right and make it fixed */
@media (max-width: 1050px) {
    .header {
        position: fixed !important;
        top: 0;
        right: 0;
        width: 100%;
        flex-direction: row !important;
        justify-content: flex-end !important;
        padding: 30px 40px !important;
        background: transparent !important;
        z-index: 9999999 !important;
    }

    .logo {
        display: block !important;
        margin: 0 !important;
        pointer-events: auto;
    }


    .nav,
    .burger-menu,
    .mobile-menu,
    .mobile-logo {
        display: none !important;
    }

    @media (max-width: 1024px) {

        /* 1. Փոխում ենք ընդհանուր դիագրամի բարձրությունը, որ տեղ լինի ուղղահայաց գծերի համար */
        .ecosystem-diagram {
            height: 450px;
            flex-direction: column;
        }

        /* 2. Գծերի կոնտեյները դարձնում ենք ուղղահայաց */
        .flow-lines {
            top: 0;
            left: 50%;
            width: auto;
            height: 100%;
            flex-direction: column;
            justify-content: space-between;
            transform: translateX(-50%);
            /* Կենտրոնացնում ենք հորիզոնական */
            padding: 20px 0;
            /* Որպեսզի գծերը չկպնեն եզրերին */
        }

        /* 3. Փոխում ենք հորիզոնական գծերը ուղղահայացի */
        .line {
            width: 3px;
            /* Դառնում է բարակ */
            height: 30%;
            /* Տալիս ենք բարձրություն */
            background: rgba(0, 136, 204, 0.15);
        }

        /* 4. Ուղղում ենք անիմացիան, որ շարժվի վերևից ներքև */
        .line::before {
            width: 100%;
            height: 30%;
            top: 0;
            left: 0;
            animation: flowLineVertical 2s infinite linear;
        }

        /* Յուրաքանչյուր գծի համար բարձրությունը կարող ես հարմարեցնել */
        .app-to-cloud,
        .cloud-to-admin {
            width: 3px;
            height: 35%;
        }
    }

    /* Ավելացրու նաև ուղղահայաց անիմացիայի keyframes-ը */
    @keyframes flowLineVertical {
        0% {
            top: -30%;
        }

        100% {
            top: 100%;
        }
    }
}

/* 
@media (max-width: 768px) {
    .header {
        height: 100vh !important;
        padding: 40px 20px !important;
       
        align-items: flex-start !important;

    }
} */

@media (max-width: 1024px) {

    .logo-lng #lang {
        display: block;
    }

    .nav,
    .burger-menu,
    .mobile-menu,
    .menu {
        display: none !important;
    }

    /* Container fits exactly one screen without scroll (dvh avoids mobile browser cutoffs) */
    .content-container {
        height: 100dvh !important;
        padding-inline: 0 !important;
        /* Forces absolute flush edges */
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }

    .container {
        height: 100% !important;
        padding-inline: 0 !important;
        /* Guaranteed zero lateral padding for flush elements */
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding-bottom: 0 !important;
    }

    /* Hero takes available height, prioritizes auto margin symmetry */
    .hero {
        padding-top: 75px !important;
        padding-inline: clamp(15px, 5vw, 30px) !important;
        /* Protects text from hugging screen wall */
        justify-content: flex-start !important;
        flex: 1 1 auto !important;
        display: flex !important;
        flex-direction: column !important;
        min-height: 0 !important;
    }

    .text-box {
        margin-top: auto !important;
        margin-bottom: auto !important;
        width: 100% !important;
        text-align: center;
    }

    /* Partners Section perfectly hits the display edges without padding */
    .partners-section {
        flex: 0 0 auto !important;
        height: auto !important;
        padding-top: 15px !important;
        padding-bottom: 25px !important;
        padding-inline: 0 !important;
        /* 0px horizontal padding guarantees screen flushness */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    /* .header {
        padding-top: 80px !important;
    } */

    /* Increased Scaling for Titles */
    .hero-title {
        font-size: clamp(36px, 10vw, 64px) !important;
        line-height: 1.05 !important;
        font-weight: 900 !important;
    }

    .hero-description {
        text-align: center;
        font-size: 18px;
        line-height: 1.3;
        margin-top: 20px;
        font-weight: 500;
    }

    .hero-eyebrow {
        font-size: 15px;
        margin-top: 20px;
        margin-bottom: 8px !important;
    }

    /* 'Become a Partner' Button: Fully Visible & Enlarged */
    .btn-box {
        margin-top: auto !important;
        margin-bottom: auto !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }

    .arrow-btn {
        width: 90%;
        padding: 15px;
        font-size: 16px;
        border-radius: 16px !important;
        font-weight: 900 !important;
        justify-content: center !important;
    }

    .arrow-btn .arrow {
        font-size: clamp(22px, 6vw, 32px) !important;
    }

    /* Scaled Partner Logos */
    .partners-container {
        padding: 5px 0 !important;
        overflow-x: auto !important;
        /* Perfect native touch scrolling / flicking */
        overflow-y: hidden !important;
        scrollbar-width: none !important;
        /* Firefox hide scroll */
        -ms-overflow-style: none !important;
        /* IE hide scroll */
        -webkit-overflow-scrolling: touch !important;
        /* Smooth momentum iOS Safari */
    }

    .partners-container::-webkit-scrollbar {
        display: none !important;
        /* Chrome Safari hide scroll */
    }

    .partner-card {
        margin: 0 clamp(20px, 6vw, 50px) !important;
        /* Reduced horizontal gap */
    }

    .partner-card img {
        width: clamp(120px, 18vw, 180px) !important;
        margin-bottom: 10px !important;
    }

    .partner-card span {
        font-size: clamp(18px, 6vw, 24px) !important;
    }

    /* Fixed Logo */
    .logo {
        position: fixed !important;
        top: 20px !important;
        right: 30px !important;
        z-index: 999999 !important;
        pointer-events: auto !important;
    }


    .info-item a {
        font-size: 16px;
    }
}

/* Tablet Override Rules for First Fold Scaling and Layout */
@media (min-width: 768px) and (max-width: 1024px) {

    /* Limit font ballooning on wide tablet screens to guarantee 100dvh visibility */
    .hero {
        padding-top: 130px !important;
        padding-inline: clamp(40px, 8vw, 100px) !important;
        /* Elegant tablet wall padding */
    }

    .hero-title {
        font-size: clamp(54px, 10vw, 76px) !important;
        margin-top: 10px !important;
    }

    .hero-description {

        max-width: 85% !important;
        /* Text breathing room */
    }

    /* Keep Button Accessible and Symmetrical */
    .arrow-btn {
        width: clamp(340px, 45vw, 440px) !important;
        padding: clamp(20px, 3vh, 30px) clamp(24px, 5vw, 36px) !important;
        font-size: clamp(22px, 3vw, 28px) !important;
    }

    .arrow-btn .arrow {
        font-size: clamp(24px, 4vw, 30px) !important;
    }



    /* Adjust tracked logos for tablet real estate */
    .partner-card {
        margin: 0 clamp(20px, 4vw, 40px) !important;
        /* Reduced horizontal gap */
    }

    .partner-card img {
        width: clamp(150px, 16vw, 190px) !important;
    }

    .partner-card {
        font-size: clamp(16px, 2vw, 20px) !important;
    }

    @media (max-width: 1024px) {

        /* 1. Փոխում ենք ընդհանուր դիագրամի բարձրությունը, որ տեղ լինի ուղղահայաց գծերի համար */
        .ecosystem-diagram {
            height: 450px;
            flex-direction: column;
        }

        /* 2. Գծերի կոնտեյները դարձնում ենք ուղղահայաց */
        .flow-lines {
            top: 0;
            left: 50%;
            width: auto;
            height: 100%;
            flex-direction: column;
            justify-content: space-between;
            transform: translateX(-50%);
            /* Կենտրոնացնում ենք հորիզոնական */
            padding: 20px 0;
            /* Որպեսզի գծերը չկպնեն եզրերին */
        }

        /* 3. Փոխում ենք հորիզոնական գծերը ուղղահայացի */
        .line {
            width: 3px;
            /* Դառնում է բարակ */
            height: 30%;
            /* Տալիս ենք բարձրություն */
            background: rgba(0, 136, 204, 0.15);
        }

        /* 4. Ուղղում ենք անիմացիան, որ շարժվի վերևից ներքև */
        .line::before {
            width: 100%;
            height: 30%;
            top: 0;
            left: 0;
            animation: flowLineVertical 2s infinite linear;
        }

        /* Յուրաքանչյուր գծի համար բարձրությունը կարող ես հարմարեցնել */
        .app-to-cloud,
        .cloud-to-admin {
            width: 3px;
            height: 35%;
        }
    }

    /* Ավելացրու նաև ուղղահայաց անիմացիայի keyframes-ը */
    @keyframes flowLineVertical {
        0% {
            top: -30%;
        }

        100% {
            top: 100%;
        }
    }
}

/* -------------------------------------------------------------------------- */
/* Short / Landscape Screen Override (e.g. 1024x600, extremely tight vertical space) */
/* -------------------------------------------------------------------------- */
@media (max-height: 650px) {


    .contact-grid {
        flex-direction: column;
    }

    /* Compress Vertical Padding Massively */
    .hero {
        padding-top: 50px !important;
    }

    .header {
        padding-top: 20px !important;
    }

    /* Shrink the Texts */
    .hero-title {
        font-size: 35px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .hero-description {
        font-size: 25px !important;
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }

    .hero-eyebrow {
        font-size: 18px;
    }

    /* Keep the Button Visible by Shrinking its Vertical Mass */
    .btn-box {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .arrow-btn {
        width: clamp(200px, 35vw, 280px) !important;
        padding: clamp(8px, 1vh, 12px) clamp(16px, 3vw, 24px) !important;
        font-size: clamp(14px, 2vw, 18px) !important;
        border-radius: 12px !important;
    }

    .arrow-btn .arrow {
        font-size: clamp(16px, 3vw, 20px) !important;
    }

    /* Scale Down Logos Rapidly to Save Anchor Space */
    .logo {
        top: 10px !important;
    }

    .partners-section {
        padding-top: 2px !important;
        padding-bottom: 2px !important;
    }

    .partner-card {
        margin: 0 clamp(5px, 1.5vw, 15px) !important;
        /* Reduced horizontal gap */
    }

    .partner-card img {
        width: clamp(70px, 8vw, 90px) !important;
        margin-bottom: 2px !important;
    }

    .partner-card span {
        font-size: clamp(10px, 1.5vw, 12px) !important;
    }

    @media (max-width: 1024px) {

        /* 1. Փոխում ենք ընդհանուր դիագրամի բարձրությունը, որ տեղ լինի ուղղահայաց գծերի համար */
        .ecosystem-diagram {
            height: 450px;
            flex-direction: column;
        }

        /* 2. Գծերի կոնտեյները դարձնում ենք ուղղահայաց */
        .flow-lines {
            top: 0;
            left: 50%;
            width: auto;
            height: 100%;
            flex-direction: column;
            justify-content: space-between;
            transform: translateX(-50%);
            /* Կենտրոնացնում ենք հորիզոնական */
            padding: 20px 0;
            /* Որպեսզի գծերը չկպնեն եզրերին */
        }

        /* 3. Փոխում ենք հորիզոնական գծերը ուղղահայացի */
        .line {
            width: 3px;
            /* Դառնում է բարակ */
            height: 30%;
            /* Տալիս ենք բարձրություն */
            background: rgba(0, 136, 204, 0.15);
        }

        /* 4. Ուղղում ենք անիմացիան, որ շարժվի վերևից ներքև */
        .line::before {
            width: 100%;
            height: 30%;
            top: 0;
            left: 0;
            animation: flowLineVertical 2s infinite linear;
        }

        /* Յուրաքանչյուր գծի համար բարձրությունը կարող ես հարմարեցնել */
        .app-to-cloud,
        .cloud-to-admin {
            width: 3px;
            height: 35%;
        }
    }

    /* Ավելացրու նաև ուղղահայաց անիմացիայի keyframes-ը */
    @keyframes flowLineVertical {
        0% {
            top: -30%;
        }

        100% {
            top: 100%;
        }
    }
}

/* FINAL CONTACT SECTION MOBILE OVERRIDE */
@media (max-width: 767px) {





    .section-title {
        font-size: 32px !important;
        margin-bottom: 20px !important;
    }

    .btn,
    .become-partner-btn {
        font-size: 20px !important;
        padding: 18px 35px !important;
        display: inline-block !important;
        width: auto !important;
    }

    .box p,
    .feature-text {
        font-size: 20px !important;
    }

    /* PRESERVING EXISTING LAYOUT RULES */
    .contact-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        padding-inline: 0 !important;
    }

    .contact-form-card {
        order: 1 !important;
        width: 100% !important;
        display: block !important;
    }

    .contact-info-card {
        order: 2 !important;
        width: 100% !important;
        display: block !important;
    }

    .demo-form {
        width: 100%;
    }


    .contact-section {
        width: 100% !important;
        padding: 40px 15px !important;
    }

    .contact-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .tablet-mockup {
        width: 100%;
        height: auto;
    }

    .contact-grid {
        justify-content: center;
        grid-template-columns: 1f;
        width: 100%;
    }

    @media (max-width: 1024px) {

        /* 1. Փոխում ենք ընդհանուր դիագրամի բարձրությունը, որ տեղ լինի ուղղահայաց գծերի համար */
        .ecosystem-diagram {
            height: 450px;
            flex-direction: column;
        }

        /* 2. Գծերի կոնտեյները դարձնում ենք ուղղահայաց */
        .flow-lines {
            top: 0;
            left: 50%;
            width: auto;
            height: 100%;
            flex-direction: column;
            justify-content: space-between;
            transform: translateX(-50%);
            /* Կենտրոնացնում ենք հորիզոնական */
            padding: 20px 0;
            /* Որպեսզի գծերը չկպնեն եզրերին */
        }

        /* 3. Փոխում ենք հորիզոնական գծերը ուղղահայացի */
        .line {
            width: 3px;
            /* Դառնում է բարակ */
            height: 30%;
            /* Տալիս ենք բարձրություն */
            background: rgba(0, 136, 204, 0.15);
        }

        /* 4. Ուղղում ենք անիմացիան, որ շարժվի վերևից ներքև */
        .line::before {
            width: 100%;
            height: 30%;
            top: 0;
            left: 0;
            animation: flowLineVertical 2s infinite linear;
        }

        /* Յուրաքանչյուր գծի համար բարձրությունը կարող ես հարմարեցնել */
        .app-to-cloud,
        .cloud-to-admin {
            width: 3px;
            height: 35%;
        }
    }

    /* Ավելացրու նաև ուղղահայաց անիմացիայի keyframes-ը */
    @keyframes flowLineVertical {
        0% {
            top: -30%;
        }

        100% {
            top: 100%;
        }
    }
}










/*new form */


/* Ֆորմայի հիմնական կոնտեյները */
.demo-form {
    max-width: 450px;
    background: rgba(255, 255, 255, 0.05);
    /* Շատ թույլ սպիտակ շերտ */
    backdrop-filter: blur(15px);
    /* Ապակու էֆեկտը */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Նուրբ եզրագիծ */
    padding-top: 30px;
    padding-bottom: 20px;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 24px;
    /* Կլորացված անկյուններ */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    font-family: 'Inter', sans-serif;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    /* Fixed PX */
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    /* Թեթև թափանցիկ սպիտակ տեքստ */
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.required {
    color: #ff6b6b;
    margin-left: 4px;
}

/* Ինփութների ոճը ապակու վրա */
.form-group input {
    width: 100%;
    height: 48px;
    /* Fixed PX */
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 15px;
    /* Fixed PX */
    color: #ffffff;
    box-sizing: border-box;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ff6b6b;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
}

/* Սխալի հաղորդագրություն */
.error-msg {
    display: none;
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 6px;
    font-weight: 400;
}

.form-group input.invalid {
    border-color: #ff6b6b;
}

/* Կոճակը */
button#submitBtn {
    width: 100%;
    height: 54px;
    background: #ff6b6b;
    /* RezX Orange/Red */
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    margin-top: 10px;
}

button#submitBtn:hover {
    background: #ee5a5a;
    transform: translateY(-2px);
}

button#submitBtn:active {
    transform: translateY(0);
}

/* Սխալի հուշման տեքստը սկզբում թաքնված է */
.error-hint {
    color: #ff6b6b;
    font-size: 11px;
    /* Fixed PX */
    margin-top: 4px;
    display: none;
    font-weight: 400;
}

/* Եթե ինփութը սխալ է, կարմրացնում ենք եզրագիծը և ցույց տալիս հուշումը */
.form-group input.input-error {
    border-color: #ff6b6b !important;
    background: rgba(255, 107, 107, 0.05);
}

.form-group input.input-error+.error-hint {
    display: block;
}



.label-link {
    text-decoration: none;
    display: inline-block;
}

.label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* Բացատ տեքստի և սլաքի միջև */
    padding: 8px 16px;
    /* Fixed PX */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    /* Fixed PX */
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
}

.download-icon {
    transition: transform 0.3s ease;
}

/* Hover էֆեկտ */
.label-link:hover .label {
    background: rgba(255, 107, 107, 0.15);
    border-color: #ff6b6b;
    color: #ff6b6b;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

/* Սլաքի շարժումը (bounce) hover-ի ժամանակ */
.label-link:hover .download-icon {
    transform: translateY(2px);
    stroke: #ff6b6b;
}

#top {
    margin-top: 0;
}