
/* --- בלוק 1 --- */
.modal-content {
            background: url('http://webtiv.co.il/welcome/images/sampleformodal.jpg');
        }

/* --- בלוק 2 --- */
/*cookie*/
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 500px;
            right: 500px;
            background: #0f172a; /* כהה, הייטק */
            color: #ffffff;
            padding: 16px 20px;
            border-radius: 12px;
            display: none;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            z-index: 9999;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            font-size: 14px;
        }

            .cookie-banner a {
                color: #38bdf8;
                text-decoration: underline;
            }

            .cookie-banner button {
                background: #38bdf8;
                border: none;
                color: #0f172a;
                padding: 8px 18px;
                border-radius: 8px;
                cursor: pointer;
                font-weight: bold;
            }

                .cookie-banner button:hover {
                    background: #0ea5e9;
                }

        /*/cookie*/

        :root {
            --bg: #F7F8FB;
            --bg-alt: #EEF2FA;
            --ink: #0F172A;
            --ink-soft: #4B5567;
            --accent: #0052FF;
            --accent-2: #4D7CFF;
            --accent-glow: rgba(0,82,255,0.16);
            --icon-accent: #2F7D78;
            --icon-accent-soft: rgba(47,125,120,0.14);
            --icon-accent-light: #A7E3DC;
            --glass: rgba(255,255,255,0.55);
            --glass-border: rgba(255,255,255,0.6);
            --card-border: #E2E8F0;
            --radius: 20px;
            --header-height: 87px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            overflow-x: hidden;
            width: 100%;
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
            scroll-padding-top: calc(var(--header-height) + 14px);
        }

        .page-clip {
            position: relative;
            overflow-x: hidden;
            width: 100%;
            padding-top: var(--header-height);
        }

        body {
            font-family: 'Heebo',sans-serif;
            background: var(--bg);
            color: var(--ink);
            line-height: 1.65;
            overflow-x: hidden;
            width: 100%;
        }

        h1, h2, h3, .display {
            font-family: 'Rubik',sans-serif;
            letter-spacing: -0.02em;
        }

        a {
            color: inherit;
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(70px);
            opacity: 0.32;
            z-index: 0;
            pointer-events: none;
        }

        .wrap {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 28px;
        }

        header {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            backdrop-filter: blur(14px) saturate(160%);
            background: rgba(247,248,251,0.78);
            border-bottom: 1px solid var(--card-border);
        }

        .nav-wrap {
            max-width: 1180px;
            margin: 0 auto;
            padding: 14px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.25rem;
        }

        nav.main-nav > ul {
            list-style: none;
            display: flex;
            gap: 26px;
            font-size: 0.92rem;
            color: var(--ink-soft);
        }

        nav.main-nav a {
            text-decoration: none;
            transition: color .2s;
            cursor: pointer;
        }

        nav.main-nav > ul > li:hover > a {
            color: var(--accent);
        }

        .has-dd {
            position: relative;
        }

        .dd {
            position: absolute;
            top: 130%;
            right: 0;
            background: #fff;
            border: 1px solid var(--card-border);
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(15,23,42,0.12);
            padding: 14px;
            width: 230px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(6px);
            transition: .2s;
            z-index: 60;
        }

        .has-dd:hover .dd {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dd a {
            display: block;
            padding: 9px 12px;
            border-radius: 9px;
            font-size: 0.87rem;
            color: var(--ink-soft);
            text-decoration: none;
        }

            .dd a:hover {
                background: var(--bg-alt);
                color: var(--accent);
            }

        .has-dd-scroll .dd.dd-scroll,
        .has-dd-scroll:hover .dd.dd-scroll {
            top: 100%;
            width: 280px;
            height: 360px;
            max-height: calc(100vh - 130px);
            overflow-x: hidden;
            overflow-y: auto;
            overscroll-behavior: contain;
            -webkit-overflow-scrolling: touch;
            padding: 12px 8px;
            transform: none;
            touch-action: pan-y;
            direction: ltr;
            scrollbar-gutter: stable;
            scrollbar-width: thin;
            scrollbar-color: #475569 #e2e8f0;
        }

        .dd.dd-scroll > a {
            direction: rtl;
            text-align: right;
        }

        .dd.dd-scroll::-webkit-scrollbar {
            width: 10px;
        }

        .dd.dd-scroll::-webkit-scrollbar-thumb {
            background: #475569;
            border-radius: 8px;
            border: 2px solid #e2e8f0;
        }

        .dd.dd-scroll::-webkit-scrollbar-track {
            background: #e2e8f0;
            border-radius: 8px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .phone-pill {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: var(--ink-soft);
            font-weight: 600;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            border: 1.5px solid var(--card-border);
            border-radius: 10px;
            background: #fff;
            cursor: pointer;
            padding: 0;
            margin-inline-start: 6px;
        }

            .nav-toggle span {
                display: block;
                width: 18px;
                height: 2px;
                background: var(--ink);
                margin: 0 auto;
                border-radius: 2px;
                transition: transform .25s, opacity .25s;
            }

        header.nav-open .nav-toggle span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        header.nav-open .nav-toggle span:nth-child(2) {
            opacity: 0;
        }

        header.nav-open .nav-toggle span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .cta-btn {
            background: linear-gradient(135deg,var(--accent),var(--accent-2));
            color: white;
            border: none;
            padding: 11px 24px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            box-shadow: 0 8px 20px var(--accent-glow);
            transition: transform .2s;
        }

            .cta-btn:hover {
                transform: translateY(-2px) scale(1.02);
            }

        .cta-ghost {
            background: transparent;
            border: 1.5px solid var(--card-border);
            color: var(--ink);
            padding: 10px 20px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 0.88rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-app-buttons {
            display: none;
        }

            .mobile-app-buttons .app-download-link {
                width: 100%;
                text-decoration: none;
                border: 1px solid transparent;
                transition: transform .2s, box-shadow .2s, background .2s;
            }

                .mobile-app-buttons .app-download-link:nth-child(1) {
                    background: linear-gradient(135deg, #EAF8F0, #D9F1E6);
                    border-color: #BFE7D2;
                    color: #14532D;
                    box-shadow: 0 8px 18px rgba(34, 197, 94, 0.12);
                }

                .mobile-app-buttons .app-download-link:nth-child(2) {
                    background: linear-gradient(135deg, #EEF4FF, #E9E7FF);
                    border-color: #D7DDFE;
                    color: #263C7A;
                    box-shadow: 0 8px 18px rgba(99, 102, 241, 0.12);
                }

                .mobile-app-buttons .app-download-link:hover {
                    transform: translateY(-2px);
                }

        #video-demo {
            scroll-margin-top: calc(var(--header-height) + 16px);
        }

        .dot-grid {
            position: absolute;
            inset: 0;
            z-index: 0;
            opacity: 0.5;
            background-image: radial-gradient(circle,#C9D3E8 1.4px,transparent 1.4px);
            background-size: 26px 26px;
            -webkit-mask-image: radial-gradient(ellipse 700px 500px at 70% 20%, black 40%, transparent 80%);
            mask-image: radial-gradient(ellipse 700px 500px at 70% 20%, black 40%, transparent 80%);
        }

        .showcase-grid {
            position: relative;
            display: grid;
            grid-template-columns: 1fr;
            place-items: center;
            padding-top: 10px;
        }

        .monitor-wrap {
            width: 100%;
            max-width: 620px;
        }

        .monitor-shell {
            position: relative;
            background: linear-gradient(180deg,#F8FAFC 0%,#D7DCE4 100%);
            border-radius: 26px;
            padding: 10px 10px 34px;
            box-shadow: 0 36px 76px rgba(15,23,42,0.18), 0 8px 20px rgba(15,23,42,0.10);
            border: 1px solid rgba(148,163,184,0.50);
            overflow: hidden;
        }

            .monitor-shell::before {
                content: '';
                position: absolute;
                inset: 0;
                border-radius: inherit;
                pointer-events: none;
                background: linear-gradient(135deg,rgba(255,255,255,0.88),transparent 32%,rgba(148,163,184,0.18));
                z-index: 0;
            }

            .monitor-shell::after {
                content: '';
                position: absolute;
                right: 10px;
                left: 10px;
                bottom: 9px;
                height: 16px;
                border-radius: 0 0 18px 18px;
                background: linear-gradient(180deg,#EEF1F5,#C9D0DA);
                box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
                pointer-events: none;
                z-index: 1;
            }

        .monitor-cam {
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #111827;
            box-shadow: 0 0 0 2px rgba(255,255,255,0.38);
            z-index: 3;
        }

        .monitor-screen {
            position: relative;
            z-index: 2;
            border-radius: 18px;
            overflow: hidden;
            background: #0B1220;
            border: 7px solid #111827;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 1px 0 rgba(255,255,255,0.5);
        }

            .monitor-screen img {
                display: block;
                width: 100%;
                height: auto;
                transform: none !important;
                animation: none !important;
            }

            .monitor-screen::after {
                content: '';
                position: absolute;
                inset: 0;
                pointer-events: none;
                background: linear-gradient(115deg,rgba(255,255,255,0.16),transparent 34%,transparent 70%,rgba(255,255,255,0.07));
                mix-blend-mode: screen;
                opacity: 0.52;
            }

        .monitor-neck {
            width: 92px;
            height: 42px;
            background: linear-gradient(180deg,#D8DEE7,#AEB7C4);
            margin: -1px auto 0;
            clip-path: polygon(32% 0%,68% 0%,86% 100%,14% 100%);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
        }

        .monitor-base {
            width: 238px;
            height: 16px;
            background: linear-gradient(180deg,#F5F7FA,#BFC7D2);
            margin: 0 auto;
            border-radius: 999px 999px 18px 18px;
            box-shadow: 0 10px 18px rgba(15,23,42,0.15), inset 0 1px 0 rgba(255,255,255,0.86);
        }

        .phone-frame {
            position: absolute;
            left: -4px;
            bottom: -34px;
            width: 148px;
            background: linear-gradient(160deg,#3F444D 0%,#111827 58%,#05070B 100%);
            border-radius: 31px;
            padding: 6px;
            box-shadow: 0 24px 48px rgba(15,23,42,0.26), inset 0 0 0 1px rgba(255,255,255,0.10);
            border: 1px solid #6B7280;
            z-index: 5;
        }

            .phone-frame::before {
                content: '';
                position: absolute;
                inset: 2px;
                border-radius: 28px;
                border: 1px solid rgba(255,255,255,0.10);
                pointer-events: none;
                z-index: 2;
            }

            .phone-frame .notch {
                position: absolute;
                top: 10px;
                left: 50%;
                transform: translateX(-50%);
                width: 46px;
                height: 13px;
                background: #05070B;
                border-radius: 999px;
                box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
                z-index: 4;
            }

            .phone-frame .screen {
                position: relative;
                border-radius: 25px;
                overflow: hidden;
                background: #000;
                z-index: 1;
            }

            .phone-frame img {
                display: block;
                width: 100%;
                height: auto;
                transform: none !important;
                animation: none !important;
            }

        /* Device animation only: the frames move, the screen content stays still */
        .monitor-wrap {
            animation: monitorFloat 6.5s ease-in-out infinite;
            will-change: transform;
        }

        .phone-frame {
            animation: phoneFloat 5.5s ease-in-out infinite;
            will-change: transform;
        }

        @keyframes monitorFloat {
            0%, 100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-7px);
            }
        }

        @keyframes phoneFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-9px) rotate(-0.8deg);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .monitor-wrap,
            .phone-frame {
                animation: none !important;
            }
        }

        @media(min-width:701px) {
            .showcase-grid {
                padding-inline-start: 58px;
            }
        }

        @media(max-width:700px) {
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

                .hero-actions a {
                    text-align: center;
                }

                .hero-actions .watch-video-link {
                    display: none;
                }

            .mobile-app-buttons {
                display: flex;
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }

                .mobile-app-buttons .app-download-link {
                    justify-content: center;
                    padding: 10px 14px;
                }

            .phone-frame {
                width: 96px;
                left: 2px;
                bottom: -20px;
                border-radius: 23px;
                padding: 4px;
            }

                .phone-frame::before {
                    border-radius: 21px;
                }

                .phone-frame .notch {
                    top: 7px;
                    width: 30px;
                    height: 8px;
                    border-radius: 999px;
                }

                .phone-frame .screen {
                    border-radius: 19px;
                }

            .monitor-neck {
                width: 66px;
                height: 26px;
            }

            .monitor-base {
                width: 168px;
                height: 13px;
            }
        }

        .hero {
            position: relative;
            max-width: 1180px;
            margin: 0 auto;
            padding: 90px 28px 70px;
            display: flex;
            align-items: center;
            gap: 50px;
        }

            .hero > div:not(.dot-grid) {
                flex: 1;
                min-width: 0;
            }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            padding: 7px 16px;
            border-radius: 999px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 20px;
            backdrop-filter: blur(8px);
        }

            .eyebrow .dot {
                width: 7px;
                height: 7px;
                border-radius: 50%;
                background: var(--accent);
                box-shadow: 0 0 8px var(--accent);
            }

        .hero h1 {
            font-size: 2.85rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

            .hero h1 .grad {
                background: linear-gradient(135deg,var(--accent),#7C9CFF);
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
            }

        .hero p {
            font-size: 1.08rem;
            color: var(--ink-soft);
            max-width: 520px;
            margin-bottom: 30px;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            margin-bottom: 30px;
        }

        .trust-row {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            font-size: 0.85rem;
            color: var(--ink-soft);
        }

            .trust-row .badge {
                display: flex;
                align-items: center;
                gap: 8px;
            }

                .trust-row .badge .ic {
                    color: var(--accent);
                }

        .hero > div.hero-visual {
            position: relative;
            flex: 1.08;
        }

        .glass-card {
            position: absolute;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            backdrop-filter: blur(16px) saturate(160%);
            box-shadow: 0 20px 50px rgba(15,23,42,0.10);
            padding: 20px;
        }

        .card-main {
            width: 280px;
            top: 10px;
            left: 10px;
            z-index: 3;
        }

        .card-2 {
            width: 210px;
            top: 230px;
            left: 180px;
            z-index: 2;
        }

        .card-3 {
            width: 170px;
            top: 60px;
            left: 250px;
            z-index: 1;
            opacity: 0.9;
        }

        .mini-label {
            font-size: 0.72rem;
            color: var(--ink-soft);
            font-weight: 600;
            margin-bottom: 6px;
        }

        .mini-num {
            font-family: 'Rubik',sans-serif;
            font-weight: 800;
            font-size: 1.6rem;
        }

        .pulse {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #22C55E;
            display: inline-block;
            box-shadow: 0 0 8px #22C55E;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%,100% {
                opacity: 1;
            }

            50% {
                opacity: .4;
            }
        }

        .bar {
            height: 6px;
            border-radius: 4px;
            background: var(--bg-alt);
            overflow: hidden;
            margin-top: 8px;
        }

            .bar span {
                display: block;
                height: 100%;
                background: linear-gradient(90deg,var(--accent),var(--accent-2));
                border-radius: 4px;
            }

        .logo-strip-wrap {
            position: relative;
            width: 100%;
            max-width: 1180px;
            margin: 0 auto;
            padding: 28px 28px 6px;
            overflow: hidden;
            box-sizing: border-box;
        }

        .logo-strip-label {
            text-align: center;
            font-size: 0.85rem;
            color: var(--ink-soft);
        }

        section {
            position: relative;
            max-width: 1180px;
            margin: 0 auto;
            /*padding: 64px 28px;*/
            padding: 20px 28px;
            z-index: 1;
        }

        .section-alt {
            background: linear-gradient(180deg,transparent,var(--bg-alt) 12%,var(--bg-alt) 88%,transparent);
        }

            .section-alt > .wrap, .section-alt {
                position: relative;
                z-index: 1;
            }

        .section-head {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 46px;
        }

            .section-head h2 {
                font-size: 1.35rem;
                font-weight: 800;
                margin-bottom: 14px;
            }

            .section-head p {
                color: var(--ink-soft);
                font-size: 1.02rem;
            }


        .browser-frame {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--card-border);
            box-shadow: 0 30px 70px rgba(15,23,42,0.14);
        }

        .browser-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            background: #F1F3F9;
            border-bottom: 1px solid var(--card-border);
        }

            .browser-bar .dotc {
                width: 11px;
                height: 11px;
                border-radius: 50%;
            }

            .browser-bar .url-pill {
                margin-inline-start: 12px;
                background: #fff;
                border: 1px solid var(--card-border);
                border-radius: 8px;
                padding: 5px 14px;
                font-size: 0.75rem;
                color: var(--ink-soft);
                flex: 1;
                max-width: 260px;
            }
        /* .video  .video-wrap{ max-width:800px; margin:0 auto; }-body{ position:relative; aspect-ratio:16/9; background:linear-gradient(135deg,#0F1B3D,#1B2B5C); display:flex; align-items:center; justify-content:center; }*/
        .video-wrap {
            max-width: 800px;
            margin: 0 auto;
        }

        .video-body {
            position: relative;
            aspect-ratio: 16 / 9;
            background: linear-gradient(135deg, #0F1B3D, #1B2B5C);
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .video-body iframe {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                border: 0;
            }

        .play-btn {
            width: 74px;
            height: 74px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(6px);
            border: 1.5px solid rgba(255,255,255,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: .2s;
        }

            .play-btn:hover {
                transform: scale(1.08);
                background: rgba(255,255,255,0.25);
            }

            .play-btn::after {
                content: '';
                border-inline-start: 22px solid white;
                border-top: 13px solid transparent;
                border-bottom: 13px solid transparent;
                margin-inline-start: 5px;
            }

        .video-caption {
            text-align: center;
            margin-top: 16px;
            color: var(--ink-soft);
            font-size: 0.9rem;
        }

        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 20px;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 24px;
        }

        .feature-card {
            background: #fff;
            border: 1px solid var(--card-border);
            border-radius: 18px;
            padding: 26px 22px;
            transition: .25s;
        }

            .feature-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 16px 34px rgba(15,23,42,0.08);
                border-color: var(--accent);
            }

        .fa-solid, .fa-brands,
        .svg-inline--fa {
            display: inline-block;
            width: 1em;
            height: 1em;
            line-height: 1;
            vertical-align: -0.125em;
        }

        .feature-icon .svg-inline--fa,
        .feature-icon i {
            font-size: 1.15rem;
            color: var(--icon-accent);
        }

        .feature-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg,var(--icon-accent-soft),transparent);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            font-size: 1.25rem;
        }


            .phone-pill i,
            .trust-row .badge .ic,
            .feature-icon i,
            .contact-item .ic i,
            .cta-ghost i {
                line-height: 1;
            }

        .phone-pill i,
        .trust-row .badge .ic {
            color: var(--icon-accent);
        }

        .feature-icon i {
            color: var(--icon-accent);
            font-size: 1.15rem;
        }

        .contact-item .ic i {
            color: var(--icon-accent-light);
            font-size: 0.95rem;
        }


        .phone-pill .svg-inline--fa,
        .trust-row .badge .svg-inline--fa,
        .feature-icon .svg-inline--fa {
            color: var(--icon-accent);
        }

        .contact-item .ic .svg-inline--fa {
            color: var(--icon-accent-light);
        }

        .cta-ghost i {
            margin-inline-start: 7px;
            font-size: 0.95rem;
        }

        .watch-video-link i,
        .watch-video-link .svg-inline--fa {
            color: var(--icon-accent);
        }

        .app-download-link i {
            font-size: 1rem;
        }

        .feature-card h3 {
            font-size: 1.02rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .feature-card p {
            font-size: 0.87rem;
            color: var(--ink-soft);
        }

        .feature-card .learn {
            display: inline-block;
            margin-top: 12px;
            font-size: 0.8rem;
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
        }


        @media(max-width:900px) {
            .split {
                grid-template-columns: 1fr;
            }
        }




        .contact-grid {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 30px;
        }

        .contact-info {
            background: linear-gradient(160deg,#0F1B3D,#16244D);
            border-radius: 22px;
            padding: 36px 30px;
            color: white;
        }

            .contact-info h3 {
                font-size: 1.25rem;
                margin-bottom: 10px;
            }

            .contact-info p {
                color: #B9C2DE;
                font-size: 0.88rem;
                margin-bottom: 24px;
            }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.88rem;
        }

            .contact-item .ic {
                width: 36px;
                height: 36px;
                border-radius: 10px;
                background: rgba(167,227,220,0.12);
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }

        .contact-form {
            background: #fff;
            border: 1px solid var(--card-border);
            border-radius: 22px;
            padding: 34px 30px;
        }

        .index-contact-form-frame {
            display: block;
            width: 100%;
            height: 350px;
            border: 0;
            background: transparent;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        .field label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 7px;
        }

        .field input, .field textarea {
            width: 100%;
            border: 1.5px solid var(--card-border);
            border-radius: 12px;
            padding: 12px 14px;
            font-family: inherit;
            font-size: 0.88rem;
            background: #FAFBFD;
            transition: .2s;
        }

            .field input:focus, .field textarea:focus {
                outline: none;
                border-color: var(--accent);
                background: #fff;
                box-shadow: 0 0 0 4px var(--accent-glow);
            }

        .field.full {
            margin-bottom: 16px;
        }

        @media(max-width:900px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        footer {
            background: #0F1B3D;
            color: #B9C2DE;
            padding: 56px 28px 26px;
            margin-top: 50px;
        }

        .foot-wrap {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.4fr repeat(4,1fr);
            gap: 30px;
        }

        .foot-brand .logo {
            color: white;
            margin-bottom: 14px;
        }

        .foot-brand p {
            font-size: 0.83rem;
            color: #8593B8;
            max-width: 230px;
        }

        .foot-col h4 {
            color: white;
            font-size: 0.83rem;
            margin-bottom: 14px;
            font-family: 'Rubik',sans-serif;
        }

        .foot-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 9px;
        }

        .foot-col a {
            color: #8FA0CE;
            text-decoration: none;
            font-size: 0.81rem;
            transition: .2s;
        }

            .foot-col a:hover {
                color: white;
            }

        .foot-bottom {
            max-width: 1180px;
            margin: 36px auto 0;
            padding-top: 22px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            font-size: 0.76rem;
            color: #6B7BA3;
            flex-wrap: wrap;
            gap: 10px;
        }

        @media(max-width:900px) {
            .hero {
                flex-direction: column;
                align-items: stretch;
            }

            .grid-4, .grid-3 {
                grid-template-columns: repeat(2,1fr);
            }

            .foot-wrap {
                grid-template-columns: repeat(2,1fr);
            }

            .nav-toggle {
                display: flex;
            }

            nav.main-nav {
                position: absolute;
                top: 100%;
                right: 0;
                left: 0;
                background: #fff;
                border-bottom: 1px solid var(--card-border);
                box-shadow: 0 20px 40px rgba(15,23,42,0.1);
                max-height: 0;
                overflow: hidden;
                transition: max-height .3s ease;
            }

                nav.main-nav > ul {
                    flex-direction: column;
                    gap: 0;
                    padding: 6px 28px 18px;
                }

                    nav.main-nav > ul > li {
                        border-bottom: 1px solid var(--card-border);
                    }

                nav.main-nav a {
                    display: block;
                    padding: 14px 2px;
                }

            header.nav-open nav.main-nav {
                max-height: 80vh;
                overflow-y: auto;
            }

            header.nav-open.menu-scroll-open nav.main-nav {
                overflow-y: hidden;
            }

            .has-dd .dd {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                width: auto;
                padding: 0 0 8px 16px;
                display: none;
            }

            .has-dd.dd-open .dd {
                display: block;
            }

            .has-dd.dd-open .dd.dd-scroll {
                height: 280px;
                max-height: 50vh;
                overflow-x: hidden;
                overflow-y: auto;
                width: auto;
            }

            .has-dd:hover .dd {
                transform: none;
            }
        }

        @media(max-width:900px) {
            .nav-right > .cta-btn {
                display: none;
            }
        }

        @media(max-width:600px) {
            .phone-pill {
                display: none;
            }
        }

        @media(max-width:560px) {
            .grid-4, .grid-3 {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.15rem;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

                .hero-actions a {
                    text-align: center;
                }

                .hero-actions .watch-video-link {
                    display: none;
                }

            .mobile-app-buttons {
                display: flex;
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }

                .mobile-app-buttons .app-download-link {
                    justify-content: center;
                    padding: 10px 14px;
                }


            .foot-wrap {
                grid-template-columns: repeat(2,minmax(0,1fr));
                gap: 26px 18px;
            }

            .foot-brand {
                grid-column: 1 / -1;
                text-align: center;
            }

                .foot-brand .logo {
                    justify-content: center;
                }

                .foot-brand p {
                    max-width: 280px;
                    margin: 0 auto;
                }

            .foot-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* הגדרת תפריט ה-Dropdown */
        .has-dropdown {
            position: relative;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            right: 0; /* מותאם לעברית (RTL) */
            background-color: #fff;
            list-style: none;
            padding: 10px 0;
            margin: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            min-width: 180px;
            z-index: 1000;
            border-radius: 6px;
        }

            .dropdown-menu li a {
                display: block;
                padding: 8px 16px;
                color: #333;
                text-decoration: none;
                white-space: nowrap;
            }

                .dropdown-menu li a:hover {
                    background-color: #f5f5f5;
                }

        /* הצגת התפריט בזמן רחיפה */
        .has-dropdown:hover .dropdown-menu {
            display: block;
        }
        /*  סוף הגדרת תפריט ה-Dropdown */

/* --- בלוק 3 --- */
/* Luxury black desktop monitor + updated iPhone screen + richer device animation */
        .showcase-grid {
            perspective: 1200px;
        }

        .monitor-wrap {
            max-width: 640px;
            transform-style: preserve-3d;
            animation: luxuryMonitorFloat 7.2s ease-in-out infinite;
            filter: drop-shadow(0 34px 34px rgba(15,23,42,0.18));
        }

        .monitor-shell {
            position: relative;
            background: linear-gradient(145deg, #0B0F19 0%, #111827 48%, #020617 100%);
            border-radius: 28px;
            padding: 12px 12px 28px;
            border: 1px solid rgba(148,163,184,0.28);
            box-shadow: 0 42px 90px rgba(2,6,23,0.34), 0 14px 26px rgba(15,23,42,0.20), inset 0 1px 0 rgba(255,255,255,0.18), inset 0 -22px 42px rgba(0,0,0,0.55);
            overflow: hidden;
        }

            .monitor-shell::before {
                content: '';
                position: absolute;
                inset: 0;
                border-radius: inherit;
                pointer-events: none;
                z-index: 3;
                background: linear-gradient(120deg, rgba(255,255,255,0.22), transparent 22%, transparent 72%, rgba(255,255,255,0.08)), radial-gradient(circle at 18% 0%, rgba(255,255,255,0.22), transparent 34%);
                opacity: 0.48;
            }

            .monitor-shell::after {
                content: '';
                position: absolute;
                top: 0;
                bottom: 0;
                width: 30%;
                right: -46%;
                z-index: 4;
                pointer-events: none;
                background: linear-gradient(105deg, transparent, rgba(255,255,255,0.18), transparent);
                transform: skewX(-18deg);
                animation: monitorLightSweep 5.8s ease-in-out infinite;
            }

        .monitor-cam {
            position: absolute;
            top: 7px;
            left: 50%;
            transform: translateX(-50%);
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: radial-gradient(circle, #475569 0%, #020617 70%);
            box-shadow: 0 0 0 2px rgba(255,255,255,0.12), 0 0 10px rgba(255,255,255,0.12);
            z-index: 5;
        }

        .monitor-screen {
            position: relative;
            z-index: 2;
            border-radius: 18px;
            overflow: hidden;
            background: #030712;
            border: 8px solid #05070B;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.09), 0 2px 0 rgba(255,255,255,0.12), 0 12px 28px rgba(0,0,0,0.28);
        }

            .monitor-screen img {
                display: block;
                width: 100%;
                height: auto;
                transform: none !important;
                animation: none !important;
            }

            .monitor-screen::after {
                content: '';
                position: absolute;
                inset: 0;
                pointer-events: none;
                background: linear-gradient(120deg, rgba(255,255,255,0.14), transparent 28%, transparent 68%, rgba(255,255,255,0.06)), radial-gradient(circle at 14% 10%, rgba(255,255,255,0.16), transparent 24%);
                mix-blend-mode: screen;
                opacity: 0.55;
            }

        .monitor-neck {
            width: 96px;
            height: 44px;
            background: linear-gradient(180deg, #151B26 0%, #070B12 100%);
            margin: -1px auto 0;
            clip-path: polygon(30% 0%, 70% 0%, 88% 100%, 12% 100%);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 12px 22px rgba(15,23,42,0.18);
        }

        .monitor-base {
            width: 250px;
            height: 17px;
            background: linear-gradient(180deg, #1F2937 0%, #070B12 100%);
            margin: 0 auto;
            border-radius: 999px 999px 18px 18px;
            box-shadow: 0 12px 22px rgba(15,23,42,0.24), inset 0 1px 0 rgba(255,255,255,0.20);
        }

        .phone-frame {
            width: 158px;
            left: -8px;
            bottom: -38px;
            border-radius: 34px;
            padding: 7px;
            background: linear-gradient(145deg, #343A46 0%, #10151F 54%, #030712 100%);
            border: 1px solid rgba(148,163,184,0.55);
            box-shadow: 0 28px 54px rgba(2,6,23,0.30), inset 0 1px 0 rgba(255,255,255,0.18), inset 0 -18px 28px rgba(0,0,0,0.42);
            animation: luxuryPhoneFloat 6.2s ease-in-out infinite;
            transform-style: preserve-3d;
        }

            .phone-frame::before {
                content: '';
                position: absolute;
                inset: 2px;
                border-radius: 31px;
                border: 1px solid rgba(255,255,255,0.11);
                pointer-events: none;
                z-index: 4;
            }

            .phone-frame::after {
                content: '';
                position: absolute;
                top: 4px;
                bottom: 4px;
                width: 30%;
                right: -42%;
                z-index: 5;
                pointer-events: none;
                background: linear-gradient(105deg, transparent, rgba(255,255,255,0.20), transparent);
                transform: skewX(-18deg);
                animation: phoneLightSweep 5.2s ease-in-out infinite 0.8s;
            }

            .phone-frame .notch {
                top: 11px;
                width: 48px;
                height: 14px;
                border-radius: 999px;
                background: #020617;
                box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 0 0 1px rgba(0,0,0,0.5);
                z-index: 6;
            }

            .phone-frame .screen {
                position: relative;
                border-radius: 27px;
                overflow: hidden;
                background: #000;
                z-index: 1;
                box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10);
                aspect-ratio: 9 / 20;
            }

            .phone-frame img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: top center;
                transform: none !important;
                animation: none !important;
            }

        @keyframes luxuryMonitorFloat {
            0%, 100% {
                transform: translateY(0) rotateX(0deg) rotateY(0deg);
            }

            25% {
                transform: translateY(-6px) rotateX(1deg) rotateY(-1.2deg);
            }

            50% {
                transform: translateY(-10px) rotateX(0deg) rotateY(1.1deg);
            }

            75% {
                transform: translateY(-5px) rotateX(-0.7deg) rotateY(-0.6deg);
            }
        }

        @keyframes luxuryPhoneFloat {
            0%, 100% {
                transform: translateY(0) rotate(-1.2deg);
            }

            35% {
                transform: translateY(-13px) rotate(1.8deg);
            }

            70% {
                transform: translateY(-5px) rotate(-2.2deg);
            }
        }

        @keyframes monitorLightSweep {
            0%, 42% {
                right: -46%;
                opacity: 0;
            }

            52% {
                opacity: 0.78;
            }

            68%, 100% {
                right: 118%;
                opacity: 0;
            }
        }

        @keyframes phoneLightSweep {
            0%, 44% {
                right: -42%;
                opacity: 0;
            }

            54% {
                opacity: 0.70;
            }

            72%, 100% {
                right: 118%;
                opacity: 0;
            }
        }

        @media(max-width:700px) {
            .phone-frame {
                width: 108px;
                left: 2px;
                bottom: -22px;
                border-radius: 25px;
                padding: 4px;
            }

                .phone-frame::before {
                    border-radius: 23px;
                }

                .phone-frame .notch {
                    top: 7px;
                    width: 31px;
                    height: 9px;
                }

                .phone-frame .screen {
                    border-radius: 21px;
                }

            .monitor-neck {
                width: 72px;
                height: 30px;
            }

            .monitor-base {
                width: 176px;
                height: 13px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .monitor-wrap,
            .phone-frame,
            .monitor-shell::after,
            .phone-frame::after {
                animation: none !important;
            }
        }

/* --- בלוק 4 --- */
/* Monitor redesign: slim black V-stand screen, inspired by the uploaded reference */
        .showcase-grid {
            perspective: 1200px;
        }

        .monitor-wrap {
            max-width: 650px !important;
            transform-style: preserve-3d;
            animation: slimMonitorFloat 7.4s ease-in-out infinite !important;
            filter: drop-shadow(0 30px 34px rgba(15,23,42,0.20));
        }

        .monitor-shell {
            position: relative !important;
            background: #111315 !important;
            border-radius: 5px 5px 2px 2px !important;
            padding: 5px 5px 17px !important;
            border: 1px solid #20242A !important;
            box-shadow: 0 34px 70px rgba(2,6,23,0.26), 0 10px 24px rgba(15,23,42,0.18), inset 0 1px 0 rgba(255,255,255,0.12) !important;
            overflow: hidden !important;
        }

            .monitor-shell::before {
                content: '' !important;
                position: absolute !important;
                inset: 0 !important;
                border-radius: inherit !important;
                pointer-events: none !important;
                z-index: 4 !important;
                background: linear-gradient(180deg, rgba(255,255,255,0.10), transparent 12%), linear-gradient(105deg, transparent 18%, rgba(255,255,255,0.10) 42%, transparent 64%) !important;
                opacity: 0.45 !important;
            }

            .monitor-shell::after {
                content: 'webtiv' !important;
                position: absolute !important;
                left: 50% !important;
                right: auto !important;
                bottom: 1px !important;
                top: auto !important;
                width: auto !important;
                height: 14px !important;
                transform: translateX(-50%) !important;
                animation: none !important;
                background: transparent !important;
                color: rgba(255,255,255,0.72) !important;
                font-family: Arial, sans-serif !important;
                font-size: 8px !important;
                font-weight: 700 !important;
                letter-spacing: 0.04em !important;
                line-height: 14px !important;
                z-index: 6 !important;
                pointer-events: none !important;
            }

        .monitor-cam {
            display: none !important;
        }

        .monitor-screen {
            position: relative !important;
            z-index: 2 !important;
            border: 0 !important;
            border-radius: 2px !important;
            overflow: hidden !important;
            background: #050505 !important;
            aspect-ratio: 16 / 9 !important;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), inset 0 -1px 0 rgba(0,0,0,0.35) !important;
        }

            .monitor-screen img {
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
                object-position: center top !important;
                display: block !important;
                transform: none !important;
                animation: none !important;
            }

            .monitor-screen::after {
                content: '' !important;
                position: absolute !important;
                inset: 0 !important;
                pointer-events: none !important;
                background: linear-gradient(110deg, rgba(255,255,255,0.13), transparent 27%, transparent 72%, rgba(255,255,255,0.05)), radial-gradient(circle at 14% 10%, rgba(255,255,255,0.10), transparent 22%) !important;
                opacity: 0.48 !important;
                mix-blend-mode: screen !important;
            }

        .monitor-neck {
            position: relative !important;
            width: 18px !important;
            height: 66px !important;
            margin: -1px auto 0 !important;
            background: linear-gradient(90deg, #171A1F 0%, #2B3036 48%, #0B0D10 100%) !important;
            clip-path: none !important;
            border-radius: 0 0 12px 12px !important;
            box-shadow: 0 12px 18px rgba(15,23,42,0.18), inset 0 1px 0 rgba(255,255,255,0.12) !important;
            z-index: 2 !important;
        }

            .monitor-neck::after {
                content: '' !important;
                position: absolute !important;
                left: 50% !important;
                bottom: -7px !important;
                width: 42px !important;
                height: 20px !important;
                transform: translateX(-50%) !important;
                border-radius: 50% 50% 12px 12px !important;
                background: linear-gradient(180deg, #2A2F35, #101317) !important;
                box-shadow: 0 8px 14px rgba(15,23,42,0.20) !important;
            }

        .monitor-base {
            position: relative !important;
            width: 360px !important;
            height: 74px !important;
            margin: -2px auto 0 !important;
            background: transparent !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            overflow: visible !important;
        }

            .monitor-base::before,
            .monitor-base::after {
                content: '' !important;
                position: absolute !important;
                top: 13px !important;
                left: 50% !important;
                width: 178px !important;
                height: 8px !important;
                background: linear-gradient(180deg, #30353B, #15191E) !important;
                border-radius: 999px !important;
                box-shadow: 0 10px 18px rgba(15,23,42,0.22), inset 0 1px 0 rgba(255,255,255,0.12) !important;
                transform-origin: 4px 50% !important;
            }

            .monitor-base::before {
                transform: rotate(16deg) !important;
            }

            .monitor-base::after {
                transform: rotate(164deg) !important;
            }

        @keyframes slimMonitorFloat {
            0%, 100% {
                transform: translateY(0) rotateX(0deg) rotateY(0deg);
            }

            28% {
                transform: translateY(-7px) rotateX(0.8deg) rotateY(-1deg);
            }

            55% {
                transform: translateY(-11px) rotateX(0deg) rotateY(0.9deg);
            }

            78% {
                transform: translateY(-5px) rotateX(-0.5deg) rotateY(-0.5deg);
            }
        }

        @media(max-width:700px) {
            .monitor-shell {
                padding: 4px 4px 13px !important;
                border-radius: 4px 4px 2px 2px !important;
            }

                .monitor-shell::after {
                    height: 11px !important;
                    font-size: 6px !important;
                    line-height: 11px !important;
                }

            .monitor-neck {
                width: 13px !important;
                height: 42px !important;
            }

                .monitor-neck::after {
                    width: 28px !important;
                    height: 13px !important;
                    bottom: -5px !important;
                }

            .monitor-base {
                width: 230px !important;
                height: 48px !important;
            }

                .monitor-base::before,
                .monitor-base::after {
                    top: 8px !important;
                    width: 112px !important;
                    height: 6px !important;
                }
        }

/* --- בלוק 5 --- */
/* Fix: connect monitor stand directly to the screen body */
        .monitor-neck {
            margin: -1px auto 0 !important;
            z-index: 7 !important;
        }

        .monitor-shell {
            margin-bottom: 0 !important;
        }

        .monitor-base {
            margin: -7px auto 0 !important;
            z-index: 1 !important;
        }

        .monitor-neck::before {
            content: '' !important;
            position: absolute !important;
            top: -9px !important;
            left: 50% !important;
            width: 30px !important;
            height: 14px !important;
            transform: translateX(-50%) !important;
            background: linear-gradient(180deg, #20242A, #101317) !important;
            border-radius: 0 0 8px 8px !important;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.10) !important;
            z-index: 8 !important;
        }

        @media(max-width:700px) {
            .monitor-base {
                margin: -5px auto 0 !important;
            }

            .monitor-neck::before {
                top: -7px !important;
                width: 22px !important;
                height: 10px !important;
                border-radius: 0 0 6px 6px !important;
            }
        }

/* --- בלוק 6 --- */
/* Refined monitor stand to closely match the uploaded reference */
        .monitor-shell {
            margin-bottom: 0 !important;
        }

        .monitor-neck {
            width: 12px !important;
            height: 64px !important;
            margin: -2px auto 0 !important;
            background: linear-gradient(90deg, #202328 0%, #3a4047 45%, #15191d 100%) !important;
            border-radius: 0 0 10px 10px !important;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 8px 14px rgba(0,0,0,0.18) !important;
            position: relative !important;
            z-index: 8 !important;
        }

            .monitor-neck::before {
                content: '' !important;
                position: absolute !important;
                top: -5px !important;
                left: 50% !important;
                width: 22px !important;
                height: 10px !important;
                transform: translateX(-50%) !important;
                background: linear-gradient(180deg, #2d3238, #12161a) !important;
                border-radius: 0 0 8px 8px !important;
                box-shadow: inset 0 1px 0 rgba(255,255,255,0.10) !important;
            }

            .monitor-neck::after {
                content: '' !important;
                position: absolute !important;
                left: 50% !important;
                bottom: -2px !important;
                width: 28px !important;
                height: 14px !important;
                transform: translateX(-50%) !important;
                background: linear-gradient(180deg, #30353b, #171b20) !important;
                border-radius: 50% 50% 10px 10px !important;
                box-shadow: 0 4px 7px rgba(0,0,0,0.10) !important;
            }

        .monitor-base {
            position: relative !important;
            width: 340px !important;
            height: 66px !important;
            margin: -6px auto 0 !important;
            background: radial-gradient(ellipse 24px 10px at 50% 12px, #363b42 0%, #252a30 52%, #161a1f 78%, transparent 80%) !important;
            box-shadow: none !important;
            border-radius: 0 !important;
            overflow: visible !important;
            z-index: 3 !important;
        }

            .monitor-base::before,
            .monitor-base::after {
                content: '' !important;
                position: absolute !important;
                top: 10px !important;
                width: 168px !important;
                height: 8px !important;
                background: linear-gradient(180deg, #3a4047 0%, #272c33 45%, #171b20 100%) !important;
                border-radius: 999px !important;
                box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 12px rgba(0,0,0,0.12) !important;
            }

            .monitor-base::before {
                right: 50% !important;
                margin-right: -2px !important;
                transform-origin: 100% 50% !important;
                transform: rotate(-18deg) !important;
            }

            .monitor-base::after {
                left: 50% !important;
                margin-left: -2px !important;
                transform-origin: 0 50% !important;
                transform: rotate(18deg) !important;
            }

        @media (max-width:700px) {
            .monitor-neck {
                width: 9px !important;
                height: 44px !important;
            }

                .monitor-neck::before {
                    top: -4px !important;
                    width: 16px !important;
                    height: 8px !important;
                }

                .monitor-neck::after {
                    width: 20px !important;
                    height: 10px !important;
                }

            .monitor-base {
                width: 220px !important;
                height: 42px !important;
                margin: -4px auto 0 !important;
                background: radial-gradient(ellipse 16px 7px at 50% 8px, #363b42 0%, #252a30 52%, #161a1f 78%, transparent 80%) !important;
            }

                .monitor-base::before,
                .monitor-base::after {
                    top: 7px !important;
                    width: 110px !important;
                    height: 6px !important;
                }
        }

/* --- בלוק 7 --- */
/* Straight-line monitor stand: no rounded center bump, no rounded feet */
        .monitor-neck {
            width: 12px !important;
            height: 66px !important;
            margin: -2px auto 0 !important;
            background: linear-gradient(90deg, #1d2126 0%, #363b42 48%, #12161a 100%) !important;
            border-radius: 0 !important;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 8px 14px rgba(0,0,0,0.16) !important;
            z-index: 8 !important;
        }

            .monitor-neck::before {
                content: '' !important;
                position: absolute !important;
                top: -5px !important;
                left: 50% !important;
                width: 22px !important;
                height: 10px !important;
                transform: translateX(-50%) !important;
                background: linear-gradient(180deg, #2a2f35, #12161a) !important;
                border-radius: 0 !important;
                box-shadow: inset 0 1px 0 rgba(255,255,255,0.10) !important;
            }

            .monitor-neck::after {
                display: none !important;
                content: none !important;
            }

        .monitor-base {
            position: relative !important;
            width: 350px !important;
            height: 64px !important;
            margin: -5px auto 0 !important;
            background: transparent !important;
            box-shadow: none !important;
            border-radius: 0 !important;
            overflow: visible !important;
            z-index: 3 !important;
        }

            .monitor-base::before,
            .monitor-base::after {
                content: '' !important;
                position: absolute !important;
                top: 9px !important;
                width: 176px !important;
                height: 8px !important;
                background: linear-gradient(180deg, #363b42 0%, #242930 50%, #14181d 100%) !important;
                border-radius: 0 !important;
                box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 8px 12px rgba(0,0,0,0.12) !important;
            }

            .monitor-base::before {
                right: 50% !important;
                margin-right: -1px !important;
                transform-origin: 100% 50% !important;
                transform: rotate(-18deg) !important;
            }

            .monitor-base::after {
                left: 50% !important;
                margin-left: -1px !important;
                transform-origin: 0 50% !important;
                transform: rotate(18deg) !important;
            }

        @media(max-width:700px) {
            .monitor-neck {
                width: 9px !important;
                height: 44px !important;
            }

                .monitor-neck::before {
                    top: -4px !important;
                    width: 16px !important;
                    height: 8px !important;
                }

            .monitor-base {
                width: 224px !important;
                height: 42px !important;
                margin: -4px auto 0 !important;
            }

                .monitor-base::before,
                .monitor-base::after {
                    top: 7px !important;
                    width: 112px !important;
                    height: 6px !important;
                }
        }

/* --- בלוק 8 --- */
/* Fix monitor stand connection: the straight stand now overlaps and attaches to the bottom of the screen */
        .monitor-shell {
            margin-bottom: 0 !important;
        }

        .monitor-neck {
            position: relative !important;
            width: 13px !important;
            height: 68px !important;
            margin: -8px auto 0 !important;
            background: linear-gradient(90deg, #1b1f24 0%, #3a4048 48%, #11151a 100%) !important;
            border-radius: 0 !important;
            z-index: 20 !important;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 8px 14px rgba(0,0,0,0.16) !important;
        }

            .monitor-neck::before {
                content: '' !important;
                position: absolute !important;
                top: -10px !important;
                left: 50% !important;
                width: 28px !important;
                height: 16px !important;
                transform: translateX(-50%) !important;
                background: linear-gradient(180deg, #242A31 0%, #15191F 100%) !important;
                border-radius: 0 !important;
                box-shadow: inset 0 1px 0 rgba(255,255,255,0.08) !important;
                z-index: 21 !important;
            }

            .monitor-neck::after {
                display: none !important;
                content: none !important;
            }

        .monitor-base {
            margin: -9px auto 0 !important;
            z-index: 10 !important;
        }

        @media(max-width:700px) {
            .monitor-neck {
                width: 9px !important;
                height: 46px !important;
                margin: -6px auto 0 !important;
            }

                .monitor-neck::before {
                    top: -8px !important;
                    width: 21px !important;
                    height: 12px !important;
                }

            .monitor-base {
                margin: -7px auto 0 !important;
            }
        }

/* --- בלוק 9 --- */
/* Final stand tuning: slight rounding on V feet and zero visual gap at the top connection */
        .monitor-neck {
            margin: -14px auto 0 !important;
            height: 72px !important;
            z-index: 30 !important;
        }

            .monitor-neck::before {
                top: -16px !important;
                width: 30px !important;
                height: 24px !important;
                background: linear-gradient(180deg, #242A31 0%, #15191F 100%) !important;
                border-radius: 0 0 3px 3px !important;
                z-index: 31 !important;
            }

        .monitor-base {
            margin: -17px auto 0 !important;
            height: 62px !important;
            z-index: 25 !important;
        }

            .monitor-base::before,
            .monitor-base::after {
                top: 4px !important;
                height: 8px !important;
                border-radius: 5px !important;
            }

            .monitor-base::before {
                margin-right: -4px !important;
            }

            .monitor-base::after {
                margin-left: -4px !important;
            }

        @media(max-width:700px) {
            .monitor-neck {
                margin: -10px auto 0 !important;
                height: 50px !important;
            }

                .monitor-neck::before {
                    top: -12px !important;
                    width: 22px !important;
                    height: 17px !important;
                    border-radius: 0 0 2px 2px !important;
                }

            .monitor-base {
                margin: -12px auto 0 !important;
                height: 40px !important;
            }

                .monitor-base::before,
                .monitor-base::after {
                    top: 3px !important;
                    height: 6px !important;
                    border-radius: 4px !important;
                }
        }

/* --- בלוק 10 --- */
/* Final stand correction: lower stand under screen and add WEBTIV label */
        .monitor-shell::after {
            content: 'WEBTIV' !important;
            position: absolute !important;
            left: 50% !important;
            right: auto !important;
            bottom: 1px !important;
            top: auto !important;
            width: auto !important;
            height: 14px !important;
            transform: translateX(-50%) !important;
            animation: none !important;
            background: transparent !important;
            color: rgba(255,255,255,0.78) !important;
            font-family: Arial, sans-serif !important;
            font-size: 8px !important;
            font-weight: 700 !important;
            letter-spacing: 0.08em !important;
            line-height: 14px !important;
            z-index: 9 !important;
            pointer-events: none !important;
        }

        .monitor-neck {
            margin: 2px auto 0 !important;
            top: auto !important;
            transform: none !important;
            z-index: 6 !important;
        }

            .monitor-neck::before {
                content: none !important;
                display: none !important;
            }

            .monitor-neck::after {
                bottom: -1px !important;
            }

        .monitor-base {
            margin: -2px auto 0 !important;
            z-index: 3 !important;
        }

        @media(max-width:700px) {
            .monitor-shell::after {
                height: 11px !important;
                font-size: 6px !important;
                line-height: 11px !important;
            }

            .monitor-neck {
                margin: 1px auto 0 !important;
            }

            .monitor-base {
                margin: -1px auto 0 !important;
            }
        }

/* --- בלוק 11 --- */
/* Zero-gap stand: no spaces between the monitor body, neck and V base */
        .monitor-shell {
            margin-bottom: 0 !important;
        }

        .monitor-neck {
            margin: 0 auto 0 !important;
            top: 0 !important;
            transform: translateY(0) !important;
            height: 58px !important;
            z-index: 8 !important;
        }

            .monitor-neck::before {
                top: 0 !important;
                height: 0 !important;
                display: none !important;
            }

            .monitor-neck::after {
                bottom: 0 !important;
                display: none !important;
            }

        .monitor-base {
            margin: 0 auto 0 !important;
            top: 0 !important;
            height: 58px !important;
            z-index: 7 !important;
            background: transparent !important;
        }

            .monitor-base::before,
            .monitor-base::after {
                top: 0 !important;
                margin-top: 0 !important;
                height: 8px !important;
                border-radius: 4px !important;
            }

            .monitor-base::before {
                transform: rotate(-16deg) !important;
            }

            .monitor-base::after {
                transform: rotate(16deg) !important;
            }

        @media(max-width:700px) {
            .monitor-neck {
                margin: 0 auto 0 !important;
                height: 40px !important;
            }

            .monitor-base {
                margin: 0 auto 0 !important;
                height: 40px !important;
            }

                .monitor-base::before,
                .monitor-base::after {
                    top: 0 !important;
                    height: 6px !important;
                    border-radius: 3px !important;
                }
        }

/* --- בלוק 12 --- */
/* Premium UX polish: softer device animation + cleaner mobile typography */
        .monitor-wrap {
            animation: premiumMonitorFloat 9s ease-in-out infinite !important;
            will-change: transform;
        }

        .phone-frame {
            animation: premiumPhoneFloat 8.5s ease-in-out infinite !important;
            will-change: transform;
        }

            .monitor-shell::before,
            .monitor-screen::after,
            .phone-frame::after {
                opacity: 0.36 !important;
            }

        @keyframes premiumMonitorFloat {
            0%, 100% {
                transform: translateY(0) rotateX(0deg) rotateY(0deg);
            }

            35% {
                transform: translateY(-4px) rotateX(0.35deg) rotateY(-0.45deg);
            }

            65% {
                transform: translateY(-6px) rotateX(0deg) rotateY(0.45deg);
            }
        }

        @keyframes premiumPhoneFloat {
            0%, 100% {
                transform: translateY(0) rotate(-0.45deg);
            }

            40% {
                transform: translateY(-5px) rotate(0.65deg);
            }

            72% {
                transform: translateY(-3px) rotate(-0.55deg);
            }
        }

        @media(max-width:560px) {
            .hero h1 {
                font-size: 2rem !important;
                line-height: 1.22 !important;
                margin-bottom: 16px !important;
            }

            .hero p {
                font-size: 1rem !important;
                line-height: 1.62 !important;
                margin-bottom: 24px !important;
            }

            .eyebrow {
                font-size: 0.78rem !important;
                margin-bottom: 16px !important;
            }
        }

        @media(max-width:380px) {
            .hero h1 {
                font-size: 1.88rem !important;
            }

            .hero p {
                font-size: 0.96rem !important;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .monitor-wrap,
            .phone-frame,
            .monitor-shell::after,
            .phone-frame::after {
                animation: none !important;
            }
        }

        /*בין לקוחותנו*/
/* --- שורת לוגואים (Logo Strip) --- */
.clients-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 15px;
    padding: 8px 0;
    overflow: hidden;
    box-sizing: border-box;
    direction: ltr;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.clients-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    width: max-content;
    flex-wrap: nowrap;
    will-change: transform;
}

.clients-logos.is-ready {
    animation: clients-carousel-ltr 30s linear infinite;
}

.clients-carousel:hover .clients-logos,
.clients-carousel:focus-within .clients-logos {
    animation-play-state: paused;
}

@keyframes clients-carousel-ltr {
    from {
        transform: translateX(calc(-1 * var(--clients-loop-distance)));
    }

    to {
        transform: translateX(0);
    }
}

    .clients-logos img {
        max-height: 35px;
        max-width: 120px;
        flex: 0 0 auto;
        object-fit: contain;
        filter: none;

        transition: filter 0.3s ease, transform 0.3s ease;
    }

        /* אפקט הבלטה והארה במעבר עכבר */
        .clients-logos img:hover {
            filter: none;
            transform: scale(1.05);
        }

    .clients-logos img.client-logo-ninveh {
        max-height: 48px;
        max-width: 100px;
        filter: none;
    }

    .clients-logos img.client-logo-ninveh:hover {
        filter: none;
    }

    .clients-logos img.client-logo-israhome {
        max-height: 48px;
        max-width: 150px;
    }

    .clients-logos img.client-logo-myplace {
        max-height: 42px;
        max-width: 140px;
    }

    .clients-logos img.client-logo-anglo {
        max-height: 42px;
        max-width: 140px;
    }

    .clients-logos img.client-logo-remax {
        max-height: 42px;
        max-width: 140px;
    }

    .clients-logos img.client-logo-ac {
        max-height: 50px;
        max-width: 78px;
    }

    .clients-logos img.client-logo-sinai {
        max-height: 52px;
        max-width: 95px;
    }

    .clients-logos img.client-logo-armon {
        max-height: 58px;
        max-width: 90px;
    }

    .client-logo-placeholder {
        min-width: 100px;
        min-height: 35px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #16244d;
        font: 700 0.95rem "Rubik", sans-serif;
        text-align: center;
        white-space: nowrap;
        flex: 0 0 auto;
        transition: transform 0.3s ease;
    }

    .client-logo-placeholder:hover {
        transform: scale(1.05);
    }

/* רספונסיביות למובייל */
@media(max-width:700px) {
    .clients-logos {
        gap: 20px;
    }

        .clients-logos img {
            max-height: 28px;
            max-width: 90px;
        }

        .clients-logos img.client-logo-ninveh {
            max-height: 40px;
            max-width: 82px;
        }

        .clients-logos img.client-logo-israhome {
            max-height: 38px;
            max-width: 120px;
        }

        .clients-logos img.client-logo-myplace {
            max-height: 34px;
            max-width: 110px;
        }

        .clients-logos img.client-logo-anglo {
            max-height: 34px;
            max-width: 110px;
        }

        .clients-logos img.client-logo-remax {
            max-height: 34px;
            max-width: 110px;
        }

        .clients-logos img.client-logo-ac {
            max-height: 40px;
            max-width: 64px;
        }

        .clients-logos img.client-logo-sinai {
            max-height: 42px;
            max-width: 76px;
        }

        .clients-logos img.client-logo-armon {
            max-height: 46px;
            max-width: 72px;
        }

        .client-logo-placeholder {
            min-width: 90px;
            min-height: 28px;
            font-size: 0.82rem;
        }
}

@media (prefers-reduced-motion: reduce) {
    .clients-logos.is-ready {
        animation: none;
        transform: none;
    }
}
/*בין לקוחותנו סוף*/