/* Global and Header Styles */
:root {
                --tw-color-primary: #15628a;
            }

            html, body { overflow-x: hidden; max-width: 100vw; }
            img, video, iframe { max-width: 100%; height: auto; }

            * {
                transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
                transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
                transition-duration: 150ms;
            }
            
            .tail-container * {
                font-family: 'Inter', system_ui, sans-serif;
            }
            
            .heading-font {
                font-family: 'Saira', sans-serif;
            }

            .hero-bg {
                background: linear-gradient(135deg, #f8fafc 0%, #e0eef6 100%);
            }
            
            /* ===== HEADER STYLES ===== */

            /* Ticker */
            @keyframes scroll-left {
                0% { transform: translateX(0); }
                100% { transform: translateX(-50%); }
            }
            .ticker-track {
                display: flex;
                width: max-content;
                animation: scroll-left 35s linear infinite;
            }
            .ticker-track:hover { animation-play-state: paused; }

            /* Glow pulse for live dot */
            @keyframes glow-pulse {
                0%, 100% { transform: scale(1); opacity: 1; }
                50% { transform: scale(1.22); opacity: 0.72; }
            }
            .live-dot { animation: glow-pulse 2s ease-in-out infinite; will-change: transform, opacity; }

            /* Float animation for CTA button */
            @keyframes float-y {
                0%, 100% { transform: translateY(0); }
                50% { transform: translateY(-2px); }
            }

            /* Navbar */
            #main-navbar {
                background: rgba(255,255,255,0.95);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                transition: box-shadow 0.3s ease;
            }
            #main-navbar.scrolled {
                box-shadow: 0 4px 30px rgba(0,0,0,0.08);
            }

            /* Nav link hover underline */
            .nv-link { position: relative; }
            .nv-link::after {
                content: '';
                position: absolute;
                bottom: -4px;
                left: 50%;
                width: 0;
                height: 2px;
                background: linear-gradient(90deg, #15628a, #f59e0b);
                border-radius: 999px;
                transform: translateX(-50%);
                transition: width 0.25s ease;
            }
            .nv-link:hover::after { width: 70%; }

            /* Mobile drawer */
            .drawer-overlay {
                position: fixed; inset: 0;
                background: rgba(0,0,0,0.5);
                backdrop-filter: blur(4px);
                z-index: 90;
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.3s ease;
            }
            .drawer-overlay.open { opacity: 1; pointer-events: auto; }
            .drawer-panel {
                position: fixed; top: 0; right: 0; bottom: 0;
                width: 320px; max-width: 85vw;
                background: #fff;
                z-index: 100;
                transform: translateX(100%);
                transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
                display: flex; flex-direction: column;
                box-shadow: -10px 0 40px rgba(0,0,0,0.1);
                will-change: transform;
            }
            .drawer-panel.open { transform: translateX(0); }

            /* Ripple on mobile link tap */
            .mob-link {
                position: relative; overflow: hidden;
            }
            .mob-link::before {
                content: '';
                position: absolute; inset: 0;
                background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(21,98,138,0.1) 0%, transparent 60%);
                opacity: 0;
                transition: opacity 0.3s;
            }
            .mob-link:hover::before { opacity: 1; }
            
            .stat-card {
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            }
            
            .stat-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            }
            
            .tools-marquee-wrap {
                margin-top: 3rem;
                display: flex;
                flex-direction: column;
                gap: 1.2rem;
            }
            .tools-marquee-row {
                position: relative;
                overflow: hidden;
                width: 100%;
                padding: 0.25rem 0;
                -webkit-mask-image: linear-gradient(
                    to right,
                    transparent 0,
                    #000 6%,
                    #000 94%,
                    transparent 100%
                );
                mask-image: linear-gradient(
                    to right,
                    transparent 0,
                    #000 6%,
                    #000 94%,
                    transparent 100%
                );
            }
            .tools-marquee-track {
                display: flex;
                align-items: stretch;
                gap: 0;
                width: max-content;
                will-change: transform;
                animation-timing-function: linear;
                animation-iteration-count: infinite;
                animation-duration: 112s;
            }
            .tools-marquee-row--left .tools-marquee-track { animation-name: tools-row-left; }
            .tools-marquee-row--right .tools-marquee-track { animation-name: tools-row-right; }
            .tools-marquee-row:hover .tools-marquee-track { animation-play-state: paused; }
            .tools-marquee-set {
                display: flex;
                gap: 1.15rem;
                padding-right: 1.15rem;
            }
            .tech-card {
                --tech-accent: 21, 98, 138;
                flex: 0 0 clamp(220px, 19vw, 246px);
                min-height: 148px;
                border-radius: 19px;
                border: 1px solid rgba(226, 232, 240, 0.9);
                background: linear-gradient(
                    180deg,
                    rgba(255, 255, 255, 0.98) 0%,
                    rgba(250, 252, 255, 0.96) 42%,
                    rgba(245, 248, 252, 0.9) 100%
                );
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 0.95rem;
                padding: 1.15rem 0.95rem 1.05rem;
                text-align: center;
                box-shadow: none;
                transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease;
            }
            .tech-card:hover {
                transform: translateY(-3px);
                border-color: rgba(21, 98, 138, 0.34);
                background: linear-gradient(
                    180deg,
                    rgba(255, 255, 255, 1) 0%,
                    rgba(246, 251, 255, 0.98) 100%
                );
                box-shadow: none;
            }
            .tech-icon {
                width: 60px;
                height: 60px;
                border-radius: 14px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                font-size: 1.5rem;
                color: #334155;
                background: transparent;
                box-shadow: none;
            }
            .tech-logo {
                width: 94%;
                height: 94%;
                object-fit: contain;
                display: block;
                filter: none;
                user-select: none;
                -webkit-user-drag: none;
            }
            .tech-name {
                font-size: 0.98rem;
                font-weight: 600;
                line-height: 1.25;
                color: #0f172a;
            }
            @media (max-width: 1100px) {
                .tools-marquee-track { animation-duration: 94s; }
                .tech-card {
                    flex-basis: 206px;
                    min-height: 136px;
                }
            }
            @keyframes tools-row-left {
                from { transform: translateX(0); }
                to { transform: translateX(-50%); }
            }
            @keyframes tools-row-right {
                from { transform: translateX(-50%); }
                to { transform: translateX(0); }
            }
            @media (max-width: 768px) {
                .tools-marquee-row {
                    -webkit-mask-image: none;
                    mask-image: none;
                }
                .tools-marquee-set {
                    gap: 0.75rem;
                    padding-right: 0.75rem;
                }
                .tech-card {
                    flex-basis: 168px;
                    min-height: 116px;
                    border-radius: 1rem;
                    gap: 0.65rem;
                    padding: 0.8rem 0.58rem 0.72rem;
                }
                .tech-icon {
                    width: 50px;
                    height: 50px;
                    border-radius: 12px;
                    font-size: 1.2rem;
                }
                .tech-name { font-size: 0.86rem; }
            }
            @media (prefers-reduced-motion: reduce) {
                .tools-marquee-track { animation: none !important; }
            }
            
            .accordion-header {
                transition: all 0.3s ease;
            }

            /* Popup Styles */
            .popup-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 10000;
            display: flex; align-items: center; justify-content: center;
            padding: 16px;
            opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
            }
            .popup-overlay.active { opacity: 1; pointer-events: auto; }
            .popup-card {
            background: white; border-radius: 1.5rem; max-width: 420px; width: 100%; position: relative;
            max-height: calc(100vh - 32px);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            transform: translateY(30px) scale(0.95); transition: transform 0.4s ease;
            box-shadow: 0 25px 60px rgba(0,0,0,0.25); padding: 2rem 1.5rem;
            will-change: transform;
            }
            @media (min-width: 480px) {
                .popup-card { padding: 2rem; }
            }
            .popup-overlay.active .popup-card { transform: translateY(0) scale(1); }
            .brochure-popup-card {
            max-width: 390px;
            padding: 1.5rem 1.25rem;
            }
            .brochure-popup-card .demo-form-label {
            margin-bottom: 0.35rem;
            }
            .brochure-popup-card .demo-form-input {
            padding: 0.68rem 0.9rem;
            margin-bottom: 0.8rem;
            }
            .brochure-form-actions {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 0.25rem;
            }
            .brochure-form-actions .btn-apply-now,
            .brochure-form-actions .btn-not-now {
            margin-bottom: 0;
            }
            .popup-close {
            position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px;
            border-radius: 50%; border: 1px solid #e5e7eb; background: white; color: #64748b;
            font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
            transition: all 0.2s;
            z-index: 2;
            }
            .popup-close:hover { background: #f1f5f9; color: #334155; }
            .demo-form-label { font-size: 0.875rem; font-weight: 600; color: #1e293b; margin-bottom: 0.5rem; display: block; }
            .demo-form-input {
            width: 100%; padding: 0.75rem 1rem; border: 1.5px solid #e2e8f0; border-radius: 0.75rem;
            font-size: 16px; font-family: 'Inter', sans-serif; background: #f8fafc;
            transition: all 0.2s; margin-bottom: 1rem;
            }
            .demo-form-input:focus { outline: none; border-color: #15628a; background: white; box-shadow: 0 0 0 3px rgba(21,98,138,0.1); }
            .demo-form-input::placeholder { color: #94a3b8; }
            .btn-not-now {
            width: 100%; padding: 0.8rem; border: 1.5px solid #e2e8f0; border-radius: 0.75rem;
            font-weight: 600; font-size: 0.9rem; color: #475569; cursor: pointer;
            font-family: 'Inter', sans-serif; background: #f8fafc; transition: all 0.2s; margin-bottom: 0.75rem;
            }
            .btn-not-now:hover { background: #e2e8f0; }
            .btn-apply-now {
            width: 100%; padding: 0.85rem; border: none; border-radius: 0.75rem; font-weight: 700;
            font-size: 0.95rem; color: white; cursor: pointer; font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #14202e 0%, #15628a 50%, #7c3aed 100%);
            transition: transform 0.2s, box-shadow 0.2s;
            }
            .btn-apply-now:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(21,98,138,0.35); }
            .btn-apply-now:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
            #popupForm .btn-apply-now {
            margin-bottom: 0.6rem;
            padding: 0.78rem;
            }
            #popupForm .btn-not-now {
            margin-bottom: 0;
            padding: 0.65rem;
            font-size: 0.85rem;
            }
            .popup-card--compact {
            max-width: 380px;
            padding: 1.4rem 1.25rem;
            border-radius: 1.25rem;
            }
            @media (min-width: 480px) {
                .popup-card--compact { padding: 1.6rem 1.5rem; }
            }
            .popup-card--compact .popup-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #fef2f2;
            color: #b91c1c;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            padding: 0.28rem 0.7rem;
            border-radius: 999px;
            margin-bottom: 0.75rem;
            border: 1px solid #fecaca;
            }
            .popup-card--compact .popup-badge-dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: #dc2626;
            box-shadow: 0 0 0 0 rgba(220,38,38,0.55);
            animation: popup-badge-pulse 1.6s ease-out infinite;
            }
            @keyframes popup-badge-pulse {
            0% { box-shadow: 0 0 0 0 rgba(220,38,38,0.55); }
            70% { box-shadow: 0 0 0 6px rgba(220,38,38,0); }
            100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
            }
            @media (prefers-reduced-motion: reduce) {
            .popup-card--compact .popup-badge-dot { animation: none; }
            }
            .popup-card--compact .popup-title {
            font-size: 1.2rem;
            font-weight: 800;
            color: #0f172a;
            margin: 0 0 0.35rem;
            line-height: 1.25;
            padding-right: 2rem;
            }
            .popup-card--compact .popup-subtitle {
            font-size: 0.825rem;
            color: #64748b;
            line-height: 1.45;
            margin: 0 0 1.1rem;
            }
            .popup-card--compact .demo-form-label {
            font-size: 0.8rem;
            margin-bottom: 0.3rem;
            }
            .popup-card--compact .demo-form-input {
            padding: 0.6rem 0.85rem;
            margin-bottom: 0.7rem;
            border-radius: 0.65rem;
            }
            .popup-card--compact .popup-close {
            top: 0.65rem; right: 0.65rem;
            width: 28px; height: 28px;
            font-size: 1.05rem;
            }
            .demo-badge {
            display: inline-block; background: #eef7ff; color: #15628a; font-size: 0.8rem;
            font-weight: 700; padding: 0.3rem 0.9rem; border-radius: 2rem; margin-bottom: 1rem;
            }
            .form-success-msg {
            text-align: center; padding: 2rem 1rem;
            }
            .form-success-msg .success-icon {
            width: 60px; height: 60px; border-radius: 50%; background: #e0eef6;
            display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
            font-size: 1.5rem;
            }
            .form-success-msg h4 { font-size: 1.2rem; font-weight: 700; color: #1e293b; margin-bottom: 0.5rem; }
            .form-success-msg p { font-size: 0.85rem; color: #64748b; }
            .success-checkmark {
                width: 80px; height: 80px; margin: 0 auto 1.2rem; position: relative;
                animation: sc-pop .5s cubic-bezier(.22,1,.36,1);
            }
            .success-checkmark svg { width: 80px; height: 80px; display: block; }
            .success-checkmark .sc-circle {
                stroke: #15628a; stroke-width: 3; stroke-dasharray: 166; stroke-dashoffset: 166;
                animation: sc-stroke .7s cubic-bezier(.65,0,.45,1) forwards;
            }
            .success-checkmark .sc-check {
                stroke: #15628a; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round;
                stroke-dasharray: 48; stroke-dashoffset: 48;
                animation: sc-stroke .35s .6s cubic-bezier(.65,0,.45,1) forwards;
            }
            @keyframes sc-stroke { to { stroke-dashoffset: 0; } }
            @keyframes sc-pop { 0% { transform: scale(0);} 60% { transform: scale(1.1);} 100% { transform: scale(1);} }
            .form-success-msg { animation: sc-fade .5s ease; }
            @keyframes sc-fade { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: translateY(0);} }

            .hero-proof-card { min-height: 12.75rem; }
            .hero-form-shell { min-height: 27rem; }
            #heroFormContainer { min-height: 14.75rem; }
            #popupFormContainer { min-height: 12.5rem; }
            #brochureFormContainer { min-height: 16rem; }
            .a11y-chip-blue { color: #004a7c; background: rgba(21,98,138,0.14); }
            .a11y-chip-green { color: #b45309; background: rgba(245,158,11,0.14); }
            #partnersTrack .partner-pill span:first-child {
                color: #0f172a;
                line-height: 1.35;
                opacity: 1;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                transition: color .25s ease, opacity .25s ease;
            }
            #partnersTrack .partner-pill span:last-child {
                color: #334155;
                opacity: 0.9;
                transition: color .25s ease, opacity .25s ease;
            }
            #partnersTrack .partner-pill.is-active span:first-child { color: #0f172a; opacity: 1; }
            #partnersTrack .partner-pill.is-active span:last-child { color: #334155; opacity: 0.9; }
            #top-strip .bg-slate-950,
            #top-strip .bg-slate-950 a { color: #cbd5e1; }
            #top-strip .bg-slate-950 a:hover { color: #ffffff; }

            /* Placement Posters Slider */
            .placement-slider {
                overflow: hidden;
                position: relative;
                width: 100%;
            }
            .placement-slider.full-bleed {
                width: 100vw;
                position: relative;
                left: 50%;
                right: 50%;
                margin-left: -50vw;
                margin-right: -50vw;
            }
            .placement-slider-track {
                display: flex;
                gap: 1.25rem;
                width: max-content;
                animation: placement-scroll 40s linear infinite;
            }
            .placement-slider:hover .placement-slider-track { animation-play-state: paused; }
            .placement-cards-grid {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.75rem;
            }
            @media (min-width: 640px) {
                .placement-cards-grid {
                    gap: 1rem;
                }
            }
            @media (min-width: 1024px) {
                .placement-cards-grid {
                    grid-template-columns: repeat(4, minmax(0, 1fr));
                    gap: 1.25rem;
                }
            }
            .placement-card {
                width: 100%;
                aspect-ratio: 1 / 1;
                border-radius: 1rem;
                overflow: hidden;
                box-shadow: 0 10px 25px -10px rgba(15,23,42,0.25);
                background: #f1f5f9;
                transform: rotate(-1deg);
                transition: transform .3s;
            }
            @media (min-width: 640px) {
                .placement-card { border-radius: 1.25rem; }
            }
            .placement-card:nth-child(even) { transform: rotate(1deg); }
            .placement-card:hover { transform: rotate(0) scale(1.03); }
            .placement-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
            @keyframes placement-scroll {
                from { transform: translateX(0); }
                to   { transform: translateX(-50%); }
            }

            /* Top hiring partners slider */
            .partners-slider {
                position: relative;
                isolation: isolate;
                overflow: hidden;
                width: 100vw;
                max-width: none;
                left: 50%;
                right: 50%;
                margin-left: -50vw;
                margin-right: -50vw;
                margin-bottom: 3rem;
                padding: 1rem 2rem;
                background:
                    linear-gradient(
                        90deg,
                        rgba(21, 98, 138, 0.06) 0%,
                        rgba(255, 255, 255, 0) 40%,
                        rgba(255, 255, 255, 0) 60%,
                        rgba(245, 158, 11, 0.06) 100%
                    ),
                    linear-gradient(
                        90deg,
                        rgba(255, 255, 255, 0) 0%,
                        rgba(255, 255, 255, 0) 30%,
                        rgba(21, 98, 138, 0.07) 45%,
                        rgba(245, 158, 11, 0.07) 55%,
                        rgba(255, 255, 255, 0) 70%,
                        rgba(255, 255, 255, 0) 100%
                    );
                -webkit-mask-image: linear-gradient(
                    to right,
                    transparent 0,
                    #000 18px,
                    #000 calc(100% - 18px),
                    transparent 100%
                );
                mask-image: linear-gradient(
                    to right,
                    transparent 0,
                    #000 18px,
                    #000 calc(100% - 18px),
                    transparent 100%
                );
            }
            .partners-slider::before {
                content: "";
                position: absolute;
                inset: -16% -8%;
                background: radial-gradient(
                    circle at center,
                    rgba(21, 98, 138, 0.1) 0%,
                    rgba(245, 158, 11, 0.1) 36%,
                    rgba(255, 255, 255, 0) 64%
                );
                filter: blur(58px);
                opacity: 0.5;
                pointer-events: none;
                z-index: 0;
            }
            .partners-slider::after { display: none; }
            .partners-track {
                display: flex;
                align-items: center;
                gap: 1.2rem;
                width: max-content;
                will-change: transform;
                padding: .35rem .5rem;
                position: relative;
                z-index: 1;
            }
            .partners-slide {
                flex: 0 0 320px;
                width: 320px;
            }
            .partners-slide .partner-pill {
                width: 100%;
                min-width: 0;
                max-width: none;
                height: 88px;
                padding: 10px 16px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 0.25rem;
                text-align: center;
                background: rgba(255, 255, 255, 0.9);
                border: 1px solid rgba(255, 255, 255, 0.72);
                border-radius: 18px;
                -webkit-backdrop-filter: blur(8px);
                backdrop-filter: blur(8px);
                box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
                opacity: 1;
                transform: translateY(0) scale(1);
                transform-origin: center center;
                transition:
                    transform .25s ease,
                    opacity .25s ease,
                    box-shadow .25s ease,
                    border-color .25s ease,
                    background-color .25s ease;
                will-change: transform, opacity;
            }
            .partners-slide .partner-pill.is-active {
                opacity: 1;
                transform: translateY(0) scale(1);
                border-color: rgba(255, 255, 255, 0.72);
                box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
            }
            .partners-slide .partner-pill:hover {
                transform: translateY(-4px) scale(1.01);
                box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
                border-color: rgba(21, 98, 138, 0.34);
                background: rgba(255, 255, 255, 0.95);
            }
            .partners-slide .partner-pill.is-active:hover {
                transform: translateY(-4px) scale(1.02);
            }
            @media (max-width: 768px) {
                .partners-slider {
                    padding: .9rem 0;
                    -webkit-mask-image: none;
                    mask-image: none;
                    overflow: hidden;
                }
                .partners-slider::after { display: none; }
                .partners-track {
                    gap: .75rem;
                    padding: .15rem .1rem;
                }
                .partners-slide { scroll-snap-align: unset; }
                .partners-slide {
                    flex-basis: 200px;
                    width: 200px;
                }
                .partners-slide .partner-pill {
                    height: 80px;
                }
            }
/* Capability list section styles */
.curr-wrap { display: flex; flex-direction: column; gap: 2rem; }
            @media (min-width: 1024px) {
                .curr-wrap { flex-direction: row; align-items: flex-start; }
                .curr-main { flex: 1 1 0; min-width: 0; }
                .curr-side { flex: 0 0 340px; position: sticky; top: 90px; }
            }
            .curr-item { border: 1px solid #e2e8f0; border-radius: 1rem; background: #fff; transition: all .3s; overflow: hidden; }
            .curr-item:hover { border-color: rgba(21,98,138,.4); box-shadow: 0 10px 30px -12px rgba(15,23,42,.12); }
            .curr-head { width: 100%; display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem; text-align: left; background: transparent; }
            .curr-num { width: 2.75rem; height: 2.75rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
            .curr-title { font-weight: 700; color: #0f172a; font-size: 1rem; }
            .curr-sub { font-size: .7rem; color: #64748b; margin-top: .2rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
            .curr-chev { width: 1.1rem; height: 1.1rem; color: #94a3b8; margin-left: auto; flex-shrink: 0; transition: transform .3s; }
            .curr-item.open .curr-chev { transform: rotate(180deg); }
            .curr-body { padding: 0 1.25rem 1.25rem 4.85rem; color: #475569; font-size: .88rem; line-height: 1.6; display: none; }
            .curr-item.open .curr-body { display: block; }
            @media (max-width: 640px) { .curr-body { padding-left: 1.25rem; } }
/* Project story shorts section styles */
.shorts-section {
                position: relative;
                background: linear-gradient(145deg, #f8fbff 0%, #eef7ff 45%, #f8fbff 100%);
                border-top: 1px solid rgba(21, 98, 138, 0.12);
                border-bottom: 1px solid rgba(20, 32, 46, 0.1);
                overflow: hidden;
            }
            .shorts-section::before {
                content: "";
                position: absolute;
                inset: 0;
                background:
                    radial-gradient(circle at 14% 18%, rgba(21,98,138,0.10), transparent 42%),
                    radial-gradient(circle at 82% 70%, rgba(245,158,11,0.08), transparent 44%);
                pointer-events: none;
            }
            .shorts-carousel {
                position: relative;
                max-width: 1280px;
                margin: 0 auto;
                padding: 0 64px;
            }
            .shorts-track-wrap {
                overflow: hidden;
                position: relative;
                padding: 12px 0 12px;
                touch-action: pan-y;
            }
            .shorts-track {
                display: flex;
                gap: 20px;
                transition: transform .6s cubic-bezier(.22,.9,.3,1);
                will-change: transform;
            }
            .short-card {
                flex: 0 0 auto;
                width: 264px;
                border-radius: 24px;
                overflow: hidden;
                background: #0f172a;
                box-shadow: 0 14px 36px -22px rgba(15,23,42,0.40);
                transform: translateY(0);
                transition: transform .4s cubic-bezier(.22,.9,.3,1), box-shadow .4s ease;
                position: relative;
                isolation: isolate;
            }
            .short-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 36px 72px -28px rgba(15, 23, 42, 0.55);
            }
            .short-card iframe,
            .short-video-trigger {
                display: block;
                width: 100%;
                height: 470px;
                border: 0;
            }
            .short-video-trigger {
                appearance: none;
                background: transparent;
                padding: 0;
                cursor: pointer;
                text-align: left;
                color: inherit;
                border: 0;
            }
            .short-video-poster {
                position: relative;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                width: 100%;
                height: 100%;
                padding: 16px;
                color: #ffffff;
                background-color: #0f172a;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }
            .short-video-poster::before {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(180deg, rgba(15,23,42,0) 30%, rgba(15,23,42,0.45) 70%, rgba(15,23,42,0.85) 100%);
                pointer-events: none;
                transition: opacity .35s ease;
            }
            .short-card:hover .short-video-poster::before {
                background: linear-gradient(180deg, rgba(15,23,42,0.05) 25%, rgba(15,23,42,0.5) 65%, rgba(15,23,42,0.9) 100%);
            }
            .short-video-chip {
                position: relative;
                z-index: 2;
                align-self: flex-start;
                display: inline-flex;
                align-items: center;
                gap: 7px;
                font-size: 10px;
                font-weight: 700;
                letter-spacing: 0.14em;
                text-transform: uppercase;
                padding: 6px 11px 6px 9px;
                border-radius: 999px;
                color: #ffffff;
                background: rgba(15,23,42,0.55);
                border: 1px solid rgba(255,255,255,0.18);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
            }
            .short-video-chip::before {
                content: "";
                width: 7px;
                height: 7px;
                border-radius: 50%;
                background: #ef4444;
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
                animation: short-chip-pulse 1.8s ease-out infinite;
            }
            @keyframes short-chip-pulse {
                0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
                70% { box-shadow: 0 0 0 7px rgba(239, 68, 68, 0); }
                100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
            }
            .short-video-play {
                position: relative;
                z-index: 2;
                width: 62px;
                height: 62px;
                margin: auto;
                border-radius: 9999px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                background: #ffffff;
                color: #ef4444;
                box-shadow: 0 14px 32px -10px rgba(0,0,0,0.55);
                transition: transform .35s cubic-bezier(.22,.9,.3,1), background .3s ease, color .3s ease;
            }
            .short-video-play svg {
                margin-left: 3px;
            }
            .short-card:hover .short-video-play {
                transform: scale(1.12);
                background: #ef4444;
                color: #ffffff;
            }
            .short-video-copy {
                position: relative;
                z-index: 2;
                display: flex;
                flex-direction: column;
                gap: 2px;
            }
            .short-video-copy strong {
                font-size: 0.95rem;
                font-weight: 700;
                letter-spacing: -0.01em;
                text-shadow: 0 2px 8px rgba(0,0,0,0.45);
            }
            .short-video-copy span {
                font-size: 0.75rem;
                line-height: 1.4;
                color: rgba(255,255,255,0.85);
                text-shadow: 0 1px 4px rgba(0,0,0,0.45);
            }
            .shorts-btn {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 48px;
                height: 48px;
                border-radius: 9999px;
                background: #ffffff;
                border: 1px solid rgba(21,98,138,0.18);
                color: #15628a;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                box-shadow: 0 14px 28px -16px rgba(15,23,42,0.45);
                transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
                z-index: 5;
            }
            .shorts-btn--prev { left: 8px; }
            .shorts-btn--next { right: 8px; }
            .shorts-btn:hover {
                background: linear-gradient(135deg, #15628a 0%, #14202e 100%);
                border-color: transparent;
                color: #ffffff;
                transform: translateY(-50%) scale(1.08);
                box-shadow: 0 18px 32px -12px rgba(21,98,138,0.55);
            }
            .shorts-btn:focus-visible {
                outline: 2px solid #15628a;
                outline-offset: 3px;
            }
            @media (max-width: 1024px) {
                .shorts-carousel { padding: 0 52px; }
            }
            @media (max-width: 640px) {
                .shorts-carousel { padding: 0 12px; }
                .shorts-btn { width: 40px; height: 40px; }
                .shorts-btn--prev { left: 6px; }
                .shorts-btn--next { right: 6px; }
                .short-card { width: 230px; }
                .short-card iframe, .short-video-trigger { height: 410px; }
                .short-video-play { width: 54px; height: 54px; }
            }
            @media (max-width: 768px) {
                .hero-proof-card,
                .hero-form-shell,
                #heroFormContainer,
                #popupFormContainer,
                #brochureFormContainer { min-height: 0; }
            }

            /* RFQ response strip (hero form) */
            .next-batch-strip {
                display: flex;
                align-items: center;
                gap: 10px;
                background: linear-gradient(90deg, #fff7ed 0%, #fef2f2 100%);
                border: 1px solid #fde4bf;
                border-radius: 12px;
                padding: 8px 12px;
                margin-bottom: 12px;
            }
            .next-batch-strip .batch-pulse {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: #ef4444;
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
                animation: short-chip-pulse 1.8s ease-out infinite;
                flex-shrink: 0;
            }
            .next-batch-strip .batch-text {
                display: flex;
                flex-direction: column;
                line-height: 1.3;
                min-width: 0;
            }
            .next-batch-strip .batch-text strong {
                font-size: 12.5px;
                font-weight: 700;
                color: #c2410c;
            }
            .next-batch-strip .batch-seats {
                font-size: 11.5px;
                color: #9a3412;
                font-weight: 500;
            }

            /* Sticky mobile CTA bar */
            .sticky-cta-bar { display: none; }
            @media (max-width: 767px) {
                .sticky-cta-bar {
                    display: flex;
                    position: fixed;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    z-index: 9000;
                    gap: 8px;
                    padding: 8px 10px;
                    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0));
                    background: rgba(255, 255, 255, 0.97);
                    backdrop-filter: blur(12px);
                    -webkit-backdrop-filter: blur(12px);
                    border-top: 1px solid rgba(15, 23, 42, 0.08);
                    box-shadow: 0 -10px 28px -12px rgba(15, 23, 42, 0.18);
                }
                .sticky-cta-btn {
                    flex: 1;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    gap: 6px;
                    padding: 11px 6px;
                    border-radius: 12px;
                    font-size: 12.5px;
                    font-weight: 700;
                    text-decoration: none;
                    transition: transform 0.15s ease, box-shadow 0.2s ease;
                    line-height: 1;
                }
                .sticky-cta-btn svg {
                    width: 16px;
                    height: 16px;
                    flex-shrink: 0;
                }
                .sticky-cta-btn:active { transform: scale(0.97); }
                .sticky-cta-call {
                    background: #f1f5f9;
                    color: #0f172a;
                }
                .sticky-cta-wa {
                    background: #25D366;
                    color: #ffffff;
                }
                .sticky-cta-apply {
                    background: linear-gradient(135deg, #15628a 0%, #14202e 100%);
                    color: #ffffff;
                    flex: 1.5;
                    box-shadow: 0 8px 18px -8px rgba(21, 98, 138, 0.5);
                }
                /* Hide right-side floating buttons on mobile (replaced by sticky bar) */
                .floating-contact-stack { display: none !important; }
                /* Avoid sticky bar covering last content */
                body { padding-bottom: 68px; }
            }
            @media (prefers-reduced-motion: reduce) {
                .ticker-track,
                .live-dot,
                .placement-slider-track { animation: none !important; }
                .popup-card,
                .drawer-panel,
                .short-card,
                .shorts-btn,
                .stat-card,
                .tech-card { transition-duration: 0.01ms !important; }
            }

/* ===== SMEC RFQ form (API submission) — light theme ===== */
.rfq-form textarea.demo-form-input { min-height: 84px; resize: vertical; line-height: 1.5; }
.file-drop {
    border: 1.5px dashed #cbd5e1; border-radius: 12px; padding: 14px;
    text-align: center; background: #f8fafc; transition: border-color .2s ease, background .2s ease;
}
.file-drop:hover { border-color: #15628a; background: #f1f6fb; }
.file-drop p { margin: 0 0 6px; font-size: 13px; font-weight: 600; color: #334155; }
.file-drop input[type="file"] { width: 100%; font-size: 12px; color: #64748b; }
.file-drop input[type="file"]::file-selector-button {
    margin-right: 10px; padding: 6px 12px; border: 1px solid #cbd5e1; border-radius: 8px;
    background: #fff; color: #15628a; font-weight: 600; font-size: 12px; cursor: pointer;
}
.file-drop small { display: block; margin-top: 6px; font-size: 11px; color: #94a3b8; }
.rfq-consent {
    display: flex; gap: 10px; align-items: flex-start; margin: 14px 0 4px;
    font-size: 12px; color: #64748b; line-height: 1.5; cursor: pointer;
}
.rfq-consent input { margin-top: 3px; width: 15px; height: 15px; accent-color: #15628a; flex-shrink: 0; }
.demo-form-input.error { border-color: #dc2626 !important; box-shadow: 0 0 0 3px rgba(220, 38, 38, .12) !important; }
.rfq-consent input.error { outline: 2px solid #dc2626; outline-offset: 2px; }
.form-feedback { font-size: 13px; margin: 8px 0 0; border-radius: 8px; }
.form-feedback.error { color: #b91c1c; background: #fef2f2; border: 1px solid #fecaca; padding: 8px 10px; }
.form-feedback.success { color: #15803d; background: #f0fdf4; border: 1px solid #bbf7d0; padding: 8px 10px; }

/* ===== Cinematic media bands (industrial image-placement style) ===== */
.media-band-wrap { padding: 26px 0 6px; }
.media-band {
    width: min(1280px, calc(100% - 32px)); margin: 0 auto; position: relative;
    aspect-ratio: 21 / 7; border-radius: 22px; overflow: hidden;
    border: 1px solid #e2e8f0; box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14); isolation: isolate;
}
.media-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.9s ease; }
.media-band:hover img { transform: scale(1.04); }
.media-band::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(20, 32, 46, 0.22) 0%, rgba(20, 32, 46, 0.04) 42%, rgba(20, 32, 46, 0.82) 100%);
}
.media-caption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: clamp(18px, 3vw, 40px); }
.media-caption .media-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #fcd9a0; background: rgba(245, 158, 11, 0.18); border: 1px solid rgba(245, 158, 11, 0.42); padding: 4px 11px; border-radius: 999px; }
.media-caption h3 { margin: 0; max-width: 26ch; color: #fff; font-family: 'Saira', sans-serif; font-weight: 700; font-size: clamp(1.1rem, 2.2vw, 1.9rem); line-height: 1.18; text-shadow: 0 2px 22px rgba(1, 7, 16, 0.55); }
@media (max-width: 860px) { .media-band { aspect-ratio: 16 / 9; } }
@media (max-width: 560px) { .media-band { aspect-ratio: 4 / 3; } }
@media (prefers-reduced-motion: reduce) { .media-band:hover img { transform: none; } }

/* ======================================================================
   INDUSTRIAL × SAAS POLISH LAYER
   Depth, blueprint texture, gradient accents, micro-interactions.
   Light theme · steel-blue #15628a + amber #f59e0b + slate.
   ====================================================================== */

/* Gradient text */
.text-gradient-steel {
    background: linear-gradient(115deg, #15628a 0%, #2f86b8 48%, #14202e 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
}

/* ---- Hero: engineering blueprint grid + gradient mesh ---- */
.hero-bg {
    position: relative;
    background: linear-gradient(135deg, #f9fcff 0%, #eaf3f9 52%, #fdf6ea 100%);
    overflow: hidden;
}
.hero-bg::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image:
        linear-gradient(rgba(21, 98, 138, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 98, 138, 0.07) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(125% 85% at 28% 0%, #000 30%, transparent 80%);
    mask-image: radial-gradient(125% 85% at 28% 0%, #000 30%, transparent 80%);
}
.hero-bg::after {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background:
        radial-gradient(440px 340px at 6% 16%, rgba(21, 98, 138, 0.14), transparent 70%),
        radial-gradient(380px 320px at 94% 6%, rgba(245, 158, 11, 0.12), transparent 70%);
    animation: heroDrift 16s ease-in-out infinite;
}
.hero-bg > * { position: relative; z-index: 1; }
@keyframes heroDrift { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -14px, 0); } }

/* hero badge → glassy pill */
.hero-bg .inline-flex.bg-white.shadow-md.rounded-3xl {
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    box-shadow: 0 4px 18px rgba(21, 98, 138, 0.12);
}

/* ---- Form card: glassy, layered, accent edge ---- */
.hero-form-shell {
    position: relative;
    background: rgba(255, 255, 255, 0.94);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    box-shadow: 0 28px 64px -22px rgba(15, 38, 64, 0.34), 0 2px 10px rgba(15, 38, 64, 0.06);
}
.hero-form-shell::before {
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
    border-radius: 28px 28px 0 0;
    background: linear-gradient(90deg, #15628a, #2f86b8 45%, #f59e0b);
}

/* ---- Primary buttons: steel gradient + moving sheen ---- */
.btn-apply-now, a.button, .button {
    background: linear-gradient(135deg, #1a6fa0 0%, #15628a 55%, #0f4a6b 100%) !important;
    position: relative; overflow: hidden;
}
.btn-apply-now::after {
    content: ""; position: absolute; top: 0; left: -65%; width: 45%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
    transform: skewX(-20deg); transition: left 0.6s ease; pointer-events: none;
}
.btn-apply-now:hover::after { left: 130%; }

/* ---- Eyebrow chips: refine + fix leftover teal ---- */
.a11y-chip-green { color: #b45309; background: rgba(245, 158, 11, 0.13); }
.a11y-chip-blue, .a11y-chip-green { box-shadow: inset 0 0 0 1px rgba(21, 98, 138, 0.05); }

/* ---- Section depth ---- */
section.bg-slate-50 {
    background:
        radial-gradient(rgba(21, 98, 138, 0.045) 1px, transparent 1px) 0 0 / 23px 23px,
        linear-gradient(180deg, #f9fbfe 0%, #f3f7fb 100%);
}
section.bg-white.border-t { border-top-color: transparent !important; position: relative; }
section.bg-white.border-t::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 98, 138, 0.2) 24%, rgba(245, 158, 11, 0.2) 76%, transparent);
}

/* ---- Card hover-lift (scoped to main card sections) ---- */
#why-smec .rounded-3xl, #placements .rounded-2xl, #reviews .rounded-2xl,
#gallery .rounded-xl, .curr-item, .short-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#why-smec .bg-slate-50.rounded-3xl:hover,
#placements .bg-white.rounded-2xl:hover,
#reviews .group.bg-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -18px rgba(15, 38, 64, 0.28);
    border-color: rgba(21, 98, 138, 0.28);
}
#gallery .rounded-xl:hover { box-shadow: 0 16px 36px -16px rgba(15, 38, 64, 0.3); }
.curr-item:hover { border-color: rgba(21, 98, 138, 0.3); box-shadow: 0 10px 26px -14px rgba(15, 38, 64, 0.22); }

/* ---- CTA banner: subtle blueprint glow ---- */
section.py-14.text-white { position: relative; overflow: hidden; }
section.py-14.text-white::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.55;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    -webkit-mask-image: radial-gradient(120% 130% at 50% 0%, #000 28%, transparent 75%);
    mask-image: radial-gradient(120% 130% at 50% 0%, #000 28%, transparent 75%);
}
section.py-14.text-white > * { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
    .hero-bg::after { animation: none; }
    .btn-apply-now::after { transition: none; }
}

/* ===== Clients & Partners logo marquee (from industrial-control-panels, light theme) ===== */
.cp-grid { display: grid; gap: 36px; margin-top: 8px; }
.cp-grid > div { min-width: 0; }
.partner-logo-capsule {
    display: inline-flex; align-items: center; justify-content: center;
    width: 170px; height: 64px; padding: 10px 20px; border-radius: 16px;
    background: #ffffff; border: 1px solid #d6dfea;
    box-shadow: 0 1px 2px rgba(15, 38, 64, 0.05), 0 10px 22px -12px rgba(15, 38, 64, 0.26);
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.partner-logo-capsule:hover {
    transform: translateY(-3px);
    box-shadow: 0 2px 4px rgba(15, 38, 64, 0.06), 0 16px 32px -14px rgba(21, 98, 138, 0.34);
    border-color: rgba(21, 98, 138, 0.45);
}
.partner-logo-capsule img { max-width: 100%; max-height: 38px; width: auto; object-fit: contain; display: block; margin: auto; }
@keyframes cp-marquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 8px)); } }
@keyframes cp-marquee-reverse { from { transform: translateX(calc(-50% - 8px)); } to { transform: translateX(0); } }
.client-marquee-wrap {
    display: flex; flex-direction: column; gap: 14px; overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 110px, #000 calc(100% - 110px), transparent);
    mask-image: linear-gradient(to right, transparent, #000 110px, #000 calc(100% - 110px), transparent);
}
.client-marquee-row { display: flex; width: max-content; gap: 16px; animation: cp-marquee 90s linear infinite; }
.client-marquee-row.reverse { animation-name: cp-marquee-reverse; }
.client-marquee-row.slow { animation-duration: 110s; }
.client-marquee-row .partner-logo-capsule { width: 152px; height: 60px; }
.client-marquee-row .partner-logo-capsule img { max-height: 32px; }
.partner-marquee-row { display: flex; width: max-content; gap: 16px; animation: cp-marquee 60s linear infinite; }
.partner-marquee-row.reverse { animation-name: cp-marquee-reverse; }
.partner-marquee-row .partner-logo-capsule { width: 178px; height: 66px; }
.partner-marquee-row .partner-logo-capsule img { max-height: 40px; }
.client-marquee-wrap:hover .client-marquee-row,
.client-marquee-wrap:hover .partner-marquee-row { animation-play-state: paused; }
@media (max-width: 640px) {
    .partner-logo-capsule { padding: 8px 14px; }
    .client-marquee-row .partner-logo-capsule { width: 132px; height: 52px; }
    .client-marquee-row .partner-logo-capsule img { max-height: 28px; }
    .partner-marquee-row .partner-logo-capsule { width: 150px; height: 58px; }
    .partner-marquee-row .partner-logo-capsule img { max-height: 32px; }
}
@media (prefers-reduced-motion: reduce) {
    .client-marquee-row, .partner-marquee-row { animation: none; }
}
