/* ============================================================
   MediNova — single stylesheet
   1) GLOBAL  (header, footer, home page)
   2) LANDING (scoped to body.page-landing)
   3) PRODUCT (scoped to body.page-product)
   ============================================================ */

/* ---------- 1. GLOBAL ---------- */
:root {
    --brand: #0a5cad;
      --brand-2: #1ea7e0;
      --brand-deep: #063e75;
      --ink: #0b1f3a;
      --muted: #5b6b85;
      --bg: #eef5ff;
      --grad: linear-gradient(135deg, #0a5cad 0%, #1ea7e0 100%);
      --grad-soft: linear-gradient(135deg, rgba(10, 92, 173, .08), rgba(30, 167, 224, .06));
      --shadow: 0 10px 30px -10px rgba(10, 92, 173, .25);
      --shadow-lg: 0 25px 60px -20px rgba(10, 92, 173, .45);
    --brand: 199 100% 47%;
    --brand-deep: 199 100% 35%;
    --brand-glow: 199 100% 68%;
    --background: 204 100% 97%;
    --foreground: 205 63% 11%;
    --border: 199 100% 90%;
    --accent: 199 100% 92%;
    --destructive: 0 84% 60%;
    --ink: 205 63% 11%;
    --ink-muted: 200 17% 43%;
    --radius: 1.125rem;
    --gradient-primary: linear-gradient(135deg, hsl(199 100% 47%) 0%, hsl(199 100% 68%) 100%);
    --gradient-soft: linear-gradient(180deg, hsl(204 100% 96%) 0%, hsl(0 0% 100%) 60%);
    --gradient-overlay: linear-gradient(135deg, hsl(199 100% 35% / 0.85), hsl(205 63% 11% / 0.92));
    --glass-bg: hsl(0 0% 100% / 0.55);
    --glass-bg-strong: hsl(0 0% 100% / 0.78);
    --glass-border: hsl(0 0% 100% / 0.65);
    --glass-shadow: 0 10px 40px hsl(199 100% 35% / 0.18);
    --glass-dark-bg: hsl(205 63% 11% / 0.45);
    --glass-dark-border: hsl(0 0% 100% / 0.18);
    --shadow-glow: 0 20px 60px -10px hsl(199 100% 47% / 0.45);
    --shadow-card: 0 10px 30px -8px hsl(205 63% 11% / 0.12);
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
    --blue: #00adef;
    --blue-dark: #0088c7;
    --blue-deeper: #005a8e;
    --blue-light: #e0f5ff;
    --white: #ffffff;
    --off-white: #f4faff;
    --text-dark: #0d1b2a;
    --text-mid: #2c4a6e;
    --text-light: #6a8cac;
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.25);
    --shadow: 0 20px 60px rgba(0, 122, 210, 0.15);
    --shadow-sm: 0 4px 20px rgba(0, 122, 210, 0.10);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    --header-h: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
}

.glass-strong {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
}

.glass-dark {
    background: var(--glass-dark-bg);
    backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius);
    color: #fff;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: gradient-pan 6s ease infinite;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: hsl(var(--brand));
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background: hsl(var(--brand));
}

.container-x {
    width: min(1200px, 92%);
    margin-left: auto;
    margin-right: auto;
}

.about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    overflow: hidden;
}

.about-img-frame:hover img {
    transform: scale(1.04);
}

.section-pad {
    padding: clamp(50px, 9vw, 80px) 0;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-soft {
    background: var(--gradient-soft);
}

.bg-gradient-overlay {
    background: var(--gradient-overlay);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

.shadow-card {
    box-shadow: var(--shadow-card);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    scrollbar-width: none;
}

@keyframes float {

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

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

@keyframes pulse-soft {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(.95);
        opacity: .7;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slow-zoom {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.12);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes gradient-pan {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-soft {
    animation: pulse-soft 2s ease-in-out infinite;
}

.animate-spin-slow {
    animation: spin-slow 22s linear infinite;
}

.animate-marquee {
    animation: marquee 28s linear infinite;
}

.animate-fade-up {
    animation: fade-up .8s var(--ease) both;
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}

html.reveal-ready .reveal:not(.in) {
    opacity: 0;
    transform: translateY(26px);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* Floating-label inputs */
.field {
    position: relative;
    display: block;
}

.field input,
.field textarea {
    width: 100%;
    padding: 1.5rem 1rem .5rem;
    border-radius: .75rem;
    background: #fff;
    border: 1px solid hsl(var(--border));
    outline: none;
    transition: all .2s;
    font-size: 1rem;
    color: hsl(var(--ink));
}

.field textarea {
    resize: none;
}

.field input:focus,
.field textarea:focus {
    border-color: hsl(var(--brand));
    box-shadow: 0 0 0 3px hsl(var(--brand) / .25);
}

.field label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    pointer-events: none;
    color: hsl(var(--ink-muted));
    font-size: 1rem;
    transition: all .2s;
}

.field input:focus+label,
.field textarea:focus+label,
.field input:not(:placeholder-shown)+label,
.field textarea:not(:placeholder-shown)+label {
    top: .375rem;
    font-size: .75rem;
    color: hsl(var(--brand));
}

.field .err {
    color: hsl(var(--destructive));
    font-size: .75rem;
    margin-top: .25rem;
    display: block;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 173, 239, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 173, 239, 0.45);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 44px;
    box-shadow: 0 20px 60px rgba(0, 122, 210, 0.15);
    border: 1px solid rgba(0, 173, 239, 0.08);
}

.contact-form-wrap h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form-wrap p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

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

.form-group {
    position: relative;
    margin-bottom: 22px;
}

.form-group label {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 0.87rem;
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition);
    background: transparent;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 22px 16px 10px;
    border: 2px solid rgba(0, 173, 239, 0.15);
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--off-white);
    outline: none;
    transition: var(--transition);
    resize: none;
}

.form-group textarea {
    padding-top: 24px;
    height: 130px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    border-color: var(--blue);
    background: #fff;
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: 6px;
    font-size: 0.72rem;
    color: var(--blue);
}

.form-group .error-msg {
    display: none;
    font-size: 0.72rem;
    color: #e74c3c;
    margin-top: 5px;
    padding-left: 4px;
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #e74c3c;
}

.form-group.has-error .error-msg {
    display: block;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success .success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e8f8f0;
    color: #27ae60;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }

    80% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.form-success h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== Global presence map ===== */
#world-svg .country-marker {
    cursor: pointer;
}

#world-svg .country-marker .pulse-ring {
    transform-origin: center;
    transform-box: fill-box;
    animation: ringPulse 2.6s ease-in-out infinite;
}

#world-svg .country-marker .country-label {
    transition: transform .25s ease, opacity .25s ease;
    transform-origin: center;
    transform-box: fill-box;
}

#world-svg .country-marker:hover .country-label,
#world-svg .country-marker.is-active .country-label {
    transform: translateY(-2px) scale(1.08);
}

#world-svg .country-marker:hover .pulse-ring,
#world-svg .country-marker.is-active .pulse-ring {
    animation-duration: 1.2s;
}

@keyframes ringPulse {

    0%,
    100% {
        opacity: .25;
        transform: scale(.7);
    }

    50% {
        opacity: .85;
        transform: scale(1.4);
    }
}

/* Animated route line draw */
#world-svg .route-line {
    stroke-dasharray: 6 8;
    animation: dashFlow 1.6s linear infinite;
}

@keyframes dashFlow {
    to {
        stroke-dashoffset: -28;
    }
}

/* Travelling signal dot along each route */
#world-svg .signal-dot {
    fill: hsl(199 100% 47%);
    filter: drop-shadow(0 0 4px hsl(199 100% 60% / .9));
}

#world-svg .country-marker .pin-core {
    transition: transform .25s ease;
    transform-origin: center;
    transform-box: fill-box;
}

#world-svg .country-marker:hover .pin-core,
#world-svg .country-marker.is-active .pin-core {
    transform: scale(1.35);
}

/* ===== News & Events (screenshot layout) ===== */
.news-feature {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 122, 210, 0.10);
    border: 1px solid rgba(0, 173, 239, 0.10);
    transition: var(--transition);
}

.news-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(0, 122, 210, .18);
}

.news-feature-media {
    position: relative;
    aspect-ratio: 16 / 7;
    background: linear-gradient(135deg, #00adef 0%, #0088c7 100%);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.news-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-feature-play {
    position: absolute;
    width: 84px;
    height: 84px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .45);
    display: grid;
    place-items: center;
    color: #fff;
    transition: var(--transition);
    cursor: pointer;
}

.news-feature:hover .news-feature-play {
    transform: scale(1.08);
    background: rgba(255, 255, 255, .35);
}

.news-feature-body {
    padding: 20px 20px 20px;
}

.news-feature-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00adef;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.news-feature-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(1.25rem, 1.6vw, 1.6rem);
    color: #0d1b2a;
    line-height: 1.25;
    margin-bottom: 14px;
}

.news-feature-desc {
    color: #4a6580;
    line-height: 1.7;
    font-size: 0.95rem;
}

.event-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    background: #fff;
    border-radius: 18px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 173, 239, 0.12);
    box-shadow: 0 6px 20px rgba(0, 122, 210, 0.06);
    transition: var(--transition);
}

.event-item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 173, 239, 0.45);
    box-shadow: 0 14px 30px rgba(0, 122, 210, 0.14);
}

.event-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e0f5ff 0%, #c7ecff 100%);
    display: grid;
    place-items: center;
    color: #00adef;
}

.event-icon svg {
    width: 26px;
    height: 26px;
}

