        :root {
            --red: #ef4444;
            --red-dark: #b91c1c;
            --orange: #f97316;
            --orange-light: #fb923c;
            --blue: #38bdf8;
            --blue-light: #bae6fd;
            --gray-light: #1e293b;
            --gray-mid: #334155;
            --text: #f8fafc;
            --white: #0f172a;
            --s-sm: 0 4px 15px rgba(0, 0, 0, .4);
            --s-md: 0 10px 30px rgba(0, 0, 0, .5);
            --s-lg: 0 25px 50px rgba(0, 0, 0, .6);
            --r: 16px;
            --tr: .3s cubic-bezier(.4, 0, .2, 1);
            --header-h: 50px; /* גובה הבאנר הקבוע — לשימוש ב-scroll-margin-top */
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth;
            font-size: 92%
        }

        body {
            font-family: 'Assistant', sans-serif;
            color: var(--text);
            background: var(--white);
            line-height: 1.7;
            overflow-x: hidden
        }

        #gs-wrap {
            transition: filter .3s
        }

        img {
            display: block;
            max-width: 100%
        }

        a {
            color: inherit
        }

        /* GLOBAL FOCUS-VISIBLE */
        :focus-visible {
            outline: 3px solid var(--orange);
            outline-offset: 3px;
            border-radius: 3px;
        }

        /* SKIP LINK */
        .skip-link {
            position: absolute;
            top: -50px;
            right: 0;
            background: var(--orange);
            color: white;
            padding: 10px 20px;
            border-radius: 0 0 8px 8px;
            z-index: 10001;
            font-weight: 700;
            transition: top .3s;
            text-decoration: none
        }

        .skip-link:focus {
            top: 0
        }

        /* SCROLL OFFSET — מפצה על הבאנר הקבוע בכל עוגן בדף */
        section[id] {
            scroll-margin-top: var(--header-h);
        }

        /* HEADER */
        header {
            background: var(--red);
            color: white;
            padding: .9rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 12px rgba(179, 0, 0, .35);
            opacity: 0;
            transform: translateY(-6px);
            transition: opacity .5s ease, transform .45s cubic-bezier(.16, 1, .3, 1),
                background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
        }

        header.header-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 14px
        }

        .logo-img {
            height: 60px;
            width: auto;
            object-fit: contain
        }

        .logo-text {
            font-weight: 700;
            font-size: 1.15rem;
            line-height: 1.2
        }

        .logo-text span {
            display: block;
            font-size: .72rem;
            font-weight: 300;
            opacity: .88;
            letter-spacing: .03em
        }

        .header-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            border: 2px solid rgba(255, 255, 255, .5);
            padding: 7px 18px;
            border-radius: 50px;
            transition: var(--tr)
        }

        .header-phone:hover {
            background: rgba(255, 255, 255, .15);
            border-color: white
        }

        /* HERO */
        .hero {
            position: relative;
            height: 65vh;
            min-height: 420px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            overflow: hidden;
            color: white
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: url("HERO.png") no-repeat center/cover;
            z-index: 0;
            transform: scale(1.04);
            transition: transform 8s ease-out
        }

        .hero:hover .hero-bg {
            transform: scale(1)
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg, rgba(26, 58, 95, .75), rgba(179, 0, 0, .65));
            z-index: 1
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 750px
        }

        .hero-eyebrow {
            display: inline-block;
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: .18em;
            background: var(--red);
            box-shadow: 0 0 22px rgba(239, 68, 68, .35);
            padding: 5px 16px;
            border-radius: 50px;
            margin-bottom: 20px
        }

        .hero h1 {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 16px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, .3)
        }

        .hero p {
            font-size: 1.15rem;
            opacity: .92;
            margin-bottom: 32px;
            font-weight: 300
        }

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: var(--tr);
            font-family: 'Assistant', sans-serif
        }

        .btn-orange {
            background: var(--orange);
            color: white;
            box-shadow: 0 4px 20px rgba(232, 137, 12, .45)
        }

        .btn-orange:hover {
            background: var(--orange-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(232, 137, 12, .55)
        }

        .btn-red {
            background: var(--red);
            color: white
        }

        .btn-red:hover {
            background: var(--red-dark);
            transform: translateY(-2px)
        }

        /* SECTIONS */
        .section {
            padding: 3rem 10%
        }

        .section-title {
            text-align: center;
            font-size: clamp(1.7rem, 3vw, 2.4rem);
            font-weight: 900;
            color: var(--red);
            margin-bottom: 2rem;
            position: relative
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -14px;
            left: 50%;
            transform: translateX(-50%);
            width: 52px;
            height: 4px;
            background: var(--orange);
            border-radius: 2px
        }

        .section-subtitle {
            text-align: center;
            color: #94a3b8;
            margin: 1.5rem auto 3rem;
            max-width: 600px;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* ABOUT */
        /* ABOUT */
        .about-section {
            padding: 4rem 10%;
            position: relative;
            overflow: hidden;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
        }

        .about-text {
            padding: 50px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.03) !important;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
        }

        .about-text h2 {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--blue), var(--orange));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 12px;
        }

        .about-text h3 {
            color: var(--orange);
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 25px;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .about-image {
            position: relative;
            z-index: 1;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--orange);
            border-radius: 40px 10px 40px 10px;
            z-index: -1;
            opacity: 0.3;
        }

        .about-image img {
            width: 100%;
            border-radius: 40px 10px 40px 10px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
            object-fit: cover;
            height: 450px;
            animation: floatImage 6s ease-in-out infinite;
            will-change: transform;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            transform: translateZ(0);
        }

        @keyframes floatImage {

            0%,
            100% {
                transform: translateY(0) translateZ(0);
            }

            50% {
                transform: translateY(-12px) translateZ(0);
            }
        }

        @media (hover: none) {
            .about-image img {
                animation-duration: 8s;
            }
        }

        .about-badge {
            position: absolute;
            bottom: 28px;
            left: -24px;
            background: rgba(15, 23, 42, 0.72);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(249, 115, 22, 0.4);
            border-radius: 20px;
            padding: 22px 20px 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            min-width: 116px;
            text-align: center;
            box-shadow:
                0 12px 40px rgba(0, 0, 0, 0.55),
                0 0 0 1px rgba(255, 255, 255, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.09),
                0 0 50px rgba(249, 115, 22, 0.12);
            z-index: 10;
        }

        .badge-medal {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--orange-light), var(--orange), var(--red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            color: #fff;
            box-shadow: 0 6px 24px rgba(249, 115, 22, 0.55);
            position: relative;
            margin-bottom: 4px;
        }

        .badge-medal::after {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            border: 2px solid rgba(249, 115, 22, 0.45);
            animation: badgeRingPulse 2.8s ease-in-out infinite;
        }

        @keyframes badgeRingPulse {

            0%,
            100% {
                opacity: 0.35;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.1);
            }
        }

        .badge-number {
            display: block;
            font-size: 2.4rem;
            font-weight: 900;
            line-height: 1;
            background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 50%, var(--red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .badge-number span {
            font-size: 1.6rem;
        }

        .badge-label {
            display: block;
            font-size: 0.68rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.72);
            letter-spacing: 0.06em;
            text-transform: uppercase;
            line-height: 1.45;
        }

        @media (prefers-reduced-motion: reduce) {
            .badge-medal::after {
                animation: none;
                opacity: 0.5;
            }
        }

        /* כותרת הסקשן */
        .team-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--blue);
            margin-bottom: 50px;
            position: relative;
        }

        .team-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--orange);
            margin: 15px auto 0;
        }

        /* הגריד של הצוות */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ═══════════════════════════════════════
           CLIENTS MARQUEE BAND
           ═══════════════════════════════════════ */
        .clients-band {
            padding: 44px 0;
            background: rgba(255, 255, 255, .025);
            border-top: 1px solid rgba(255, 255, 255, .07);
            border-bottom: 1px solid rgba(255, 255, 255, .07);
            overflow: hidden;
            text-align: center;
        }

        .clients-band-label {
            font-family: 'Assistant', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .35);
            margin-bottom: 28px;
        }

        .clients-track-wrap {
            position: relative;
            overflow: hidden;
            direction: ltr;
            /* עיגון לשמאל בעמוד RTL — קריטי לנכונות הלופ */
        }

        /* edge fade — left */
        .clients-track-wrap::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 100px;
            background: linear-gradient(to right, #0f172a, transparent);
            z-index: 2;
            pointer-events: none;
        }

        /* edge fade — right */
        .clients-track-wrap::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 100px;
            background: linear-gradient(to left, #0f172a, transparent);
            z-index: 2;
            pointer-events: none;
        }

        .clients-track {
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            width: max-content;
            list-style: none;
            margin: 0;
            padding: 8px 0;
            will-change: transform;
        }

        .client-logo-item {
            flex-shrink: 0;
            margin-right: 1.5rem;
            /* gap כ-margin: 14 פריטים × slot = track width, −50% = בדיוק 7 פריטים */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 40px;
            min-width: 220px;
            height: 120px;
            background: rgba(255, 255, 255, .18);
            border: 1px solid rgba(255, 255, 255, .28);
            border-radius: 12px;
            backdrop-filter: blur(8px);
            transition: background .25s, border-color .25s, transform .2s;
        }

        .client-logo-item:hover {
            background: rgba(255, 255, 255, .13);
            border-color: rgba(249, 115, 22, .4);
            transform: scale(1.04);
        }

        .client-logo-item img {
            display: block;
            max-height: 84px;
            max-width: 260px;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        .client-logo-item:hover {
            background: rgba(255, 255, 255, .13);
            border-color: rgba(249, 115, 22, .4);
            transform: scale(1.04);
        }

        @media (prefers-reduced-motion: reduce) {
            .clients-track {
                animation: none !important;
                flex-wrap: wrap;
                justify-content: center;
                width: auto;
            }

            .client-logo-item {
                margin-right: 0;
                margin: 0.5rem;
            }

            .clients-track-wrap::before,
            .clients-track-wrap::after {
                display: none;
            }
        }

        /* הכרטיס המעוצב */
        .team-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            padding: 45px 25px;
            border-radius: 2px;
            /* פינות ישרות לאלגנטיות הנדסית */
            text-align: center;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: var(--orange-light);
        }

        /* התגית מעל השם */
        .role-tag {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--orange);
            background: rgba(232, 137, 12, 0.1);
            padding: 4px 12px;
            border-radius: 50px;
            margin-bottom: 25px;
        }

        /* האייקון הטכני */
        .role-icon {
            font-size: 42px;
            margin-bottom: 20px;
            filter: grayscale(100%);
            transition: 0.3s;
        }

        .team-card:hover .role-icon {
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        .team-card h3 {
            font-size: 1.4rem;
            color: var(--blue);
            margin-bottom: 10px;
            font-weight: 800;
        }

        .team-card p {
            font-size: 1rem;
            color: #555;
            line-height: 1.5;
            font-weight: 400;
        }

        .team-card strong {
            color: var(--text);
            display: block;
            margin-top: 5px;
            font-size: 0.9rem;
        }

        /* testimonial */
        /* מיכל ההמלצות - גריד אחיד */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* הכרטיס המעוצב - תואם לכרטיס הצוות */
        .testimonial-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            padding: 40px 25px;
            border-radius: 2px;
            /* פינות חדות לאלגנטיות הנדסית */
            text-align: right;
            /* יישור לימין עבור העברית */
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: var(--orange-light);
        }

        .testimonial-card:hover::before {
            height: 100%;
        }

        /* תצוגה מקדימה של המסמך */
        .doc-preview-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .doc-thumb {
            width: 65px;
            height: 90px;
            border: 1px solid #eee;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: transform 0.3s;
            background: #f9f9f9;
        }

        .doc-thumb:hover {
            transform: scale(1.15) rotate(3deg);
        }

        .doc-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* טקסט ההמלצה */
        .testimonial-text {
            font-size: 1rem;
            color: #444;
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .testimonial-card h3 {
            font-size: 1.2rem;
            color: var(--blue);
            margin-bottom: 5px;
            font-weight: 800;
        }

        .testimonial-card span {
            color: var(--orange);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* SERVICES */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px 28px;
        }

        .service-card {
            background: white;
            border: 1px solid var(--gray-mid);
            border-radius: var(--r);
            padding: 38px 28px;
            text-align: center;
            transition: var(--tr);
            box-shadow: var(--s-sm);
            position: relative;
            overflow: hidden
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--red), var(--orange));
            transform: scaleX(0);
            transform-origin: right;
            transition: transform .4s ease
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 16px 40px rgba(26, 58, 95, .12);
            border-color: transparent
        }

        .service-card:hover::before {
            transform: scaleX(1);
            transform-origin: left
        }

        .svc-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .svc-icon i {
            font-size: 32px;
            background: linear-gradient(135deg, var(--orange), var(--red));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.4));
            transition: filter 0.4s ease;
        }

        .service-card:hover .svc-icon {
            transform: scale(1.1) rotate(5deg);
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--orange);
            box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
        }

        .service-card:hover .svc-icon i {
            filter: drop-shadow(0 0 15px var(--orange));
        }

        .service-card h3 {
            color: var(--blue);
            font-size: 1.3rem;
            margin-bottom: 12px
        }

        .service-card p {
            color: #667;
            font-size: .93rem
        }

        /* MAPS SHOWCASE */
        .maps-section {
            padding: 3rem 10%;
            background: var(--gray-light)
        }

        .maps-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px
        }

        .map-tab {
            padding: 10px 22px;
            border-radius: 50px;
            border: 2px solid var(--gray-mid);
            background: transparent;
            color: #94a3b8;
            font-family: 'Assistant', sans-serif;
            font-size: .85rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--tr)
        }

        .map-tab:hover {
            border-color: var(--orange);
            color: var(--orange)
        }

        .map-tab.active {
            background: var(--orange);
            border-color: var(--orange);
            color: white;
            box-shadow: 0 4px 16px rgba(249, 115, 22, .35)
        }

        .maps-display {
            background: white;
            border-radius: 24px;
            box-shadow: var(--s-lg);
            overflow: hidden;
            border: 1px solid var(--gray-mid)
        }

        .map-panel {
            display: none;
            grid-template-columns: 1fr 1fr
        }

        .map-panel.active {
            display: grid
        }

        .map-preview {
            position: relative;
            background: #e8edf2;
            overflow: hidden;
            min-height: 420px
        }

        .map-svg {
            width: 100%;
            height: 100%;
            display: block;
            min-height: 420px
        }

        .map-badge {
            position: absolute;
            top: 18px;
            right: 18px;
            background: var(--red);
            color: white;
            font-size: .75rem;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 50px;
            letter-spacing: .05em;
            z-index: 2
        }

        .map-info {
            padding: 44px 48px;
            display: flex;
            flex-direction: column;
            justify-content: center
        }

        .map-tag {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: .8rem;
            font-weight: 800;
            letter-spacing: .05em;
            color: var(--orange);
            margin-bottom: 16px;
            white-space: nowrap;
        }

        .map-tag::before {
            content: '';
            display: block;
            width: 35px;
            height: 2px;
            background: var(--orange);
            flex-shrink: 0;
        }

        .map-info h3 {
            font-size: 1.7rem;
            font-weight: 900;
            color: var(--blue);
            margin-bottom: 14px;
            line-height: 1.2
        }

        .map-info p {
            color: #556;
            font-size: .97rem;
            margin-bottom: 16px;
            line-height: 1.7
        }

        .map-meta {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 28px
        }

        .map-meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: .9rem
        }

        .map-meta-icon {
            width: 30px;
            height: 30px;
            background: var(--gray-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .85rem;
            flex-shrink: 0
        }

        .map-image {
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* CAROUSEL */
        .gallery-section {
            padding: 3.5rem 5%;
            background: var(--blue)
        }

        .gallery-section .section-title {
            color: white
        }

        .gallery-section .section-title::after {
            background: var(--orange)
        }

        .carousel-wrap {
            position: relative;
            max-width: 1000px;
            margin: auto;
            border-radius: var(--r);
            overflow: hidden;
            box-shadow: var(--s-lg)
        }

        .carousel-track {
            display: flex;
            transition: transform .55s cubic-bezier(.77, 0, .175, 1);
            will-change: transform
        }

        .carousel-slide {
            min-width: 100%;
            position: relative;
            flex-shrink: 0
        }

        .carousel-slide img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            display: block
        }

        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, .7));
            color: white;
            padding: 30px 24px 18px;
            font-size: .95rem;
            text-align: center
        }

        .car-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, .18);
            backdrop-filter: blur(6px);
            color: white;
            border: 2px solid rgba(255, 255, 255, .4);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 10;
            transition: var(--tr);
            display: flex;
            align-items: center;
            justify-content: center
        }

        .car-btn:hover {
            background: rgba(255, 255, 255, .35)
        }

        .car-btn.prev {
            left: 14px
        }

        .car-btn.next {
            right: 14px
        }

        .car-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            padding: 14px;
            background: rgba(255, 255, 255, .1)
        }

        .dot {
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, .4);
            border-radius: 50%;
            cursor: pointer;
            transition: var(--tr);
            border: none;
            padding: 0
        }

        .dot.active,
        .dot:hover {
            background: white;
            transform: scale(1.3)
        }

        /* FAQ */
        .faq-wrap {
            max-width: 780px;
            margin: 0 auto
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 14px;
            box-shadow: var(--s-sm);
            border: 1px solid var(--gray-mid);
            overflow: hidden
        }

        .faq-q {
            width: 100%;
            padding: 20px 22px;
            background: none;
            border: none;
            text-align: right;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--blue);
            font-family: 'Assistant', sans-serif;
            gap: 12px;
            transition: background .2s
        }

        .faq-q:hover {
            background: var(--gray-light)
        }

        .faq-q:focus-visible {
            outline: 3px solid var(--orange);
            outline-offset: -3px
        }

        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            background: var(--gray-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            line-height: 1;
            color: var(--orange);
            font-weight: 700;
            transition: transform .3s, background .3s, color .3s;
            user-select: none
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: var(--red);
            color: white
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s ease, padding .3s ease;
            padding: 0 22px;
            color: #cbd5e1;
            font-size: .97rem;
            border-top: 0px solid var(--gray-mid)
        }

        .faq-item.open .faq-a {
            max-height: 500px;
            padding: 18px 22px 22px;
            border-top-width: 1px
        }

        /* CONTACT */
        .contact-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            background: var(--gray-light);
            padding: 44px;
            border-radius: 24px;
            box-shadow: var(--s-md)
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 16px
        }

        .contact-form h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--red)
        }

        .contact-form h4 {
            font-size: .95rem;
            font-weight: 400;
            color: #556
        }

        .form-group {
            display: flex;
            flex-direction: column;
            text-align: right
        }

        .form-group label {
            font-weight: 700;
            font-size: .88rem;
            margin-bottom: 6px;
            color: var(--blue)
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 14px;
            border: 1.5px solid var(--gray-mid);
            border-radius: 10px;
            font-family: 'Assistant', sans-serif;
            font-size: .97rem;
            background: white;
            color: var(--text);
            transition: border-color .2s, box-shadow .2s
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--orange);
            box-shadow: 0 0 0 3px rgba(232, 137, 12, .15)
        }

        .form-status {
            font-size: .9rem;
            padding: 10px 14px;
            border-radius: 8px;
            display: none
        }

        .form-status.ok {
            background: #e8f5e9;
            color: #2e7d32;
            display: block
        }

        .form-status.err {
            background: #fdecea;
            color: #c62828;
            display: block
        }

        .contact-info h3 {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--red);
            margin-bottom: 16px
        }

        .c-detail {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
            padding: 16px;
            background: white;
            border: 1px solid transparent;
            border-radius: 12px;
            box-shadow: var(--s-sm);
            transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1), border-color 0.3s cubic-bezier(.4,0,.2,1);
        }

        .c-detail:hover {
            transform: translateY(-8px);
            box-shadow: var(--s-md);
            border-color: var(--orange-light);
        }

        .c-icon {
            font-size: 1.4rem;
            flex-shrink: 0
        }

        .c-text {
            text-align: right
        }

        .c-text strong {
            display: block;
            font-size: .82rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 3px
        }

        .c-text a {
            font-weight: 600;
            text-decoration: none;
            color: #fff
        }

        .c-text a:hover {
            color: var(--orange);
            text-decoration: underline
        }

        /* SOCIAL FLOAT */
        .social-float {
            position: fixed;
            bottom: 25px;
            left: 25px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 2000;
            transition: transform .5s cubic-bezier(.4, 0, .2, 1)
        }

        .social-icon {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, color 0.4s ease;
            text-decoration: none;
        }

        .social-icon i {
            font-size: 1.4rem;
            transition: transform 0.4s ease;
        }

        .social-icon:hover {
            background: var(--orange);
            color: white;
            transform: scale(1.1) translateY(-5px) rotate(8deg);
            box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
            border-color: var(--orange);
        }

        .social-icon:hover i {
            transform: scale(1.1);
        }

        /* ACCESSIBILITY BUTTON */
        .acc-btn {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 55px;
            height: 55px;
            background: rgba(33, 150, 243, 0.8);
            color: white;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            z-index: 9000;
            font-size: 1.4rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            transition: background 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1);
        }

        .acc-btn:hover {
            background: #1976D2;
            transform: scale(1.1) rotate(10deg);
        }

        /* BACK TO TOP BUTTON */
        .back-to-top {
            position: fixed;
            bottom: 95px;
            right: 25px;
            width: 55px;
            height: 55px;
            background: rgba(239, 68, 68, 0.12);
            color: var(--red);
            border-radius: 50%;
            border: 1px solid rgba(239, 68, 68, 0.35);
            cursor: pointer;
            z-index: 9000;
            font-size: 1.4rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 16px rgba(239, 68, 68, 0.15);
            backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.8);
            transition: opacity 0.5s cubic-bezier(.4,0,.2,1), transform 0.5s cubic-bezier(.4,0,.2,1), visibility 0.5s cubic-bezier(.4,0,.2,1), background 0.5s cubic-bezier(.4,0,.2,1), box-shadow 0.5s cubic-bezier(.4,0,.2,1), border-color 0.5s cubic-bezier(.4,0,.2,1), color 0.5s cubic-bezier(.4,0,.2,1);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .back-to-top:hover {
            background: var(--red);
            color: white;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 30px rgba(239, 68, 68, 0.45);
            border-color: var(--red);
        }

        /* סליידינג טהור לצדדים — ללא fade */
        .social-float.floats-hidden {
            transform: translateX(calc(-100% - 25px));
            pointer-events: none;
        }

        .acc-btn.floats-hidden {
            transform: translateX(calc(100% + 25px));
            pointer-events: none;
        }

        /* OVERLAY + MODALS */
        #overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.5);
            backdrop-filter: blur(15px);
            z-index: 9998;
        }

        .modal {
            display: none;
            position: fixed;
            top: 10vh;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(30, 41, 59, 0.85);
            padding: 40px;
            z-index: 10000;
            width: 90%;
            max-width: 500px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(25px);
            text-align: right;
            direction: rtl;
            max-height: 80vh;
            overflow-y: auto;
            color: #f1f5f9;
        }

        .modal h3 {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--orange), var(--red));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 25px;
            text-align: center;
        }

        .modal-close {
            display: block;
            width: 100%;
            padding: 12px 25px;
            cursor: pointer;
            background: linear-gradient(135deg, var(--orange), var(--red));
            color: white;
            border: none;
            border-radius: 12px;
            font-family: 'Assistant', sans-serif;
            font-weight: 900;
            margin-top: 25px;
            font-size: 1.1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
            box-shadow: 0 10px 20px rgba(239, 68, 68, 0.2);
            text-align: center;
        }

        .modal-close:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(239, 68, 68, 0.4);
            filter: brightness(1.1);
        }

        .acc-opt {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #cbd5e1;
            font-weight: 700;
            transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            justify-content: flex-start;
            text-align: right;
            font-family: 'Assistant', sans-serif;
        }

        .acc-opt:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--orange);
            color: white;
            transform: translateX(-5px);
        }

        .acc-opt.on {
            background: rgba(249, 115, 22, 0.1);
            border-color: var(--orange);
            color: var(--orange);
        }

        #cookie-status-area {
            background: var(--gray-light);
            padding: 14px;
            border-radius: 8px;
            margin: 12px 0;
            text-align: center
        }

        #cookie-status-txt {
            font-size: .88rem;
            margin-bottom: 10px
        }

        /* COOKIE BANNER */
        #cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #2c3e50;
            color: white;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 9999;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, .3);
            transform: translateY(100%);
            transition: transform .5s ease;
            gap: 16px
        }

        #cookie-banner.show {
            transform: translateY(0)
        }

        .ck-btns {
            display: flex;
            gap: 10px;
            flex-shrink: 0
        }

        .ck-btn {
            padding: 9px 22px;
            border-radius: 50px;
            cursor: pointer;
            border: none;
            font-weight: 700;
            font-family: 'Assistant', sans-serif;
            transition: var(--tr)
        }

        .ck-yes {
            background: var(--orange);
            color: white
        }

        .ck-yes:hover {
            background: var(--orange-light)
        }

        .ck-no {
            background: #7f8c8d;
            color: white
        }

        .ck-no:hover {
            background: #636e72
        }

        /* FOOTER */
        footer {
            background: #111;
            color: #777;
            text-align: center;
            padding: 20px;
            font-size: .88rem
        }

        footer button {
            background: none;
            border: none;
            color: #777;
            text-decoration: underline;
            cursor: pointer;
            font-size: .88rem;
            font-family: 'Assistant', sans-serif;
            transition: color .2s
        }

        footer button:hover {
            color: #ccc
        }

        /* RESPONSIVE */
        @media(max-width:900px) {
            .section {
                padding: 3.5rem 6%
            }

            .about-container,
            .contact-wrap {
                grid-template-columns: 1fr
            }

            .about-image {
                order: -1
            }

            .about-image img {
                height: 260px
            }

            .about-badge {
                left: 12px;
                bottom: 16px;
                min-width: 100px;
                padding: 16px 14px 12px;
            }

            .badge-medal {
                width: 42px;
                height: 42px;
                font-size: 1.1rem;
            }

            .badge-number {
                font-size: 2rem;
            }

            .carousel-slide img {
                height: 280px
            }

            .hero h1 {
                font-size: 2rem
            }

            #cookie-banner {
                flex-direction: column;
                text-align: center
            }

            .map-panel.active {
                display: block
            }

            .map-preview {
                min-height: 280px
            }

            .map-info {
                padding: 28px 22px
            }

            .map-info h3 {
                font-size: 1.3rem
            }

            .maps-section {
                padding: 3.5rem 6%
            }
        }

        @media(max-width:540px) {
            header {
                padding: .8rem 4%
            }

            .logo-text {
                font-size: .95rem
            }

            .section {
                padding: 3rem 5%
            }

            .contact-wrap {
                padding: 24px 18px
            }
        }

        /* ══════════════════════════════════════════════
           נגישות — WCAG 2.0 AA
           ══════════════════════════════════════════════ */

        /* focus ברור לכל אלמנט אינטראקטיבי */
        :focus-visible {
            outline: 3px solid var(--orange);
            outline-offset: 3px;
        }

        /* ביטול outline מיותר לעכבר (רק מקלדת מקבלת סגנון) */
        :focus:not(:focus-visible) {
            outline: none;
        }

        /* מצב ניגודיות גבוהה */
        body.high-contrast {
            background: #000 !important;
            color: #fff !important;
        }

        body.high-contrast a,
        body.high-contrast button,
        body.high-contrast .btn {
            color: #ff0 !important;
        }

        body.high-contrast header,
        body.high-contrast footer {
            background: #000 !important;
            border-bottom: 2px solid #ff0;
        }

        body.high-contrast .service-card,
        body.high-contrast .faq-item,
        body.high-contrast .c-detail,
        body.high-contrast .team-member,
        body.high-contrast .modal {
            background: #111 !important;
            border: 1px solid #ff0 !important;
            color: #fff !important;
        }

        body.high-contrast .section-title,
        body.high-contrast .about-text h2,
        body.high-contrast .about-text h3 {
            color: #ff0 !important;
        }

        body.high-contrast input,
        body.high-contrast textarea,
        body.high-contrast select {
            background: #000 !important;
            color: #fff !important;
            border-color: #ff0 !important;
        }

        /* הדגשת קישורים */
        body.highlight-links a {
            text-decoration: underline !important;
            text-underline-offset: 3px;
            outline: 1px dotted currentColor;
            outline-offset: 2px;
        }

        /* ביטול אנימציות */
        body.no-animations *,
        body.no-animations *::before,
        body.no-animations *::after {
            animation-duration: 0.001ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.001ms !important;
            scroll-behavior: auto !important;
        }

        /* prefers-reduced-motion אוטומטי */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.001ms !important;
                transition-duration: 0.001ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* כפתור נגישות — מצב פעיל */
        .acc-btn.active {
            background: var(--orange);
        }

        /* אפשרויות בתפריט הנגישות */
        .acc-opt.on {
            background: var(--blue);
            color: white;
            border-color: var(--blue);
        }

        .acc-opt.on::after {
            content: ' ✓';
        }

        /* שורת מצב נגישות בתחתית המודל */
        .acc-status-bar {
            font-size: .78rem;
            color: #778;
            border-top: 1px solid var(--gray-mid);
            padding-top: 10px;
            margin-top: 4px;
            line-height: 1.5;
        }

        /* ── מודלים: הצהרת נגישות ומדיניות פרטיות ── */
        .modal-full {
            max-width: 640px;
        }

        .modal-section {
            margin-bottom: 18px;
        }

        .modal-section h4 {
            font-size: 1.1rem;
            font-weight: 900;
            color: var(--orange);
            margin-bottom: 10px;
            border-right: 4px solid var(--orange);
            padding-right: 12px;
        }

        .modal-section p,
        .modal-section li {
            font-size: 1rem;
            color: #cbd5e1;
            line-height: 1.6;
        }

        .modal-section li {
            font-size: .9rem;
            color: #cbd5e1;
            line-height: 1.65;
            margin-bottom: 4px;
        }

        .modal-section ul {
            padding-right: 18px;
            margin-top: 4px;
        }

        .modal-section ul li {
            list-style: disc;
        }

        /* ── ניהול עוגיות: כרטיסיות ── */
        .ck-category {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 14px;
            padding: 12px 14px;
            border-radius: 10px;
            border: 1.5px solid var(--gray-mid);
            margin-bottom: 10px;
            background: var(--gray-light);
        }

        .ck-category-info {
            flex: 1;
        }

        .ck-category-info strong {
            display: block;
            font-size: .9rem;
            color: var(--blue);
            margin-bottom: 3px;
        }

        .ck-category-info span {
            font-size: .8rem;
            color: #667;
            line-height: 1.5;
        }

        /* Toggle switch */
        .ck-toggle {
            position: relative;
            flex-shrink: 0;
            width: 44px;
            height: 24px;
        }

        .ck-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
            position: absolute;
        }

        .ck-toggle-slider {
            position: absolute;
            inset: 0;
            background: #ccc;
            border-radius: 24px;
            cursor: pointer;
            transition: background .25s;
        }

        .ck-toggle-slider::before {
            content: '';
            position: absolute;
            width: 18px;
            height: 18px;
            right: 3px;
            top: 3px;
            background: white;
            border-radius: 50%;
            transition: transform .25s;
        }

        .ck-toggle input:checked+.ck-toggle-slider {
            background: var(--orange);
        }

        .ck-toggle input:checked+.ck-toggle-slider::before {
            transform: translateX(-20px);
        }

        .ck-toggle input:disabled+.ck-toggle-slider {
            background: var(--blue);
            cursor: not-allowed;
            opacity: .7;
        }

        .ck-toggle input:focus-visible+.ck-toggle-slider {
            outline: 3px solid var(--orange);
            outline-offset: 2px;
        }

        .ck-status-summary {
            font-size: .82rem;
            padding: 10px 14px;
            border-radius: 8px;
            background: var(--gray-light);
            color: #cbd5e1;
            margin: 12px 0 0;
            border: 1px solid var(--gray-mid);
        }

        .ck-status-summary strong {
            color: var(--blue);
        }

        /* באנר עוגיות מעודכן */
        #cookie-banner {
            flex-direction: column;
            align-items: flex-start;
        }

        @media(min-width:600px) {
            #cookie-banner {
                flex-direction: row;
                align-items: center;
            }
        }

        .ck-banner-text {
            font-size: .9rem;
            line-height: 1.5;
        }

        .ck-banner-text a {
            color: var(--orange);
            text-decoration: underline;
            cursor: pointer;
        }

        /* ══════════════════════════════════════════════
           LIQUID GLASS & WOW UPGRADES
           ══════════════════════════════════════════════ */

        /* Premium Backgrounds to support Twilight Glassmorphism */
        body {
            background: #1e293b !important;
            color: #f8fafc !important;
        }

        /* Animated Mesh Gradient Backgrounds */
        .about-section,
        .maps-section,
        section#faq,
        section#team,
        section#services,
        section#testimonials,
        section#contact,
        .gallery-section {
            background:
                radial-gradient(circle at 15% 50%, rgba(56, 189, 248, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 85% 30%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
                #1e293b !important;
            background-size: 200% 200%;
            animation: gradientBreathing 15s ease infinite alternate;
        }

        @keyframes gradientBreathing {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 50% 100%;
            }
        }

        /* TWILIGHT GLASS PANELS (Cards & Wrappers) */
        .service-card,
        .team-card,
        .testimonial-card,
        .faq-item,
        .contact-wrap,
        .c-detail,
        .map-preview,
        .maps-display,
        .about-text {
            background: rgba(255, 255, 255, 0.06) !important;
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.12) !important;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
            color: #f8fafc !important;
        }

        /* Varied Transparency for internal elements */
        .faq-icon,
        .role-icon,
        .svc-icon,
        .map-meta-icon {
            background: rgba(255, 255, 255, 0.1) !important;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            color: var(--orange) !important;
        }

        /* Contact icons — gradient circle, no light box */
        .c-icon {
            width: 46px !important;
            height: 46px !important;
            min-width: 46px;
            border-radius: 50% !important;
            background: linear-gradient(135deg, var(--orange-light), var(--orange), var(--red)) !important;
            border: none !important;
            box-shadow: 0 4px 18px rgba(249, 115, 22, 0.38) !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            color: #fff !important;
            flex-shrink: 0;
        }

        .c-icon i {
            color: #fff !important;
            -webkit-text-fill-color: #fff !important;
        }

        /* Inputs Twilight Glass Effect */
        .form-group input,
        .form-group textarea,
        .form-group select {
            background: rgba(15, 23, 42, 0.5) !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15) !important;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3) !important;
            color: #f8fafc !important;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            background: rgba(30, 41, 59, 0.8) !important;
            border-color: var(--orange) !important;
            box-shadow: 0 0 15px rgba(249, 115, 22, 0.2) !important;
        }

        /* ── SITE NAV ── */
        .site-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
            justify-content: center;
        }

        .nav-link {
            position: relative;
            padding: 6px 11px;
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-decoration: none;
            white-space: nowrap;
            border-radius: 4px;
            transition: color 0.2s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 1px;
            right: 11px;
            left: 11px;
            height: 2px;
            background: #fff;
            border-radius: 1px;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.2s ease;
            opacity: 0;
        }

        .nav-link:hover {
            color: #fff;
        }

        .nav-link:hover::after {
            transform: scaleX(0.7);
            opacity: 0.5;
        }

        .nav-link.active {
            color: #fff;
        }

        .nav-link.active::after {
            transform: scaleX(1);
            opacity: 1;
        }

        @media (max-width: 900px) {
            .site-nav {
                display: none;
            }
        }

        /* Header Extreme Glassmorphism on Scroll */
        header.scrolled {
            background: rgba(15, 23, 42, 0.75) !important;
            backdrop-filter: blur(30px) saturate(200%);
            -webkit-backdrop-filter: blur(30px) saturate(200%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            padding: 0.6rem 5%;
            transition: padding 0.4s ease, background 0.4s ease;
        }

        /* Fix texts in twilight mode */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .team-card h3,
        .service-card h3,
        .testimonial-card h3,
        .faq-q,
        .contact-form h3 {
            color: #f8fafc !important;
        }

        p,
        .testimonial-text,
        .service-card p,
        .about-text p,
        .faq-a,
        .c-text strong {
            color: #cbd5e1 !important;
        }

        /* Smooth Scroll Reveal */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal.delay-1 {
            transition-delay: 0.1s;
        }

        .reveal.delay-2 {
            transition-delay: 0.2s;
        }

        .reveal.delay-3 {
            transition-delay: 0.3s;
        }

        /* Side Reveals */
        .reveal-left {
            opacity: 0;
            transform: translateX(-150px);
            transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(150px);
            transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .reveal-left.active,
        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* Variation Classes for WOW effect */
        .speed-1 {
            transition-duration: 0.8s !important;
        }

        .speed-2 {
            transition-duration: 1.4s !important;
        }

        .speed-3 {
            transition-duration: 1.8s !important;
        }

        .delay-1 {
            transition-delay: 0s !important;
        }

        .delay-2 {
            transition-delay: 0.15s !important;
        }

        .delay-3 {
            transition-delay: 0.3s !important;
        }

        .delay-4 {
            transition-delay: 0.45s !important;
        }

        /* Enhanced Buttons */
        .btn-orange {
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-orange::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s ease;
            z-index: -1;
        }

        .btn-orange:hover::before {
            left: 100%;
        }

        /* Sleek Cards Elevation */
        .service-card,
        .team-card,
        .testimonial-card {
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
        }

        .service-card:hover,
        .team-card:hover,
        .testimonial-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(249, 115, 22, 0.1) !important;
            background: rgba(255, 255, 255, 0.12) !important;
            border-color: rgba(255, 255, 255, 0.3) !important;
            backdrop-filter: blur(25px) !important;
        }

        /* Subtle glow for section titles */
        .section-title {
            position: relative;
        }

        .section-title::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(232, 137, 12, 0.15) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .section-title:hover::before {
            opacity: 1;
        }

        /* ═══════════════════════════════════════
           TEAM TREE — Org Chart
           ═══════════════════════════════════════ */
        .team-tree {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 56px;
            padding: 32px 0 48px;
            position: relative;
        }

        /* ── Level rows ── */
        .tree-level {
            display: flex;
            justify-content: center;
            gap: 32px;
            width: 100%;
            position: relative;
        }

        .tree-level-inner {
            gap: 16px;
            padding: 0;
        }

        /* ── Vertical connector: management → departments ── */
        .tree-level::before {
            content: "";
            position: absolute;
            top: -56px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 56px;
            background: linear-gradient(to bottom, var(--orange), rgba(249, 115, 22, 0.25));
            box-shadow: 0 0 14px rgba(249, 115, 22, 0.45);
            z-index: 1;
            display: none;
            animation: linePulse 2.5s ease-in-out infinite;
        }

        .team-tree .tree-level:not(:first-child)::before {
            display: block;
        }

        /* ── Horizontal branch connector ── */
        .tree-branch::after {
            content: "";
            position: absolute;
            top: -28px;
            left: -16px;
            right: -16px;
            height: 2px;
            background: linear-gradient(to right, transparent, rgba(249, 115, 22, 0.55), transparent);
            box-shadow: 0 0 8px rgba(249, 115, 22, 0.3);
            z-index: 0;
            display: none;
        }

        .tree-level:not(:first-child)>.tree-branch::after {
            display: block;
        }

        @keyframes linePulse {

            0%,
            100% {
                opacity: 0.35;
                box-shadow: 0 0 6px rgba(249, 115, 22, 0.3);
            }

            50% {
                opacity: 1;
                box-shadow: 0 0 22px rgba(249, 115, 22, 0.7);
            }
        }

        /* ── Branch containers ── */
        .tree-branch {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
            position: relative;
            flex: 1;
        }

        /* ── Management cards (direct first level only) — red authority accent ── */
        .team-tree>.tree-level:first-child .team-card {
            max-width: 280px;
            border-top: 3px solid var(--red) !important;
            background: rgba(239, 68, 68, 0.06) !important;
            box-shadow:
                0 12px 40px rgba(0, 0, 0, 0.45),
                0 0 0 1px rgba(239, 68, 68, 0.16),
                inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
        }

        /* ── Base card in tree ── */
        .team-tree .team-card {
            max-width: 220px;
            width: 100%;
            margin: 0;
            position: relative;
            z-index: 2;
            padding: 28px 20px 22px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.06) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.32s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.32s ease,
                border-color 0.32s ease;
        }

        .team-tree .team-card:hover {
            transform: translateY(-10px) scale(1.03);
            border-color: rgba(249, 115, 22, 0.5) !important;
            box-shadow:
                0 20px 50px rgba(0, 0, 0, 0.5),
                0 0 28px rgba(249, 115, 22, 0.18) !important;
        }

        /* ── Role tag ── */
        .team-tree .role-tag {
            font-size: 0.62rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--orange);
            background: rgba(249, 115, 22, 0.12);
            border: 1px solid rgba(249, 115, 22, 0.28);
            padding: 3px 10px;
            border-radius: 50px;
            margin-bottom: 18px;
            white-space: nowrap;
        }

        /* ── Icon circle ── */
        .team-tree .role-icon {
            width: 56px !important;
            height: 56px !important;
            border-radius: 50% !important;
            background: linear-gradient(135deg, var(--orange-light), var(--orange), var(--red)) !important;
            border: none !important;
            box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45) !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            filter: none !important;
            transition: transform 0.28s ease, box-shadow 0.28s ease;
            font-size: 1.5rem;
        }

        .team-tree .role-icon i {
            background: none !important;
            -webkit-text-fill-color: #fff !important;
            color: #fff !important;
            filter: none !important;
            font-size: 1.25rem;
            transition: transform 0.28s ease;
        }

        .team-tree .team-card:hover .role-icon {
            transform: scale(1.1);
            box-shadow: 0 8px 28px rgba(249, 115, 22, 0.6) !important;
        }

        .team-tree .team-card:hover .role-icon i {
            transform: scale(1.08);
        }

        /* ── Name ── */
        .team-tree .team-card h3 {
            font-size: 1.1rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 6px;
            line-height: 1.2;
        }

        /* ── Description ── */
        .team-tree .team-card p {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
            font-weight: 400;
            margin: 0;
        }

        /* ── tree-level-inner: stack cards vertically in branches ── */
        .tree-level-inner {
            flex-direction: column;
            align-items: center;
        }

        /* ── 1100px: tighten gaps ── */
        @media (max-width: 1100px) {
            .team-tree {
                gap: 44px;
            }

            .tree-level {
                gap: 20px;
            }

            .team-tree .team-card {
                max-width: 200px;
            }

            .team-tree>.tree-level:first-child .team-card {
                max-width: 240px;
            }
        }

        /* ── Mobile (≤ 768px): 3-column branch grid ── */
        @media (max-width: 768px) {
            .team-tree {
                gap: 0;
                padding: 12px 0 28px;
            }

            /* Management row: stays side-by-side */
            .team-tree>.tree-level:first-child {
                flex-direction: row;
                gap: 10px;
                padding: 0 8px;
                margin-bottom: 20px;
            }

            .team-tree>.tree-level:first-child .team-card {
                flex: 1 1 0;
                max-width: none;
                padding: 20px 10px 16px;
            }

            /* Vertical connector management → branches */
            .tree-level:not(:first-child)::before {
                display: block;
                height: 20px;
                top: -20px;
            }

            /* Departments: 3 columns */
            .tree-level:not(:first-child) {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 6px;
                align-items: start;
                padding: 0 4px;
            }

            /* Branch header from data-label */
            .tree-branch[data-label]::before {
                content: attr(data-label);
                display: block;
                width: 100%;
                text-align: center;
                font-size: 0.54rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.06em;
                color: var(--orange);
                background: rgba(249, 115, 22, 0.1);
                border: 1px solid rgba(249, 115, 22, 0.28);
                border-radius: 5px;
                padding: 4px 2px;
                margin-bottom: 6px;
            }

            /* Horizontal connector — hide on mobile */
            .tree-level:not(:first-child)>.tree-branch::after {
                display: none;
            }

            /* Branch: stretch cards */
            .tree-branch {
                gap: 6px;
                align-items: stretch;
            }

            /* Inner level stacks vertically */
            .tree-branch .tree-level,
            .tree-branch .tree-level-inner {
                flex-direction: column;
                gap: 6px;
                padding: 0;
                width: 100%;
            }

            /* Compact cards */
            .team-tree .team-card,
            .team-tree>.tree-level:first-child .team-card {
                max-width: none !important;
                width: 100%;
                padding: 14px 7px 11px;
                border-radius: 10px;
            }

            /* Hide role-tag inside branches (branch label replaces it) */
            .tree-branch .role-tag {
                display: none;
            }

            /* Smaller icon circle */
            .team-tree .role-icon {
                width: 38px !important;
                height: 38px !important;
                font-size: 1rem !important;
                margin-bottom: 8px !important;
            }

            .team-tree .role-icon i {
                font-size: 0.9rem !important;
            }

            /* Smaller name & description */
            .team-tree .team-card h3 {
                font-size: 0.75rem;
                margin-bottom: 3px;
            }

            .team-tree .team-card p {
                font-size: 0.62rem;
                line-height: 1.35;
            }

            /* No hover lift on touch */
            .team-tree .team-card:hover {
                transform: none;
            }
        }

        /* CTA STRIP - Marketing Jump Points */
        .cta-strip {
            padding: 80px 20px;
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
            backdrop-filter: blur(15px);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            text-align: center;
            position: relative;
            overflow: hidden;
            margin: 40px 0;
        }

        .cta-strip::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        .cta-strip-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-strip h3 {
            font-size: 2.4rem;
            font-weight: 900;
            margin-bottom: 30px;
            line-height: 1.3;
            background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cta-strip .btn {
            font-size: 1.2rem;
            padding: 16px 45px;
            box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
        }

        @media (max-width: 768px) {
            .cta-strip {
                padding: 60px 20px;
            }

            .cta-strip h3 {
                font-size: 1.8rem;
                margin-bottom: 20px;
            }

            .cta-strip .btn {
                width: 100%;
            }
        }

        /* ══════════════════════════════════════════════
           HERO TRUST STATS & MINI TESTIMONIAL
           ══════════════════════════════════════════════ */

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin: 20px 0 18px;
            flex-wrap: wrap;
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(255, 255, 255, .13);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, .28);
            border-radius: 12px;
            padding: 10px 20px;
            min-width: 90px;
        }

        .hero-stat strong {
            font-size: 1.35rem;
            font-weight: 900;
            color: var(--orange);
            line-height: 1.2;
        }


        .hero-stat span {
            font-size: .72rem;
            font-weight: 600;
            opacity: .85;
            margin-top: 3px;
            white-space: nowrap;
        }

        .hero-testimonial {
            background: rgba(255, 255, 255, .1);
            border-right: 3px solid var(--red);
            border-radius: 0 10px 10px 0;
            padding: 10px 16px 10px 12px;
            margin: 1.75rem auto 28px;
            text-align: right;
            max-width: 480px;
        }

        .hero-quote-text {
            display: block;
            font-size: .9rem;
            font-style: italic;
            opacity: .92;
            margin-bottom: 4px;
            line-height: 1.5;
        }

        .hero-testimonial cite {
            font-size: .74rem;
            font-style: normal;
            opacity: .7;
            font-weight: 600;
        }

        /* ══════════════════════════════════════════════
           PERSONA FILTER TABS
           ══════════════════════════════════════════════ */

        .persona-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .persona-tab {
            padding: 10px 22px;
            border-radius: 50px;
            border: 2px solid var(--gray-mid);
            background: transparent;
            color: #94a3b8;
            font-family: 'Assistant', sans-serif;
            font-size: .95rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--tr);
        }

        .persona-tab:hover {
            border-color: var(--orange);
            color: var(--orange);
        }

        .persona-tab.active {
            background: var(--orange);
            border-color: var(--orange);
            color: white;
            box-shadow: 0 4px 16px rgba(249, 115, 22, .35);
        }

        .service-card.persona-hidden {
            display: none !important;
        }

        /* ══════════════════════════════════════════════
           STICKY MOBILE CTA BAR
           ══════════════════════════════════════════════ */


        /* ══════════════════════════════════════════════
           UX PRO MAX — אנימציות מתקדמות
           ══════════════════════════════════════════════ */

        /* SCROLL PROGRESS BAR */
        .scroll-progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--red), var(--orange), var(--red));
            background-size: 200% 100%;
            z-index: 10002;
            box-shadow: 0 0 8px rgba(249, 115, 22, .7), 0 0 3px rgba(239, 68, 68, .5);
            transition: width .12s linear;
            pointer-events: none;
            animation: progressGlow 2s linear infinite;
        }

        @keyframes progressGlow {
            0% {
                background-position: 0% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        /* HERO FLOATING PARTICLES */
        .hero-particles {
            position: absolute;
            inset: 0;
            z-index: 1;
            background-image:
                radial-gradient(circle, rgba(249, 115, 22, .30) 1.5px, transparent 1.5px),
                radial-gradient(circle, rgba(56, 189, 248, .22) 1.5px, transparent 1.5px);
            background-size: 60px 60px, 88px 88px;
            background-position: 0 0, 30px 30px;
            animation: particleDrift 30s linear infinite;
            pointer-events: none;
            opacity: 0.6;
        }

        @keyframes particleDrift {
            from {
                background-position: 0 0, 30px 30px;
            }

            to {
                background-position: 0 -60px, 30px -28px;
            }
        }

        /* HERO ENTRANCE SEQUENCE */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(28px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes wordSlideUp {
            from {
                opacity: 0;
                transform: translateY(40px) skewY(5deg);
            }

            to {
                opacity: 1;
                transform: translateY(0) skewY(0deg);
            }
        }

        .hero-eyebrow {
            animation: fadeInUp .5s cubic-bezier(.16, 1, .3, 1) .15s both;
        }

        .hw {
            display: inline-block;
            opacity: 0;
            animation: wordSlideUp .65s cubic-bezier(.16, 1, .3, 1) both;
        }

        .hw:nth-child(1) {
            animation-delay: .35s;
        }

        .hw:nth-child(2) {
            animation-delay: .60s;
        }

        .hw:nth-child(3) {
            animation-delay: .85s;
        }

        .hero-stat:nth-child(1) {
            animation: fadeInUp .5s cubic-bezier(.16, 1, .3, 1) 1.20s both;
        }

        .hero-stat:nth-child(2) {
            animation: fadeInUp .5s cubic-bezier(.16, 1, .3, 1) 1.35s both;
        }

        .hero-stat:nth-child(3) {
            animation: fadeInUp .5s cubic-bezier(.16, 1, .3, 1) 1.50s both;
        }

        .hero-testimonial {
            animation: fadeInUp .55s cubic-bezier(.16, 1, .3, 1) 1.60s both;
        }

        .hero .btn-orange {
            animation: fadeInUp .55s cubic-bezier(.16, 1, .3, 1) 1.80s both,
                heroBtnGlow 3s ease-in-out 2.5s infinite;
        }

        @keyframes heroBtnGlow {

            0%,
            100% {
                filter: drop-shadow(0 0 0px rgba(249, 115, 22, 0));
            }

            50% {
                filter: drop-shadow(0 0 14px rgba(249, 115, 22, .6));
            }
        }

        /* SECTION TITLE UNDERLINE SHIMMER */
        .section-title::after {
            background: linear-gradient(90deg, var(--red), var(--orange), var(--red), var(--orange-light));
            background-size: 300% 100%;
            animation: underlineShimmer 3.5s ease-in-out infinite;
        }

        @keyframes underlineShimmer {

            0%,
            100% {
                background-position: 0% 0;
            }

            50% {
                background-position: 100% 0;
            }
        }

        /* MAP PANEL SMOOTH REVEAL */
        .map-panel.active {
            animation: panelFadeIn .42s cubic-bezier(.16, 1, .3, 1) both;
        }

        @keyframes panelFadeIn {
            from {
                opacity: 0;
                transform: translateY(14px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* COUNTER NUMBERS */
        [data-count] {
            font-variant-numeric: tabular-nums;
        }

        /* REDUCED MOTION OVERRIDE */
        @media (prefers-reduced-motion: reduce) {

            .hw,
            .hero-eyebrow,
            .hero-stat,
            .hero-testimonial,
            .hero .btn-orange {
                animation: fadeIn 0.4s ease both !important;
                transform: none !important;
                filter: none !important;
            }

            .hero-particles,
            .scroll-progress-bar {
                animation: none !important;
                opacity: 1 !important;
            }
        }

        /* ═══════════════════════════════════════════════════
           WOW HERO — FULL VIEWPORT REDESIGN
           ═══════════════════════════════════════════════════ */

        .hero {
            height: 100dvh;
            min-height: 620px;
        }

        .hero h1 {
            font-size: clamp(2.8rem, 6vw, 5.2rem);
            line-height: 1.15;
            margin-bottom: 1rem;
        }

        .hero-content>p {
            animation: fadeInUp .45s cubic-bezier(.16, 1, .3, 1) 1.05s both;
            font-size: clamp(1rem, 2.2vw, 1.2rem);
            opacity: .85;
            max-width: 520px;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        /* TOPOGRAPHIC RINGS */
        .hero-topo {
            position: absolute;
            left: 0;
            top: 0;
            width: 560px;
            height: 560px;
            pointer-events: none;
            z-index: 1;
            will-change: transform;
        }

        /* fallback position on touch / no JS */
        @media (hover: none) {
            .hero-topo {
                left: auto;
                top: auto;
                right: 5%;
                bottom: -8%;
                will-change: auto;
            }
        }

        .topo-ring {
            position: absolute;
            border-radius: 50%;
            border: 1.5px solid var(--orange);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            animation: topoExpand 6s ease-out infinite;
        }

        .r1 {
            width: 90px;
            height: 90px;
            animation-delay: 0.0s;
        }

        .r2 {
            width: 180px;
            height: 180px;
            animation-delay: 0.9s;
        }

        .r3 {
            width: 270px;
            height: 270px;
            animation-delay: 1.8s;
        }

        .r4 {
            width: 360px;
            height: 360px;
            animation-delay: 2.7s;
        }

        .r5 {
            width: 450px;
            height: 450px;
            animation-delay: 3.6s;
        }

        @keyframes topoExpand {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(.85);
            }

            15% {
                opacity: .5;
            }

            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(1.2);
            }
        }

        .topo-crosshair {
            position: absolute;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--orange);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 10px var(--orange), 0 0 22px rgba(249, 115, 22, .4);
            animation: crosshairPulse 2.4s ease-in-out infinite;
        }

        @keyframes crosshairPulse {

            0%,
            100% {
                box-shadow: 0 0 8px var(--orange), 0 0 18px rgba(249, 115, 22, .3);
            }

            50% {
                box-shadow: 0 0 22px var(--orange), 0 0 44px rgba(249, 115, 22, .5);
            }
        }

        /* SCAN LINE */
        .hero-scan {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .hero-scan::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 2px;
            top: -2px;
            background: linear-gradient(90deg, transparent 0%, rgba(249, 115, 22, .55) 40%, rgba(239, 68, 68, .55) 60%, transparent 100%);
            animation: scanLine 7s linear 1.5s infinite;
        }

        @keyframes scanLine {
            0% {
                top: 0;
                opacity: .7;
            }

            85% {
                opacity: .3;
            }

            100% {
                top: 100%;
                opacity: 0;
            }
        }

        /* H1 GRADIENT HIGHLIGHT WORD */
        .hw.h1-highlight {
            background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 40%, var(--red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: wordSlideUp .65s cubic-bezier(.16, 1, .3, 1) .60s both,
                gradientShift 5s ease-in-out 1.8s infinite;
        }

        @keyframes gradientShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        /* HERO DUAL CTAS */
        .hero-ctas {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            animation: fadeInUp .5s cubic-bezier(.16, 1, .3, 1) 1.75s both;
        }

        .hero-ctas .btn-orange {
            animation: heroBtnGlow 3s ease-in-out 2.6s infinite;
        }

        /* WHITE OUTLINE BUTTON */
        .btn-white-outline {
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            padding: .72rem 1.7rem;
            border: 2px solid rgba(255, 255, 255, .65);
            border-radius: 6px;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            font-family: inherit;
            text-decoration: none;
            transition: background .2s, border-color .2s, transform .15s;
            cursor: pointer;
        }

        .btn-white-outline:hover {
            background: rgba(255, 255, 255, .12);
            border-color: rgba(255, 255, 255, .9);
            transform: translateY(-2px);
        }

        /* HERO TESTIMONIAL — updated delay for new order */
        .hero-testimonial {
            animation: fadeInUp .55s cubic-bezier(.16, 1, .3, 1) 2.0s both;
        }

        /* SCROLL CUE */
        .hero-scroll-cue {
            position: absolute;
            bottom: -rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: .4rem;
            color: rgba(255, 255, 255, .45);
            font-size: .72rem;
            text-decoration: none;
            letter-spacing: .1em;
            text-transform: uppercase;
            animation: scrollCueFadeIn 1s ease 2.4s both;
            z-index: 5;
        }

        .hero-scroll-cue i {
            font-size: .9rem;
            animation: scrollBounce 1.6s ease-in-out 3.2s infinite;
        }

        @keyframes scrollCueFadeIn {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(12px);
            }

            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        @keyframes scrollBounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(6px);
            }
        }


        /* MOBILE RESPONSIVE */
        @media (max-width: 600px) {

            .r4,
            .r5,
            .hero-scan {
                display: none;
            }

            .hero-topo {
                left: auto;
                top: auto;
                right: -15%;
                bottom: -12%;
                width: 300px;
                height: 300px;
                opacity: .5;
                will-change: auto;
            }

            .hero-ctas {
                gap: .75rem;
            }

            .hero-ctas .btn,
            .hero-ctas .btn-white-outline {
                width: 100%;
                justify-content: center;
            }
        }

        /* REDUCED MOTION — WOW HERO ADDITIONS */
        @media (prefers-reduced-motion: reduce) {

            .topo-ring,
            .topo-crosshair,
            .hero-scan::after,
            .hero-scroll-cue i {
                animation: none !important;
                opacity: 1 !important;
            }

            .hero-ctas,
            .hero-content>p {
                animation: fadeIn 0.4s ease both !important;
                transform: none !important;
            }

            .hero-scroll-cue {
                transform: translateX(-50%) !important;
                opacity: .45 !important;
            }

            .hw.h1-highlight {
                animation: fadeIn 0.4s ease both !important;
                transform: none !important;
                -webkit-text-fill-color: var(--orange);
            }
        }