.event-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #0d1b2a;
    font-size: 1rem;
    margin-bottom: 6px;
}

.event-desc {
    color: #5d7a96;
    font-size: 0.88rem;
    line-height: 1.55;
}

/* News video positioning + pulse ring */
.news-feature-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.news-feature-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.35);
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.news-feature-media.playing::before {
    opacity: 0;
}

.news-feature-play {
    z-index: 2;
    transition: opacity .35s ease, transform .35s ease, background .35s ease;
}

.news-feature-media.playing .news-feature-play {
    opacity: 0;
    pointer-events: none;
    transform: scale(.6);
}

.news-pulse-ring {
    position: absolute;
    inset: -6px;
    border-radius: 28px;
    border: 2px solid rgba(255, 255, 255, .6);
    animation: pulse-ring 2s infinite;
}

.news-feature-media.playing video {
    cursor: default;
}

/* ===== Custom cursor follower ===== */
@media (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
    }

    a,
    button,
    input,
    textarea,
    select,
    [role="button"],
    .cursor-pointer {
        cursor: none;
    }

    .cursor-dot,
    .cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9999;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        will-change: transform;
    }

    .cursor-dot {
        width: 8px;
        height: 8px;
        background: hsl(var(--brand));
        box-shadow: 0 0 12px hsl(var(--brand) / 0.8);
        transition: width .2s ease, height .2s ease, background .2s ease;
    }

    .cursor-ring {
        width: 38px;
        height: 38px;
        border: 1.5px solid hsl(var(--brand) / 0.55);
        backdrop-filter: blur(2px);
        transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease;
    }

    .cursor-ring.is-hover {
        width: 60px;
        height: 60px;
        border-color: hsl(var(--brand));
        background: hsl(var(--brand) / 0.08);
    }

    .cursor-dot.is-hover {
        width: 4px;
        height: 4px;
    }
}

/* ============ GSAP smooth scroll decorations ============ */
.section-pad {
    position: relative;
}

/* Animation elements stay visible by default; scripts only animate when safe */
.gsap-reveal {
    opacity: 1;
    will-change: transform, opacity;
}

.gsap-stagger>* {
    opacity: 1;
    will-change: transform, opacity;
}

/* Decorative animated wave divider above sections */
.section-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 70px;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
    z-index: 1;
}

.section-wave svg {
    width: 200%;
    height: 100%;
    display: block;
    animation: waveSlide 18s linear infinite;
}

.section-wave.flip svg {
    transform: scaleY(-1);
}

@keyframes waveSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Animated decorative lines that draw on scroll */
.deco-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.deco-lines svg {
    width: 100%;
    height: 100%;
}

.deco-lines path {
    fill: none;
    stroke: hsl(var(--brand) / 0.18);
    stroke-width: 1.2;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
}

/* Floating ambient orbs */
.ambient-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

/* Smooth scroll feel */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .section-wave svg {
        animation: none;
    }
}

/* Make sure section content sits above decorations */
section>.container,
section>div {
    position: relative;
    z-index: 2;
}



/* ===========================
       PAGE LOADER
    =========================== */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(135deg, var(--blue-deeper), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    letter-spacing: 2px;
}

.loader-logo span {
    color: rgba(255, 255, 255, 0.5);
}

.loader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    width: 0;
    background: #fff;
    border-radius: 2px;
    animation: loadFill 1.8s ease forwards;
}

/* ===== R&D cards ===== */
.rnd-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .18);
    transition: transform .5s cubic-bezier(.2, .7, .2, 1), box-shadow .5s;
}

.rnd-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform .8s;
}

.rnd-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px -20px rgba(0, 0, 0, .5);
}

.rnd-card:hover img {
    transform: scale(1.1);
}

.rnd-card-body {
    padding: 1rem 1.25rem 1.25rem;
}

.rnd-card-body h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: .25rem;
    color: #fff;
}

.rnd-card-body p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.45;
}

/* ===== Featured product / category cards ===== */
.fp-card,
.ps-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px -15px rgba(0, 90, 150, .25);
    border: 1px solid rgba(0, 173, 239, .12);
    cursor: pointer;
    transition: transform .5s cubic-bezier(.2, .7, .2, 1), box-shadow .5s;
    display: flex;
    flex-direction: column;
}

@media(min-width:640px) {

    .fp-card,
    .ps-card {
        flex-basis: 340px;
    }
}

.fp-card:hover,
.ps-card:hover {
    transform: translateY(-10px) rotate(-.4deg);
    box-shadow: 0 30px 60px -25px rgba(0, 90, 150, .45);
}

.fp-media,
.ps-media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f7ff, #fff);
}

.fp-media img,
.ps-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s;
}

.fp-card:hover .fp-media img,
.ps-card:hover .ps-media img {
    transform: scale(1.12);
}

.fp-tag,
.ps-tag {
    position: absolute;
    top: .85rem;
    left: .85rem;
    padding: .3rem .7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: hsl(var(--brand));
}

.fp-body,
.ps-body {
    padding: 1.25rem 1.4rem 1.5rem;
}

.fp-body h4,
.ps-body h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: .35rem;
}

.fp-body p,
.ps-body p {
    font-size: .85rem;
    color: hsl(var(--ink-muted));
    line-height: 1.5;
    margin-bottom: .85rem;
}

.fp-cta,
.ps-cta {
    font-size: .8rem;
    font-weight: 700;
    color: hsl(var(--brand));
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

/* ===== Infrastructure tiles ===== */
.infra-tile {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 173, 239, .12);
    box-shadow: 0 10px 30px -18px rgba(0, 90, 150, .25);
    transition: transform .5s, box-shadow .5s;
}

.infra-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -20px rgba(0, 90, 150, .4);
}

.infra-tile img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .8s;
}

.infra-tile:hover img {
    transform: scale(1.08);
}

.infra-tile-body {
    padding: 1.1rem 1.3rem 1.4rem;
}

.infra-tile-body h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: .3rem;
}

.infra-tile-body p {
    font-size: .85rem;
    color: hsl(var(--ink-muted));
    line-height: 1.5;
}

/* ===== Modal ===== */
.mn-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.mn-modal.open {
    display: flex;
    animation: mnFade .25s ease-out;
}

.mn-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 28, 48, .78);
    backdrop-filter: blur(8px);
}

.mn-modal-card {
    position: relative;
    background: #fff;
    border-radius: 1.75rem;
    max-width: 960px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .55);
    animation: mnPop .45s cubic-bezier(.2, .8, .2, 1.05);
}

@keyframes mnFade {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes mnPop {
    from {
        transform: scale(.85) translateY(20px);
        opacity: 0
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1
    }
}

.mn-modal-close {
    position: absolute;
    top: .85rem;
    right: .85rem;
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    transition: transform .2s;
}

.mn-modal-close:hover {
    transform: rotate(90deg);
}

.mn-modal-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow: auto;
}

@media(min-width:768px) {
    .mn-modal-grid {
        grid-template-columns: 1.05fr 1fr;
    }
}

.mn-modal-media {
    position: relative;
    background: linear-gradient(135deg, #e8f7ff, #fff);
    min-height: 280px;
    overflow: hidden;
}

.mn-modal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: mnZoom .8s ease-out;
}

@keyframes mnZoom {
    from {
        transform: scale(1.15);
        opacity: .4
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.mn-modal-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .4rem .9rem;
    border-radius: 999px;
    background: hsl(var(--brand));
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mn-modal-body {
    padding: 1.75rem 1.85rem 2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.mn-modal-eyebrow {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: hsl(var(--brand));
}

#mn-modal-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    line-height: 1.2;
}

#mn-modal-desc {
    color: hsl(var(--ink-muted));
    font-size: .95rem;
    line-height: 1.6;
}

.mn-modal-features {
    list-style: none;
    padding: 0;
    margin: .5rem 0;
    display: grid;
    gap: .4rem;
}

.mn-modal-features li {
    font-size: .85rem;
    padding-left: 1.4rem;
    position: relative;
    color: hsl(var(--ink));
}

.mn-modal-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 999px;
    background: hsl(var(--brand));
    color: #fff;
    font-size: .7rem;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.mn-modal-cta {
    margin-top: auto;
    display: inline-flex;
    align-self: flex-start;
    padding: .85rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, hsl(var(--brand)), hsl(var(--brand-deep)));
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 28px -10px rgba(0, 173, 239, .6);
    transition: transform .25s;
}

.mn-modal-cta:hover {
    transform: translateY(-2px);
}

/* ── Hero dark theme overrides ── */
#home {
    background: #04111c !important;
}

/* ── Video layer ── */
.hero-vid-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-vid-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.32) saturate(1.4);
    animation: slow-zoom 24s ease-in-out infinite alternate;
}

/* ── Layered overlays ── */
.hero-overlay-brand {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

}

.hero-overlay-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

}

/* ── Animated grid ── */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0, 173, 239, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 173, 239, 0.07) 1px, transparent 1px);
    background-size: 64px 64px;
    animation: gridDrift 22s linear infinite;
}

@keyframes gridDrift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 64px 64px;
    }
}

/* ── Glow orbs ── */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
    z-index: 2;
}

.hero-orb-1 {
    width: 560px;
    height: 560px;
    top: -120px;
    left: -160px;
    background: rgba(0, 173, 239, 0.22);
    animation: animate-float 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 480px;
    height: 480px;
    bottom: -80px;
    right: -120px;
    background: rgba(0, 136, 199, 0.18);
    animation: animate-float 10s ease-in-out infinite;
    animation-delay: 2.5s;
}

/* ── Scan line sweep ── */
.hero-scanline {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hero-scanline::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 173, 239, 0.55), transparent);
    animation: scanSweep 5s linear infinite;
}

@keyframes scanSweep {
    0% {
        top: -2px;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* ── Hero content layout ── */
.hero-inner {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    min-height: 85vh;
    padding: 150px 7% 80px;
    align-items: center;

}

/* ── Badge ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(0, 173, 239, 0.28);
    backdrop-filter: blur(14px);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #00adef;
    width: fit-content;
    margin-bottom: 28px;
    animation: fadeUp 0.7s 0.2s both;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00adef;
    box-shadow: 0 0 8px #00adef;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.25
    }
}

/* ── Headline ── */
.hero-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 10px;
    animation: fadeUp 0.8s 0.35s both;
}

/* ── Typewriter (two static words on line 1, rotating word on line 2) ── */
.hero-typewriter-wrap {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.2rem, 4.8vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin: 0 auto 28px;
    animation: fadeUp 0.8s 0.45s both;
    display: block;
    text-align: center;
    /* Reserve space for both lines so nothing reflows */
    min-height: 2.4em;
    will-change: contents;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-static-line {
    color: #ffffff;
    display: block;
    white-space: nowrap;
}

.hero-typed-line {
    display: block;
    white-space: nowrap;
    min-height: 1.2em;
    margin-top: 0.1em;
}

#hero-typed {
    color: #00adef;
    text-shadow: 0 0 40px rgba(0, 173, 239, 0.5);
    display: inline;
    white-space: pre;
}

.hero-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: #00adef;
    margin-left: 4px;
    border-radius: 2px;
    vertical-align: -0.08em;
    animation: cursorBlink 0.85s step-end infinite;
    box-shadow: 0 0 10px rgba(0, 173, 239, 0.8);
    transform: translateZ(0);
}

@media (max-width: 640px) {
    .hero-typewriter-wrap {
        min-height: 2.6em;
    }

    .hero-typed-line {
        white-space: normal;
    }
}

@keyframes cursorBlink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

/* ── Sub text ── */
.hero-sub {
    font-size: 1.05rem;
    color: rgba(180, 215, 240, 0.85);
    max-width: 560px;
    line-height: 1.75;
    font-weight: 300;
    margin: 0 auto;
    animation: fadeUp 0.8s 0.6s both;
}

/* ── Buttons ── */
.hero-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeUp 0.8s 0.75s both;
    margin-bottom: 60px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, #00adef, #0088c7);
    color: #fff;
    font-weight: 700;
    font-size: 0.93rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 32px rgba(0, 173, 239, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-decoration: none;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 52px rgba(0, 173, 239, 0.55), 0 12px 32px rgba(0, 0, 0, 0.4);
}

.hero-btn-primary .btn-arrow {
    transition: transform 0.3s;
}

.hero-btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 30px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(0, 173, 239, 0.3);
    color: #fff;
    font-weight: 600;
    font-size: 0.93rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    backdrop-filter: blur(12px);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.35s, border-color 0.35s, transform 0.35s;
}

.hero-btn-ghost:hover {
    background: rgba(0, 173, 239, 0.14);
    border-color: #00adef;
    transform: translateY(-3px);
}

/* ── Stats row ── */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeUp 0.8s 0.95s both;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 173, 239, 0.2);
    backdrop-filter: blur(16px);
    padding: 18px 26px;
    border-radius: 16px;
    text-align: center;
    min-width: 110px;
    transition: border-color 0.3s, transform 0.3s;
}

.hero-stat:hover {
    border-color: #00adef;
    transform: translateY(-4px);
}

.hero-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: #00adef;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 173, 239, 0.4);
}

.hero-stat-lbl {
    font-size: 0.7rem;
    color: rgba(160, 205, 230, 0.75);
    margin-top: 5px;
    letter-spacing: 0.4px;
}

/* ── Scroll hint ── */
.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: rgba(0, 173, 239, 0.6);
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: fadeUp 0.8s 1.2s both;
}

.hero-scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, #00adef, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 1;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0;
    }
}

/* ── Shared fade-up ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .hero-inner {
        padding: 120px 5% 60px;
    }

    .hero-stats {
        gap: 10px;
    }

    .hero-stat {
        padding: 14px 18px;
        min-width: 90px;
    }
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

@media(max-width:1024px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.spec-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    aspect-ratio: 5/4;
    box-shadow: 0 10px 30px -12px rgba(0, 60, 120, .25);
    transition: transform .6s cubic-bezier(.2, .8, .2, 1), box-shadow .5s;
    transform-style: preserve-3d;
}

.spec-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px -20px hsl(var(--brand)/.55);
}

.spec-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 20, 40, .55) 65%, rgba(0, 10, 30, .92) 100%);
    transition: opacity .5s;
}

.spec-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: 3;
    border-radius: inherit;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), hsl(var(--brand)/.35), transparent 55%);
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
}

.spec-card:hover::after {
    opacity: 1;
}

.spec-card .spec-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(.2, .8, .2, 1), filter .6s;
    filter: saturate(1.1) brightness(.92);
}

.spec-card:hover .spec-img {
    transform: scale(1.12) rotate(-1deg);
    filter: saturate(1.4) brightness(1.05);
}

.spec-card .spec-pulse {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff3b5c;
    z-index: 4;
    box-shadow: 0 0 0 0 rgba(255, 59, 92, .7);
    animation: specPulse 2s infinite;
}

@keyframes specPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 59, 92, .7);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(255, 59, 92, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 59, 92, 0);
    }
}

.spec-card .spec-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 1.4rem 1.3rem;
    color: #fff;
    transform: translateY(8px);
    transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}

.spec-card:hover .spec-body {
    transform: translateY(0);
}

.spec-card .spec-eye {
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: hsl(var(--brand-glow));
    font-weight: 700;
    margin-bottom: .35rem;
    opacity: .9;
}

.spec-card .spec-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    line-height: 1.1;
    margin-bottom: .4rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.spec-card .spec-desc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .78);
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .55s ease, opacity .4s ease .1s, margin .4s;
}

.spec-card:hover .spec-desc {
    max-height: 120px;
    opacity: 1;
    margin-top: .4rem;
}

.spec-card .spec-cta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: .9rem;
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    padding: .55rem .9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, hsl(var(--brand)), hsl(var(--brand-deep)));
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .4s ease .15s, transform .4s ease .15s, box-shadow .3s;
    box-shadow: 0 8px 24px -8px hsl(var(--brand)/.6);
}

.spec-card:hover .spec-cta {
    opacity: 1;
    transform: translateY(0);
}

.spec-card .spec-cta:hover {
    box-shadow: 0 12px 32px -6px hsl(var(--brand)/.9);
}

.spec-card .spec-num {
    position: absolute;
    top: 14px;
    left: 18px;
    z-index: 4;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
    letter-spacing: .1em;
}

/* shimmer sweep on hover */
.spec-card .spec-shine {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .18) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform .9s ease;
}

.spec-card:hover .spec-shine {
    transform: translateX(120%);
}




    /* SECTIONS */
    .sec {
      padding: 5rem 0
    }

    .sec-head {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 3rem
    }

    .sec-head h2 {
      font-size: clamp(1.9rem, 3.4vw, 3rem);
      font-weight: 800;
      margin: .7rem 0 .8rem
    }

    .sec-head p {
      color: var(--muted);
      font-size: 1.05rem
    }

    /* RANGE OF PRODUCTS - 6 specialty cards (reference style) */
    .range-card {
      background: #fff;
      border: 1px solid rgba(10, 92, 173, .08);
      border-radius: 22px;
      padding: 1rem 1rem;
      text-align: center;
      transition: all .35s cubic-bezier(.2, .8, .2, 1);
      cursor: pointer;
      height: 100%;
      position: relative;
      overflow: hidden
    }

    .range-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--grad);
      opacity: 0;
      transition: opacity .35s;
      z-index: 0
    }

    .range-card>* {
      position: relative;
      z-index: 1
    }

    .range-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
      border-color: transparent
    }

    .range-card:hover::before {
      opacity: 1
    }

    .range-card:hover h5,
    .range-card:hover p,
    .range-card:hover .ricon {
      color: #fff !important
    }

    .range-card:hover .ricon {
      background: rgba(255, 255, 255, .18)
    }

    .ricon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(30, 167, 224, .12);
      display: grid;
      place-items: center;
      margin: 0 auto 1rem;
      color: var(--brand-2);
      transition: all .35s;
      font-size: 1.8rem
    }

    .range-card h5 {
      font-weight: 700;
      font-size: 16px;
      margin-bottom: .4rem;
      color: var(--ink-solid);
      transition: color .35s
    }

    .range-card p {
      color: var(--muted);
      font-size: .85rem;
      margin: 0;
      transition: color .35s
    }

    .range-card.active {
      background: var(--grad);
      border-color: transparent;
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg)
    }

    .range-card.active h5,
    .range-card.active p,
    .range-card.active .ricon {
      color: #fff
    }

    .range-card.active .ricon {
      background: rgba(255, 255, 255, .22)
    }

    /* FILTER BAR */
    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: .6rem;
      justify-content: center;
      margin-bottom: 2.2rem
    }

    .fbtn {
      padding: .65rem 1.25rem;
      border-radius: 999px;
      border: 1.5px solid rgba(10, 92, 173, .18);
      background: #fff;
      color: var(--ink-solid);
      font-weight: 600;
      font-size: .88rem;
      cursor: pointer;
      transition: all .25s
    }

    .fbtn:hover {
      border-color: var(--brand-2);
      color: var(--brand-solid)
    }

    .fbtn.active {
      background: var(--grad);
      border-color: transparent;
      color: #fff;
      box-shadow: var(--shadow)
    }

    .search-wrap {
      max-width: 420px;
      margin: 0 auto 2rem;
      position: relative
    }

    .search-wrap input {
      width: 100%;
      padding: .85rem 1.2rem .85rem 2.8rem;
      border-radius: 999px;
      border: 1.5px solid rgba(10, 92, 173, .18);
      background: #fff;
      font-size: .95rem;
      outline: none;
      transition: border-color .2s
    }

    .search-wrap input:focus {
      border-color: var(--brand-2)
    }

    .search-wrap svg {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted)
    }

    /* PRODUCT CARD */
    .pcard {
      background: #fff;
      border: 1px solid rgba(10, 92, 173, .08);
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      transition: all .35s cubic-bezier(.2, .8, .2, 1);
      height: 100%;
      display: flex;
      flex-direction: column
    }

    .pcard:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(30, 167, 224, .3)
    }

    .pcard .pimg {
      aspect-ratio: 4/3;
      overflow: hidden;
      background: var(--grad-soft);
      position: relative
    }

    .pcard .pimg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s ease
    }

    .pcard:hover .pimg img {
      transform: scale(1.12)
    }

    .pcard .ptag {
      position: absolute;
      top: .8rem;
      left: .8rem;
      padding: .32rem .7rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, .95);
      color: var(--brand-solid);
      font-size: .68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      backdrop-filter: blur(8px)
    }

    .pcard .pbody {
      padding: 1.1rem 1.2rem 1.3rem;
      flex: 1;
      display: flex;
      flex-direction: column
    }

    .pcard h5 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: .3rem;
      line-height: 1.3
    }

    .pcard .pdesc {
      font-size: .83rem;
      color: var(--muted);
      margin-bottom: .9rem;
      flex: 1
    }

    .pcard .pmore {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      color: var(--brand-solid);
      font-weight: 600;
      font-size: .85rem;
      margin-top: auto
    }

    /* Sub-category slider section */
    .subcat-section {
      padding: 3rem 0;
      background: linear-gradient(180deg, transparent, rgba(30, 167, 224, .05))
    }

    .subcat-block {
      margin-bottom: 2.8rem
    }

    .subcat-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.2rem;
      flex-wrap: wrap;
      gap: 1rem
    }

    .subcat-head h3 {
      font-size: 1.4rem;
      font-weight: 700;
      margin: 0;
      display: flex;
      align-items: center;
      gap: .7rem
    }

    .subcat-head h3 .badge-num {
      background: var(--grad);
      color: #fff;
      font-size: .8rem;
      padding: .25rem .7rem;
      border-radius: 999px;
      font-weight: 700
    }

    .swiper {
      padding: .5rem .25rem 2.5rem !important;
      overflow: hidden !important
    }

    .swiper-slide {
      height: auto;
      display: flex
    }

    .swiper-button-next,
    .swiper-button-prev {
      color: var(--brand-solid) !important;
      background: #fff;
      width: 42px !important;
      height: 42px !important;
      border-radius: 50%;
      box-shadow: var(--shadow);
      top: 42% !important
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
      font-size: 1rem !important;
      font-weight: 800
    }

    .swiper-pagination-bullet-active {
      background: var(--brand-2) !important
    }

    /* MODAL */
    .modal-glass .modal-content {
      border: none;
      border-radius: 24px;
      overflow: hidden;
      background: rgba(255, 255, 255, .96);
      backdrop-filter: blur(20px);
      box-shadow: 0 30px 80px -20px rgba(10, 92, 173, .4)
    }

    .modal-glass .modal-img {
      aspect-ratio: 16/10;
      background: var(--grad-soft);
      overflow: hidden
    }

    .modal-glass .modal-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: zoomIn .8s ease
    }

    @keyframes zoomIn {
      from {
        transform: scale(1.1);
        opacity: 0
      }

      to {
        transform: scale(1);
        opacity: 1
      }
    }

    .modal-glass .modal-body {
      padding: 2rem 2.2rem 2.2rem
    }

    .modal-glass .modal-cat {
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--brand-2);
      margin-bottom: .5rem
    }

    .modal-glass h3 {
      font-weight: 800;
      margin-bottom: .6rem
    }

    .modal-glass .feat {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: .6rem;
      margin: 1.2rem 0
    }

    .modal-glass .feat span {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-size: .86rem;
      color: var(--muted)
    }

    .modal-glass .feat span::before {
      content: "✓";
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--grad);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: .7rem;
      font-weight: 800;
      flex-shrink: 0
    }

    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: all .8s cubic-bezier(.2, .8, .2, 1)
    }

    .fade-up.in {
      opacity: 1;
      transform: translateY(0)
    }

     :root {
        /* NOTE: these were previously named --brand / --brand-deep / --brand-glow /
           --ink / --ink-muted, which collided with the identically-named custom
           properties declared in the GLOBAL :root above (line 9). Those global
           variables are HSL triplets consumed as hsl(var(--brand)) (used by, among
           other things, the custom cursor dot/ring). This second :root came later
           in the cascade and silently overwrote them with plain hex colors, which
           made every hsl(var(--brand)) / hsl(var(--ink)) declaration on the page
           invalid CSS — including the cursor's background/border/box-shadow. That
           is why the custom cursor rendered on index.php (which has its own
           self-contained inline styles) but not on landing.php / product.php
           (which both share this stylesheet via header.php). Renamed here with a
           "-solid" suffix so this local palette no longer clobbers the global one. */
        --brand-solid: #00adef;
        --brand-deep-solid: #0a2a43;
        --brand-glow-solid: #5fd6ff;
        --ink-solid: #0c1b2a;
        --ink-muted-solid: #5b7183;
        --glass: rgba(255, 255, 255, .62);
        --glass-brd: rgba(255, 255, 255, .75);
        --shadow: 0 18px 50px -20px rgba(10, 42, 67, .35);
    }

    * {
        scroll-behavior: smooth
    }

    body {
        font-family: 'Inter', system-ui, sans-serif;
        color: var(--ink-solid);
        background: #eef6fb;
        overflow-x: hidden
    }

    h1,
    h2,
    h3,
    h4,
    .dsp {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 800;
        letter-spacing: -.02em
    }

    .text-brand {
        color: var(--brand-solid) !important
    }

    a {
        text-decoration: none
    }

    /* ambient background */
    .bg-orbs {
        position: fixed;
        inset: 0;
        z-index: -1;
        overflow: hidden
    }

    .bg-orbs span {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: .35
    }

    .bg-orbs span:nth-child(1) {
        width: 420px;
        height: 420px;
        background: #8fdcff;
        top: -120px;
        left: -100px;
        animation: float 14s ease-in-out infinite
    }

    .bg-orbs span:nth-child(2) {
        width: 520px;
        height: 520px;
        background: #c9ecff;
        bottom: -160px;
        right: -120px;
        animation: float 18s ease-in-out infinite reverse
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(-32px)
        }
    }

    /* glass */
    .glass {
        background: var(--glass);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border: 1px solid var(--glass-brd);
        box-shadow: var(--shadow);
        border-radius: 22px
    }

    .glass-dark {
        background: rgba(10, 42, 67, .55);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 22px
    }

    .btn-brand {
        background: linear-gradient(135deg, var(--brand-solid), #0d86c4);
        color: #fff;
        border: 0;
        border-radius: 999px;
        padding: .62rem 1.5rem;
        font-weight: 600;
        box-shadow: 0 12px 28px -12px rgba(0, 173, 239, .9);
        transition: .3s
    }

    .btn-brand:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 18px 34px -12px rgba(0, 173, 239, .95)
    }

    .btn-ghost {
        border: 1px solid rgba(10, 42, 67, .18);
        border-radius: 999px;
        padding: .6rem 1.4rem;
        font-weight: 600;
        color: var(--ink-solid);
        transition: .3s;
        background: rgba(255, 255, 255, .5)
    }

    .btn-ghost:hover {
        border-color: var(--brand-solid);
        color: var(--brand-solid);
        transform: translateY(-2px)
    }

    /* hero */
    .hero {
        position: relative;
        min-height: 60vh;
        display: flex;
        align-items: center;
        background: url('/assets/img/uc-banner.jpg') center/cover no-repeat;
        overflow: hidden
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(100deg, rgba(6, 22, 38, .94) 12%, rgba(6, 22, 38, .78) 45%, rgba(0, 173, 239, .28) 100%)
    }

    .hero .container {
        position: relative;
        z-index: 2
    }

    .hero h1 {
        color: #fff;
        font-size: clamp(2rem, 4.4vw, 3.4rem)
    }

    .crumb a,
    .crumb span {
        color: rgba(255, 255, 255, .75);
        font-size: .9rem
    }

    .crumb a:hover {
        color: var(--brand-glow-solid)
    }

    .pill {
        display: inline-flex;
        gap: .5rem;
        align-items: center;
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .25);
        color: #dff4ff;
        border-radius: 999px;
        padding: .4rem 1rem;
        font-size: .82rem;
        backdrop-filter: blur(8px)
    }

    /* sidebar */
    .side {
        position: sticky;
        top: 92px
    }

    .side-group+.side-group {
        margin-top: .85rem
    }

    .side-head {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: .6rem;
        background: transparent;
        border: 0;
        font-weight: 700;
        font-family: 'Plus Jakarta Sans';
        color: var(--brand-deep-solid);
        padding: .85rem 1rem;
        border-radius: 14px;
        transition: .3s
    }

    .side-head:hover {
        background: rgba(0, 173, 239, .09);
        color: var(--brand-solid)
    }

    .side-head i {
        transition: transform .35s
    }

    .side-head.open i {
        transform: rotate(180deg);
        color: var(--brand-solid)
    }

    .side-list {
        max-height: 0;
        overflow: hidden;
        transition: max-height .45s cubic-bezier(.2, .8, .2, 1)
    }

    .side-list ul {
        list-style: none;
        margin: 0;
        padding: .2rem 0 .6rem
    }

    .side-list a {
        display: block;
        font-size: .86rem;
        color: var(--ink-muted-solid);
        padding: .42rem .5rem .42rem 1.4rem;
        border-left: 2px solid transparent;
        transition: .25s
    }

    .side-list a:hover {
        color: var(--brand-solid);
        border-left-color: var(--brand-solid);
        background: rgba(0, 173, 239, .07);
        transform: translateX(4px)
    }

    .side-list a.active {
        color: var(--brand-solid);
        font-weight: 600;
        border-left-color: var(--brand-solid);
        background: rgba(0, 173, 239, .1)
    }

    /* gallery */
    .gal-main {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        background: #fff;
        aspect-ratio: 4/3
    }

    .gal-main img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform .8s cubic-bezier(.2, .8, .2, 1)
    }

    .gal-main:hover img {
        transform: scale(1.12)
    }

    .gal-main .zoom-hint {
        position: absolute;
        right: 14px;
        bottom: 14px;
        background: rgba(10, 42, 67, .75);
        color: #fff;
        font-size: .75rem;
        padding: .35rem .8rem;
        border-radius: 999px;
        opacity: 0;
        transition: .3s
    }

    .gal-main:hover .zoom-hint {
        opacity: 1
    }


    .badge-soft {
        background: rgba(0, 173, 239, .12);
        color: #0a7fb3;
        border-radius: 999px;
        padding: .35rem .85rem;
        font-size: .76rem;
        font-weight: 600
    }

    /* spec chips */
    .spec {
        display: flex;
        gap: .75rem;
        align-items: center;
        padding: .85rem 1rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, .7);
        border: 1px solid rgba(10, 42, 67, .07);
        transition: .3s
    }

    .spec:hover {
        transform: translateY(-4px);
        border-color: rgba(0, 173, 239, .4);
        box-shadow: 0 16px 30px -20px rgba(0, 173, 239, .9)
    }

    .spec i {
        font-size: 1.3rem;
        color: var(--brand-solid)
    }

    .spec small {
        display: block;
        color: var(--ink-muted-solid);
        font-size: .72rem;
        text-transform: uppercase;
        letter-spacing: .08em
    }

    .spec b {
        font-family: 'Plus Jakarta Sans';
        font-size: .98rem
    }

    /* tabs */
    .mn-tabs {
        display: flex;
        gap: .5rem;
        flex-wrap: wrap;
        border-bottom: 1px solid rgba(10, 42, 67, .1);
        padding-bottom: .5rem;
        margin-bottom: 1.4rem
    }

    .mn-tab {
        border: 0;
        background: transparent;
        font-weight: 600;
        color: var(--ink-muted-solid);
        padding: .6rem 1.15rem;
        border-radius: 999px;
        transition: .3s
    }

    .mn-tab:hover {
        color: var(--brand-solid);
        background: rgba(0, 173, 239, .08)
    }

    .mn-tab.active {
        background: linear-gradient(135deg, var(--brand-solid), #0d86c4);
        color: #fff;
        box-shadow: 0 12px 26px -14px rgba(0, 173, 239, .95)
    }

    .tab-pane-x {
        display: none;
        animation: fadeUp .5s cubic-bezier(.2, .8, .2, 1) both
    }

    .tab-pane-x.show {
        display: block
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(18px)
        }

        to {
            opacity: 1;
            transform: none
        }
    }

    .tick {
        display: flex;
        gap: .7rem;
        align-items: flex-start;
        padding: .55rem 0;
        color: #31485c
    }

    .tick i {
        color: var(--brand-solid);
        margin-top: .15rem
    }

    table.mn-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 .5rem
    }

    table.mn-table td {
        padding: .75rem 1rem;
        background: rgba(255, 255, 255, .7);
        font-size: .92rem
    }

    table.mn-table tr td:first-child {
        border-radius: 12px 0 0 12px;
        font-weight: 600;
        width: 38%
    }

    table.mn-table tr td:last-child {
        border-radius: 0 12px 12px 0;
        color: var(--ink-muted-solid)
    }

    table.mn-table tr {
        transition: .3s
    }

    table.mn-table tr:hover td {
        background: rgba(0, 173, 239, .09)
    }

    /* type cards */
    .type-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        padding: 1.4rem;
        background: rgba(255, 255, 255, .7);
        border: 1px solid rgba(10, 42, 67, .07);
        transition: .45s cubic-bezier(.2, .8, .2, 1);
        height: 100%
    }

    .type-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 173, 239, .14), transparent 60%);
        opacity: 0;
        transition: .45s
    }

    .type-card:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 173, 239, .45);
        box-shadow: 0 26px 50px -26px rgba(0, 173, 239, .85)
    }

    .type-card:hover::before {
        opacity: 1
    }

    .type-card .ic {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: linear-gradient(135deg, var(--brand-solid), #0d86c4);
        color: #fff;
        font-size: 1.15rem;
        margin-bottom: .9rem;
        transition: .45s
    }

    .type-card:hover .ic {
        transform: rotate(-8deg) scale(1.08)
    }

    /* related slider */
    .slider-wrap {
        position: relative
    }

    .slider {
        display: flex;
        gap: 1.1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: .4rem .2rem 1.2rem;
        scrollbar-width: none
    }

    .slider::-webkit-scrollbar {
        display: none
    }

    .p-card {
        flex: 0 0 clamp(240px, 80vw, 290px);
        scroll-snap-align: start;
        border-radius: 22px;
        overflow: hidden;
        background: rgba(255, 255, 255, .72);
        border: 1px solid rgba(255, 255, 255, .8);
        box-shadow: var(--shadow);
        transition: .45s cubic-bezier(.2, .8, .2, 1);
        cursor: pointer
    }

    .p-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 55px -25px rgba(10, 42, 67, .5)
    }

    .p-card .ph {
        height: 180px;
        background: #fff;
        overflow: hidden;
        position: relative
    }

    .p-card .ph img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform .6s
    }

    .p-card:hover .ph img {
        transform: scale(1.12)
    }

    .p-card .ph::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, .55) 50%, transparent 65%);
        transform: translateX(-120%);
        transition: transform .8s
    }

    .p-card:hover .ph::after {
        transform: translateX(120%)
    }

    .p-body {
        padding: 1.05rem 1.15rem 1.3rem
    }

    .p-body h5 {
        font-size: 1rem;
        margin-bottom: .3rem
    }

    .p-body p {
        font-size: .84rem;
        color: var(--ink-muted-solid);
        margin: 0
    }

    .nav-arrow {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(10, 42, 67, .14);
        background: rgba(255, 255, 255, .85);
        color: var(--brand-deep-solid);
        display: grid;
        place-items: center;
        transition: .3s
    }

    .nav-arrow:hover {
        background: var(--brand-solid);
        color: #fff;
        transform: scale(1.08)
    }

    /* cta */
    .cta {
        background: linear-gradient(135deg, #082a44, #0d5e88 55%, #00adef);
        border-radius: 26px;
        color: #fff;
        position: relative;
        overflow: hidden
    }

    .cta::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .09);
        top: -160px;
        right: -90px;
        animation: float 12s ease-in-out infinite
    }

    /* reveal */
    .rv {
        opacity: 0;
        transform: translateY(34px);
        transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1)
    }

    .rv.in {
        opacity: 1;
        transform: none
    }


    .float-cta {
        position: fixed;
        right: 18px;
        bottom: 22px;
        z-index: 1040
    }

    @media(max-width:991px) {
        .side {
            position: static
        }
    }

    .text-grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brand-2)
  }

  .eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--brand-2)
  }

  .glass {
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow: var(--shadow)
  }

  .btn-brand {
    background: var(--grad);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: .85rem 1.6rem;
    border-radius: 999px;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s
  }

  .btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #fff
  }

  .btn-ghost {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .45);
    color: #fff;
    font-weight: 600;
    padding: .8rem 1.4rem;
    border-radius: 999px;
    backdrop-filter: blur(8px)
  }

  .btn-ghost:hover {
    background: rgba(255, 255, 255, .28);
    color: #fff
  }

  /* === Hero Banner === */
  .hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-banner .banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-banner .banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
  }

  @keyframes slowZoom {
    from {
      transform: scale(1);
    }

    to {
      transform: scale(1.1);
    }
  }

  .hero-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(30, 167, 224, 0.2) 100%);
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    color: white;
  }

  .hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
  }

  .hero-content h1 span {
    color: var(--primary-light);
  }

  .hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
  }

  .hero-stat {
    text-align: center;
  }

  .hero-stat .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
  }

  .hero-stat .label {
    font-size: 0.9rem;
    opacity: 0.8;
  }

  /* === Product Grid (Detail Pages) === */
  .page-banner {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
  }

  .page-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.6));
  }

  .page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
  }

  .page-banner-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }

  .page-banner-content p {
    opacity: 0.9;
    font-size: 1.1rem;
  }

  /* Category Section on Detail Pages */
  .category-section {
    margin-bottom: 3rem;
  }

  .category-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
  }

  .product-item {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
  }

  .product-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .product-item .icon-box {
    width: 50px;
    height: 50px;
    background: var(--primary-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
    font-size: 1.25rem;
  }

  .product-item h4 {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }

  .product-item p {
    font-size: 0.8rem;
    color: var(--text-light);
  }

  /* SECTIONS */
  .sec {
    padding: 5rem 0
  }

  .sec-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem
  }

  .sec-head h2 {
    font-size: clamp(1.9rem, 3.4vw, 3rem);
    font-weight: 800;
    margin: .7rem 0 .8rem
  }

  .sec-head p {
    color: var(--muted);
    font-size: 1.05rem
  }

  /* RANGE OF PRODUCTS - 6 specialty cards (reference style) */
  .range-card {
    background: #fff;
    border: 1px solid rgba(10, 92, 173, .08);
    border-radius: 22px;
    padding: 1rem 1rem;
    text-align: center;
    transition: all .35s cubic-bezier(.2, .8, .2, 1);
    cursor: pointer;
    height: 100%;
    position: relative;
    overflow: hidden
  }

  .range-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--grad);
    opacity: 0;
    transition: opacity .35s;
    z-index: 0
  }

  .range-card>* {
    position: relative;
    z-index: 1
  }

  .range-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
  }

  .range-card:hover::before {
    opacity: 1
  }

  .range-card:hover h5,
  .range-card:hover p,
  .range-card:hover .ricon {
    color: #fff !important
  }

  .range-card:hover .ricon {
    background: rgba(255, 255, 255, .18)
  }

  .ricon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(30, 167, 224, .12);
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
    color: var(--brand-2);
    transition: all .35s;
    font-size: 1.8rem
  }

  .range-card h5 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: .4rem;
    color: var(--ink-solid);
    transition: color .35s
  }

  .range-card p {
    color: var(--muted);
    font-size: .85rem;
    margin: 0;
    transition: color .35s
  }

  .range-card.active {
    background: var(--grad);
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg)
  }

  .range-card.active h5,
  .range-card.active p,
  .range-card.active .ricon {
    color: #fff
  }

  .range-card.active .ricon {
    background: rgba(255, 255, 255, .22)
  }

  /* FILTER BAR */
  .filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    justify-content: center;
    margin-bottom: 2.2rem
  }

  .fbtn {
    padding: .65rem 1.25rem;
    border-radius: 999px;
    border: 1.5px solid rgba(10, 92, 173, .18);
    background: #fff;
    color: var(--ink-solid);
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: all .25s
  }

  .fbtn:hover {
    border-color: var(--brand-2);
    color: var(--brand-solid)
  }

  .fbtn.active {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow)
  }

  .search-wrap {
    max-width: 420px;
    margin: 0 auto 2rem;
    position: relative
  }

  .search-wrap input {
    width: 100%;
    padding: .85rem 1.2rem .85rem 2.8rem;
    border-radius: 999px;
    border: 1.5px solid rgba(10, 92, 173, .18);
    background: #fff;
    font-size: .95rem;
    outline: none;
    transition: border-color .2s
  }

  .search-wrap input:focus {
    border-color: var(--brand-2)
  }

  .search-wrap svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted)
  }

  /* PRODUCT CARD */
  .pcard {
    background: #fff;
    border: 1px solid rgba(10, 92, 173, .08);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all .35s cubic-bezier(.2, .8, .2, 1);
    height: 100%;
    display: flex;
    flex-direction: column
  }

  .pcard:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 167, 224, .3)
  }

  .pcard .pimg {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--grad-soft);
    position: relative
  }

  .pcard .pimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
  }

  .pcard:hover .pimg img {
    transform: scale(1.12)
  }

  .pcard .ptag {
    position: absolute;
    top: .8rem;
    left: .8rem;
    padding: .32rem .7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    color: var(--brand-solid);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    backdrop-filter: blur(8px)
  }

  .pcard .pbody {
    padding: 1.1rem 1.2rem 1.3rem;
    flex: 1;
    display: flex;
    flex-direction: column
  }

  .pcard h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .3rem;
    line-height: 1.3
  }

  .pcard .pdesc {
    font-size: .83rem;
    color: var(--muted);
    margin-bottom: .9rem;
    flex: 1
  }

  .pcard .pmore {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--brand-solid);
    font-weight: 600;
    font-size: .85rem;
    margin-top: auto
  }

  /* Sub-category slider section */
  .subcat-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, transparent, rgba(30, 167, 224, .05))
  }

  .subcat-block {
    margin-bottom: 2.8rem
  }

  .subcat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    gap: 1rem
  }

  .subcat-head h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: .7rem
  }

  .subcat-head h3 .badge-num {
    background: var(--grad);
    color: #fff;
    font-size: .8rem;
    padding: .25rem .7rem;
    border-radius: 999px;
    font-weight: 700
  }

  .swiper {
    padding: .5rem .25rem 2.5rem !important;
    overflow: hidden !important
  }

  .swiper-slide {
    height: auto;
    display: flex
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: var(--brand-solid) !important;
    background: #fff;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50%;
    box-shadow: var(--shadow);
    top: 42% !important
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 1rem !important;
    font-weight: 800
  }

  .swiper-pagination-bullet-active {
    background: var(--brand-2) !important
  }

  /* MODAL */
  .modal-glass .modal-content {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px -20px rgba(10, 92, 173, .4)
  }

  .modal-glass .modal-img {
    aspect-ratio: 16/10;
    background: var(--grad-soft);
    overflow: hidden
  }

  .modal-glass .modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn .8s ease
  }

  @keyframes zoomIn {
    from {
      transform: scale(1.1);
      opacity: 0
    }

    to {
      transform: scale(1);
      opacity: 1
    }
  }

  .modal-glass .modal-body {
    padding: 2rem 2.2rem 2.2rem
  }

  .modal-glass .modal-cat {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--brand-2);
    margin-bottom: .5rem
  }

  .modal-glass h3 {
    font-weight: 800;
    margin-bottom: .6rem
  }

  .modal-glass .feat {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: .6rem;
    margin: 1.2rem 0
  }

  .modal-glass .feat span {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .86rem;
    color: var(--muted)
  }

  .modal-glass .feat span::before {
    content: "✓";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: .7rem;
    font-weight: 800;
    flex-shrink: 0
  }

  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s cubic-bezier(.2, .8, .2, 1)
  }

  .fade-up.in {
    opacity: 1;
    transform: translateY(0)
  }

/* ---------- 2. LANDING PAGE ---------- */
body.page-landing .text-grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
  }
body.page-landing .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brand-2)
  }
body.page-landing .eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--brand-2)
  }
body.page-landing .glass {
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow: var(--shadow)
  }
body.page-landing .btn-brand {
    background: var(--grad);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: .85rem 1.6rem;
    border-radius: 999px;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s
  }
body.page-landing .btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #fff
  }
body.page-landing .btn-ghost {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .45);
    color: #fff;
    font-weight: 600;
    padding: .8rem 1.4rem;
    border-radius: 999px;
    backdrop-filter: blur(8px)
  }
body.page-landing .btn-ghost:hover {
    background: rgba(255, 255, 255, .28);
    color: #fff
  }
body.page-landing /* === Hero Banner === */
  .hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
body.page-landing .hero-banner .banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
body.page-landing .hero-banner .banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
  }
@keyframes slowZoom{
    from {
      transform: scale(1);
    }

    to {
      transform: scale(1.1);
    }
  }
body.page-landing .hero-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(30, 167, 224, 0.2) 100%);
    z-index: 1;
  }
body.page-landing .hero-content {
    position: relative;
    z-index: 2;
    color: white;
  }
body.page-landing .hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
  }
body.page-landing .hero-content h1 span {
    color: var(--primary-light);
  }
body.page-landing .hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 2rem;
  }
body.page-landing .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
body.page-landing .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
  }
body.page-landing .hero-stat {
    text-align: center;
  }
body.page-landing .hero-stat .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
  }
body.page-landing .hero-stat .label {
    font-size: 0.9rem;
    opacity: 0.8;
  }
body.page-landing /* === Product Grid (Detail Pages) === */
  .page-banner {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
  }
body.page-landing .page-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
body.page-landing .page-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.6));
  }
body.page-landing .page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
  }
body.page-landing .page-banner-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
body.page-landing .page-banner-content p {
    opacity: 0.9;
    font-size: 1.1rem;
  }
body.page-landing /* Category Section on Detail Pages */
  .category-section {
    margin-bottom: 3rem;
  }
body.page-landing .category-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
  }
body.page-landing .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
  }
body.page-landing .product-item {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
  }
body.page-landing .product-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }
body.page-landing .product-item .icon-box {
    width: 50px;
    height: 50px;
    background: var(--primary-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
    font-size: 1.25rem;
  }
body.page-landing .product-item h4 {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }
body.page-landing .product-item p {
    font-size: 0.8rem;
    color: var(--text-light);
  }
body.page-landing /* SECTIONS */
  .sec {
    padding: 5rem 0
  }
body.page-landing .sec-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem
  }
body.page-landing .sec-head h2 {
    font-size: clamp(1.9rem, 3.4vw, 3rem);
    font-weight: 800;
    margin: .7rem 0 .8rem
  }
body.page-landing .sec-head p {
    color: var(--muted);
    font-size: 1.05rem
  }
body.page-landing /* RANGE OF PRODUCTS - 6 specialty cards (reference style) */
  .range-card {
    background: #fff;
    border: 1px solid rgba(10, 92, 173, .08);
    border-radius: 22px;
    padding: 1rem 1rem;
    text-align: center;
    transition: all .35s cubic-bezier(.2, .8, .2, 1);
    cursor: pointer;
    height: 100%;
    position: relative;
    overflow: hidden
  }
body.page-landing .range-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--grad);
    opacity: 0;
    transition: opacity .35s;
    z-index: 0
  }
body.page-landing .range-card>* {
    position: relative;
    z-index: 1
  }
body.page-landing .range-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
  }
body.page-landing .range-card:hover::before {
    opacity: 1
  }
body.page-landing .range-card:hover h5, body.page-landing .range-card:hover p, body.page-landing .range-card:hover .ricon {
    color: #fff !important
  }
body.page-landing .range-card:hover .ricon {
    background: rgba(255, 255, 255, .18)
  }
body.page-landing .ricon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(30, 167, 224, .12);
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
    color: var(--brand-2);
    transition: all .35s;
    font-size: 1.8rem
  }
body.page-landing .range-card h5 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: .4rem;
    color: var(--ink-solid);
    transition: color .35s
  }
body.page-landing .range-card p {
    color: var(--muted);
    font-size: .85rem;
    margin: 0;
    transition: color .35s
  }
body.page-landing .range-card.active {
    background: var(--grad);
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg)
  }
body.page-landing .range-card.active h5, body.page-landing .range-card.active p, body.page-landing .range-card.active .ricon {
    color: #fff
  }
body.page-landing .range-card.active .ricon {
    background: rgba(255, 255, 255, .22)
  }
body.page-landing /* FILTER BAR */
  .filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    justify-content: center;
    margin-bottom: 2.2rem
  }
body.page-landing .fbtn {
    padding: .65rem 1.25rem;
    border-radius: 999px;
    border: 1.5px solid rgba(10, 92, 173, .18);
    background: #fff;
    color: var(--ink-solid);
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: all .25s
  }
body.page-landing .fbtn:hover {
    border-color: var(--brand-2);
    color: var(--brand-solid)
  }
body.page-landing .fbtn.active {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow)
  }
body.page-landing .search-wrap {
    max-width: 420px;
    margin: 0 auto 2rem;
    position: relative
  }
body.page-landing .search-wrap input {
    width: 100%;
    padding: .85rem 1.2rem .85rem 2.8rem;
    border-radius: 999px;
    border: 1.5px solid rgba(10, 92, 173, .18);
    background: #fff;
    font-size: .95rem;
    outline: none;
    transition: border-color .2s
  }
body.page-landing .search-wrap input:focus {
    border-color: var(--brand-2)
  }
body.page-landing .search-wrap svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted)
  }
body.page-landing /* PRODUCT CARD */
  .pcard {
    background: #fff;
    border: 1px solid rgba(10, 92, 173, .08);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all .35s cubic-bezier(.2, .8, .2, 1);
    height: 100%;
    display: flex;
    flex-direction: column
  }
body.page-landing .pcard:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 167, 224, .3)
  }
body.page-landing .pcard .pimg {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--grad-soft);
    position: relative
  }
body.page-landing .pcard .pimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
  }
body.page-landing .pcard:hover .pimg img {
    transform: scale(1.12)
  }
body.page-landing .pcard .ptag {
    position: absolute;
    top: .8rem;
    left: .8rem;
    padding: .32rem .7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    color: var(--brand-solid);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    backdrop-filter: blur(8px)
  }
body.page-landing .pcard .pbody {
    padding: 1.1rem 1.2rem 1.3rem;
    flex: 1;
    display: flex;
    flex-direction: column
  }
body.page-landing .pcard h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .3rem;
    line-height: 1.3
  }
body.page-landing .pcard .pdesc {
    font-size: .83rem;
    color: var(--muted);
    margin-bottom: .9rem;
    flex: 1
  }
body.page-landing .pcard .pmore {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--brand-solid);
    font-weight: 600;
    font-size: .85rem;
    margin-top: auto
  }
body.page-landing /* Sub-category slider section */
  .subcat-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, transparent, rgba(30, 167, 224, .05))
  }
body.page-landing .subcat-block {
    margin-bottom: 2.8rem
  }
body.page-landing .subcat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    gap: 1rem
  }
body.page-landing .subcat-head h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: .7rem
  }
body.page-landing .subcat-head h3 .badge-num {
    background: var(--grad);
    color: #fff;
    font-size: .8rem;
    padding: .25rem .7rem;
    border-radius: 999px;
    font-weight: 700
  }
body.page-landing .swiper {
    padding: .5rem .25rem 2.5rem !important;
    overflow: hidden !important
  }
body.page-landing .swiper-slide {
    height: auto;
    display: flex
  }
body.page-landing .swiper-button-next, body.page-landing .swiper-button-prev {
    color: var(--brand-solid) !important;
    background: #fff;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50%;
    box-shadow: var(--shadow);
    top: 42% !important
  }
body.page-landing .swiper-button-next:after, body.page-landing .swiper-button-prev:after {
    font-size: 1rem !important;
    font-weight: 800
  }
body.page-landing .swiper-pagination-bullet-active {
    background: var(--brand-2) !important
  }
body.page-landing /* MODAL */
  .modal-glass .modal-content {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px -20px rgba(10, 92, 173, .4)
  }
body.page-landing .modal-glass .modal-img {
    aspect-ratio: 16/10;
    background: var(--grad-soft);
    overflow: hidden
  }
body.page-landing .modal-glass .modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn .8s ease
  }
@keyframes zoomIn{
    from {
      transform: scale(1.1);
      opacity: 0
    }

    to {
      transform: scale(1);
      opacity: 1
    }
  }
body.page-landing .modal-glass .modal-body {
    padding: 2rem 2.2rem 2.2rem
  }
body.page-landing .modal-glass .modal-cat {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--brand-2);
    margin-bottom: .5rem
  }
body.page-landing .modal-glass h3 {
    font-weight: 800;
    margin-bottom: .6rem
  }
body.page-landing .modal-glass .feat {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: .6rem;
    margin: 1.2rem 0
  }
body.page-landing .modal-glass .feat span {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .86rem;
    color: var(--muted)
  }
body.page-landing .modal-glass .feat span::before {
    content: "✓";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: .7rem;
    font-weight: 800;
    flex-shrink: 0
  }
body.page-landing .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s cubic-bezier(.2, .8, .2, 1)
  }
body.page-landing .fade-up.in {
    opacity: 1;
    transform: translateY(0)
  }

/* ---------- 3. PRODUCT PAGE ---------- */
body.page-product {
        --glass: rgba(255, 255, 255, .62);
        --glass-brd: rgba(255, 255, 255, .75);
        --shadow: 0 18px 50px -20px rgba(10, 42, 67, .35);}
body.page-product * {
        scroll-behavior: smooth
    }
body.page-product {
        font-family: 'Inter', system-ui, sans-serif;
        color: var(--ink-solid);
        background: #eef6fb;
        overflow-x: hidden
    }
body.page-product h1, body.page-product h2, body.page-product h3, body.page-product h4, body.page-product .dsp {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 800;
        letter-spacing: -.02em
    }
body.page-product .text-brand {
        color: var(--brand-solid) !important
    }
body.page-product a {
        text-decoration: none
    }
body.page-product /* ambient background */
    .bg-orbs {
        position: fixed;
        inset: 0;
        z-index: -1;
        overflow: hidden
    }
body.page-product .bg-orbs span {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: .35
    }
body.page-product .bg-orbs span:nth-child(1) {
        width: 420px;
        height: 420px;
        background: #8fdcff;
        top: -120px;
        left: -100px;
        animation: float 14s ease-in-out infinite
    }
body.page-product .bg-orbs span:nth-child(2) {
        width: 520px;
        height: 520px;
        background: #c9ecff;
        bottom: -160px;
        right: -120px;
        animation: float 18s ease-in-out infinite reverse
    }
@keyframes float{

        0%,
        100% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(-32px)
        }
    }
body.page-product /* glass */
    .glass {
        background: var(--glass);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border: 1px solid var(--glass-brd);
        box-shadow: var(--shadow);
        border-radius: 22px
    }
body.page-product .glass-dark {
        background: rgba(10, 42, 67, .55);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 22px
    }
body.page-product .btn-brand {
        background: linear-gradient(135deg, var(--brand-solid), #0d86c4);
        color: #fff;
        border: 0;
        border-radius: 999px;
        padding: .62rem 1.5rem;
        font-weight: 600;
        box-shadow: 0 12px 28px -12px rgba(0, 173, 239, .9);
        transition: .3s
    }
body.page-product .btn-brand:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 18px 34px -12px rgba(0, 173, 239, .95)
    }
body.page-product .btn-ghost {
        border: 1px solid rgba(10, 42, 67, .18);
        border-radius: 999px;
        padding: .6rem 1.4rem;
        font-weight: 600;
        color: var(--ink-solid);
        transition: .3s;
        background: rgba(255, 255, 255, .5)
    }
body.page-product .btn-ghost:hover {
        border-color: var(--brand-solid);
        color: var(--brand-solid);
        transform: translateY(-2px)
    }
body.page-product /* hero */
    .hero {
        position: relative;
        min-height: 65vh;
        display: flex;
        align-items: center;
        background: url('/assets/img/uc-banner.jpg') center/cover no-repeat;
        overflow: hidden
    }
body.page-product .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(100deg, rgba(6, 22, 38, .94) 12%, rgba(6, 22, 38, .78) 45%, rgba(0, 173, 239, .28) 100%)
    }
body.page-product .hero .container {
        position: relative;
        z-index: 2
    }
body.page-product .hero h1 {
        color: #fff;
        font-size: clamp(2rem, 4.4vw, 3.4rem)
    }
body.page-product .crumb a, body.page-product .crumb span {
        color: rgba(255, 255, 255, .75);
        font-size: .9rem
    }
body.page-product .crumb a:hover {
        color: var(--brand-glow-solid)
    }
body.page-product .pill {
        display: inline-flex;
        gap: .5rem;
        align-items: center;
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .25);
        color: #dff4ff;
        border-radius: 999px;
        padding: .4rem 1rem;
        font-size: .82rem;
        backdrop-filter: blur(8px)
    }
body.page-product /* sidebar */
    .side {
        position: sticky;
        top: 92px
    }
body.page-product .side-group+.side-group {
        margin-top: .85rem
    }
body.page-product .side-head {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: .6rem;
        background: transparent;
        border: 0;
        font-weight: 700;
        font-family: 'Plus Jakarta Sans';
        color: var(--brand-deep-solid);
        padding: .85rem 1rem;
        border-radius: 14px;
        transition: .3s
    }
body.page-product .side-head:hover {
        background: rgba(0, 173, 239, .09);
        color: var(--brand-solid)
    }
body.page-product .side-head i {
        transition: transform .35s
    }
body.page-product .side-head.open i {
        transform: rotate(180deg);
        color: var(--brand-solid)
    }
body.page-product .side-list {
        max-height: 0;
        overflow: hidden;
        transition: max-height .45s cubic-bezier(.2, .8, .2, 1)
    }
body.page-product .side-list ul {
        list-style: none;
        margin: 0;
        padding: .2rem 0 .6rem
    }
body.page-product .side-list a {
        display: block;
        font-size: .86rem;
        color: var(--ink-muted-solid);
        padding: .42rem .5rem .42rem 1.4rem;
        border-left: 2px solid transparent;
        transition: .25s
    }
body.page-product .side-list a:hover {
        color: var(--brand-solid);
        border-left-color: var(--brand-solid);
        background: rgba(0, 173, 239, .07);
        transform: translateX(4px)
    }
body.page-product .side-list a.active {
        color: var(--brand-solid);
        font-weight: 600;
        border-left-color: var(--brand-solid);
        background: rgba(0, 173, 239, .1)
    }
body.page-product /* gallery */
    .gal-main {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        background: #fff;
        aspect-ratio: 4/3
    }
body.page-product .gal-main img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform .8s cubic-bezier(.2, .8, .2, 1)
    }
body.page-product .gal-main:hover img {
        transform: scale(1.12)
    }
body.page-product .gal-main .zoom-hint {
        position: absolute;
        right: 14px;
        bottom: 14px;
        background: rgba(10, 42, 67, .75);
        color: #fff;
        font-size: .75rem;
        padding: .35rem .8rem;
        border-radius: 999px;
        opacity: 0;
        transition: .3s
    }
body.page-product .gal-main:hover .zoom-hint {
        opacity: 1
    }
body.page-product .badge-soft {
        background: rgba(0, 173, 239, .12);
        color: #0a7fb3;
        border-radius: 999px;
        padding: .35rem .85rem;
        font-size: .76rem;
        font-weight: 600
    }
body.page-product /* spec chips */
    .spec {
        display: flex;
        gap: .75rem;
        align-items: center;
        padding: .85rem 1rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, .7);
        border: 1px solid rgba(10, 42, 67, .07);
        transition: .3s
    }
body.page-product .spec:hover {
        transform: translateY(-4px);
        border-color: rgba(0, 173, 239, .4);
        box-shadow: 0 16px 30px -20px rgba(0, 173, 239, .9)
    }
body.page-product .spec i {
        font-size: 1.3rem;
        color: var(--brand-solid)
    }
body.page-product .spec small {
        display: block;
        color: var(--ink-muted-solid);
        font-size: .72rem;
        text-transform: uppercase;
        letter-spacing: .08em
    }
body.page-product .spec b {
        font-family: 'Plus Jakarta Sans';
        font-size: .98rem
    }
body.page-product /* tabs */
    .mn-tabs {
        display: flex;
        gap: .5rem;
        flex-wrap: wrap;
        border-bottom: 1px solid rgba(10, 42, 67, .1);
        padding-bottom: .5rem;
        margin-bottom: 1.4rem
    }
body.page-product .mn-tab {
        border: 0;
        background: transparent;
        font-weight: 600;
        color: var(--ink-muted-solid);
        padding: .6rem 1.15rem;
        border-radius: 999px;
        transition: .3s
    }
body.page-product .mn-tab:hover {
        color: var(--brand-solid);
        background: rgba(0, 173, 239, .08)
    }
body.page-product .mn-tab.active {
        background: linear-gradient(135deg, var(--brand-solid), #0d86c4);
        color: #fff;
        box-shadow: 0 12px 26px -14px rgba(0, 173, 239, .95)
    }
body.page-product .tab-pane-x {
        display: none;
        animation: fadeUp .5s cubic-bezier(.2, .8, .2, 1) both
    }
body.page-product .tab-pane-x.show {
        display: block
    }
@keyframes fadeUp{
        from {
            opacity: 0;
            transform: translateY(18px)
        }

        to {
            opacity: 1;
            transform: none
        }
    }
body.page-product .tick {
        display: flex;
        gap: .7rem;
        align-items: flex-start;
        padding: .55rem 0;
        color: #31485c
    }
body.page-product .tick i {
        color: var(--brand-solid);
        margin-top: .15rem
    }
body.page-product table.mn-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 .5rem
    }
body.page-product table.mn-table td {
        padding: .75rem 1rem;
        background: rgba(255, 255, 255, .7);
        font-size: .92rem
    }
body.page-product table.mn-table tr td:first-child {
        border-radius: 12px 0 0 12px;
        font-weight: 600;
        width: 38%
    }
body.page-product table.mn-table tr td:last-child {
        border-radius: 0 12px 12px 0;
        color: var(--ink-muted-solid)
    }
body.page-product table.mn-table tr {
        transition: .3s
    }
body.page-product table.mn-table tr:hover td {
        background: rgba(0, 173, 239, .09)
    }
body.page-product /* type cards */
    .type-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        padding: 1.4rem;
        background: rgba(255, 255, 255, .7);
        border: 1px solid rgba(10, 42, 67, .07);
        transition: .45s cubic-bezier(.2, .8, .2, 1);
        height: 100%
    }
body.page-product .type-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 173, 239, .14), transparent 60%);
        opacity: 0;
        transition: .45s
    }
body.page-product .type-card:hover {
        transform: translateY(-8px);
        border-color: rgba(0, 173, 239, .45);
        box-shadow: 0 26px 50px -26px rgba(0, 173, 239, .85)
    }
body.page-product .type-card:hover::before {
        opacity: 1
    }
body.page-product .type-card .ic {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: linear-gradient(135deg, var(--brand-solid), #0d86c4);
        color: #fff;
        font-size: 1.15rem;
        margin-bottom: .9rem;
        transition: .45s
    }
body.page-product .type-card:hover .ic {
        transform: rotate(-8deg) scale(1.08)
    }
body.page-product /* related slider */
    .slider-wrap {
        position: relative
    }
body.page-product .slider {
        display: flex;
        gap: 1.1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: .4rem .2rem 1.2rem;
        scrollbar-width: none
    }
body.page-product .slider::-webkit-scrollbar {
        display: none
    }
body.page-product .p-card {
        flex: 0 0 clamp(240px, 80vw, 290px);
        scroll-snap-align: start;
        border-radius: 22px;
        overflow: hidden;
        background: rgba(255, 255, 255, .72);
        border: 1px solid rgba(255, 255, 255, .8);
        box-shadow: var(--shadow);
        transition: .45s cubic-bezier(.2, .8, .2, 1);
        cursor: pointer
    }
body.page-product .p-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 55px -25px rgba(10, 42, 67, .5)
    }
body.page-product .p-card .ph {
        height: 180px;
        background: #fff;
        overflow: hidden;
        position: relative
    }
body.page-product .p-card .ph img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform .6s
    }
body.page-product .p-card:hover .ph img {
        transform: scale(1.12)
    }
body.page-product .p-card .ph::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, .55) 50%, transparent 65%);
        transform: translateX(-120%);
        transition: transform .8s
    }
body.page-product .p-card:hover .ph::after {
        transform: translateX(120%)
    }
body.page-product .p-body {
        padding: 1.05rem 1.15rem 1.3rem
    }
body.page-product .p-body h5 {
        font-size: 1rem;
        margin-bottom: .3rem
    }
body.page-product .p-body p {
        font-size: .84rem;
        color: var(--ink-muted-solid);
        margin: 0
    }
body.page-product .nav-arrow {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(10, 42, 67, .14);
        background: rgba(255, 255, 255, .85);
        color: var(--brand-deep-solid);
        display: grid;
        place-items: center;
        transition: .3s
    }
body.page-product .nav-arrow:hover {
        background: var(--brand-solid);
        color: #fff;
        transform: scale(1.08)
    }
body.page-product /* cta */
    .cta {
        background: linear-gradient(135deg, #082a44, #0d5e88 55%, #00adef);
        border-radius: 26px;
        color: #fff;
        position: relative;
        overflow: hidden
    }
body.page-product .cta::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .09);
        top: -160px;
        right: -90px;
        animation: float 12s ease-in-out infinite
    }
body.page-product /* reveal */
    .rv {
        opacity: 0;
        transform: translateY(34px);
        transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1)
    }
body.page-product .rv.in {
        opacity: 1;
        transform: none
    }
body.page-product .float-cta {
        position: fixed;
        right: 18px;
        bottom: 22px;
        z-index: 1040
    }
@media(max-width:991px) {body.page-product .side {
            position: static
        }}
