/* Jutech Solutions — global styles */
:root {
    --bg-deep: #050814;
    --bg-card: #0c1224;
    --bg-elevated: #111827;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --cyan: #22d3ee;
    --cyan-dim: rgba(34, 211, 238, 0.15);
    --accent: #38bdf8;
    --accent-2: #a78bfa;
    --success: #34d399;
    --radius: 20px;
    --radius-pill: 999px;
    --header-h: 72px;
    --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    --font-heading: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.site-body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg-deep);
    color: var(--text);
    padding-top: var(--header-h);
}

/* Headings & display: Inter — body copy: Plus Jakarta Sans (two professional families) */
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.hero-title,
.hero-kicker,
.section-label,
.testimonial-section-title {
    font-family: var(--font-heading);
}

.text-cyan {
    color: var(--cyan) !important;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 2000;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    background: #fff;
    color: #000;
}

/* Header / nav */
.site-header .navbar {
    background: rgba(5, 8, 20, 0.92) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--cyan), var(--accent-2));
    box-shadow: 0 8px 24px rgba(34, 211, 238, 0.25);
}

.brand-mark.sm {
    width: 28px;
    height: 28px;
    border-radius: 8px;
}

.navbar .nav-link {
    color: rgba(241, 245, 249, 0.85) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 0.65rem !important;
    border-radius: 8px;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06);
}

.navbar .nav-link.active {
    color: var(--cyan) !important;
}

.btn-accent {
    background: linear-gradient(135deg, var(--cyan), #0ea5e9);
    border: none;
    color: #04121a !important;
    font-weight: 700;
    border-radius: var(--radius-pill);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.28);
}

.btn-accent:hover {
    filter: brightness(1.06);
    color: #04121a !important;
}

.dropdown-menu-dark {
    background: var(--bg-elevated) !important;
    border: 1px solid rgba(148, 163, 184, 0.15) !important;
}

.dropdown-item {
    color: var(--text) !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(34, 211, 238, 0.12) !important;
}

/* Mega menus + mobile nav drawer */
body.site-body.nav-drawer-open {
    overflow: hidden;
}

.navbar-toggler-jutech {
    border-radius: 10px;
    padding: 0.45rem 0.55rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.navbar-toggler-jutech:hover {
    background: rgba(255, 255, 255, 0.08);
}

.navbar-toggler-jutech[aria-expanded="true"] {
    background: rgba(34, 211, 238, 0.12);
}

.nav-main-collapse {
    transition: max-height 0.35s ease;
}

@media (max-width: 991.98px) {
    .nav-main-collapse {
        margin-top: 0.75rem;
        padding-bottom: 1.25rem;
        border-top: 1px solid rgba(148, 163, 184, 0.14);
        max-height: min(85vh, calc(100dvh - var(--header-h) - 16px));
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        scrollbar-gutter: stable;
    }

    .nav-main-collapse::-webkit-scrollbar {
        width: 6px;
    }

    .nav-main-collapse::-webkit-scrollbar-thumb {
        background: rgba(148, 163, 184, 0.35);
        border-radius: 6px;
    }

    .site-header .navbar-nav .nav-link.dropdown-toggle::after {
        margin-left: auto;
    }

    .site-header .mega-menu-dropdown {
        position: static !important;
        transform: none !important;
        inset: auto !important;
        float: none;
        width: 100% !important;
        margin: 0.35rem 0 0.85rem !important;
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
        border-radius: 14px !important;
        background: rgba(12, 18, 36, 0.97) !important;
        border: 1px solid rgba(148, 163, 184, 0.14) !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        max-height: min(55vh, 420px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mega-menu-products-grid {
        max-height: min(42vh, 320px);
        overflow-y: auto;
    }

    .mega-menu-services-grid {
        max-height: min(48vh, 380px);
        overflow-y: auto;
    }

    .mega-menu-col {
        padding-bottom: 0.5rem;
        margin-bottom: 0.35rem;
        border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    }

    .mega-menu-col:last-of-type {
        border-bottom: 0;
        margin-bottom: 0;
    }

    .site-header .nav-actions .btn {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 992px) {
    .site-header .navbar .mega-menu-dropdown {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        top: var(--header-h) !important;
        width: 100vw !important;
        max-width: none !important;
        margin: 0 !important;
        transform: none !important;
        border-radius: 0 0 20px 20px !important;
        border: 1px solid rgba(148, 163, 184, 0.14) !important;
        border-top: 1px solid rgba(34, 211, 238, 0.12) !important;
        z-index: 1040;
        max-height: min(78vh, 640px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    }

    .mega-menu-dropdown--services {
        max-height: min(72vh, 520px);
    }

    .mega-menu-products-grid {
        max-height: min(58vh, 420px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-right: 0.25rem;
    }

    .mega-menu-services-grid {
        max-height: min(52vh, 400px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mega-menu-col--sticky {
        position: sticky;
        top: 0;
        align-self: flex-start;
    }
}

.mega-menu-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.95);
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.mega-menu-link {
    padding: 0.55rem 0.75rem !important;
    border-radius: 10px;
    white-space: normal;
}

.mega-menu-link--compact {
    padding: 0.45rem 0.65rem !important;
    font-size: 0.9rem;
}

/* Hero home carousel */
.hero-home {
    position: relative;
    min-height: min(88vh, 900px);
    overflow: hidden;
}

.hero-home .carousel-item {
    min-height: min(88vh, 900px);
    background: linear-gradient(145deg, #020617 0%, #0f172a 45%, #042f2e 100%);
}

.hero-home .carousel-inner {
    min-height: inherit;
}

.hero-slide-inner {
    min-height: min(88vh, 900px);
    display: flex;
    align-items: center;
    padding: 4rem 0 5rem;
}

.hero-slide-inner .hero-visual {
    position: relative;
    min-height: 280px;
}

.hero-slide-photo {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 28px 48px rgba(0, 0, 0, 0.45);
    aspect-ratio: 5 / 3;
    max-height: min(52vh, 400px);
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .hero-slide-photo {
        max-height: min(60vh, 440px);
    }
}

.hero-slide-photo__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (prefers-reduced-motion: no-preference) {
    .hero-home .carousel-item.active .hero-slide-photo__img {
        animation: hero-photo-softzoom 10s ease-out forwards;
    }
}

@keyframes hero-photo-softzoom {
    0% {
        transform: scale(1.06);
    }
    100% {
        transform: scale(1);
    }
}

.hero-slide-photo__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 8, 20, 0.88) 100%);
    border-radius: 0 0 var(--radius) var(--radius);
}

.hero-slide-photo__accent {
    width: 4px;
    height: 1.25rem;
    border-radius: 999px;
    background: var(--slide-accent, var(--cyan));
    flex-shrink: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    pointer-events: none;
}

.hero-orb.o1 {
    width: 280px;
    height: 280px;
    background: var(--cyan);
    top: 10%;
    right: 15%;
}

.hero-orb.o2 {
    width: 220px;
    height: 220px;
    background: var(--accent-2);
    bottom: 5%;
    left: 10%;
}

.hero-kicker {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cyan);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.hero-title--typewriter .hero-typewriter {
    display: inline;
}

.hero-typewriter-caret {
    display: inline-block;
    width: 0.07em;
    min-width: 2px;
    height: 0.95em;
    margin-left: 0.06em;
    vertical-align: -0.08em;
    background: currentColor;
    border-radius: 1px;
    animation: hero-caret-blink 0.85s step-end infinite;
}

.hero-typewriter-caret.is-done {
    animation: none;
    opacity: 0.45;
}

@keyframes hero-caret-blink {
    50% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-typewriter-caret {
        animation: none;
        opacity: 0.85;
    }
}

.hero-title--typewriter {
    cursor: text;
}

.hero-title--typewriter:focus {
    outline: 2px solid rgba(34, 211, 238, 0.35);
    outline-offset: 0.25rem;
    border-radius: 0.2rem;
}

.hero-title--typewriter:focus:not(:focus-visible) {
    outline: none;
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 36rem;
}

.hero-home .carousel-control-prev,
.hero-home .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-home .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
}

.hero-home .carousel-indicators .active {
    background: var(--cyan);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-tight {
    padding: 3.5rem 0;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    font-weight: 700;
}

.bg-section {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(5, 8, 20, 0.9) 100%);
}

.bg-mesh {
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(34, 211, 238, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(167, 139, 250, 0.1), transparent);
}

/* Stats strip */
.stats-strip {
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
}

.stat-num {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.stat-num__value {
    font-variant-numeric: tabular-nums;
}

.stat-num--text {
    font-variant-numeric: tabular-nums;
}

/* Cards */
.card-dark {
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: var(--radius);
    color: var(--text);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
}

.card-dark:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    border-color: rgba(34, 211, 238, 0.25);
}

.card-dark .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--cyan-dim);
    color: var(--cyan);
    font-size: 1.25rem;
}

.card-dark h3,
.card-dark .card-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.card-dark p,
.card-dark .text-muted {
    color: var(--text-muted) !important;
}

/* Product mini */
.product-mini-img {
    height: 160px;
    object-fit: cover;
    width: 100%;
    border-radius: 12px 12px 0 0;
}

/* Testimonial carousel */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
}

.testimonial-card .stars {
    color: #fbbf24;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.testimonial-highlight {
    border-radius: 16px;
    padding: 1rem 1.15rem;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(15, 23, 42, 0.55);
    height: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-highlight:hover {
    border-color: rgba(148, 163, 184, 0.28);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.testimonial-highlight__stat {
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.testimonial-highlight__sector {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.35rem;
    opacity: 0.9;
}

.testimonial-highlight__line {
    font-size: 0.82rem;
    margin-top: 0.35rem;
    line-height: 1.45;
}

.testimonial-highlight--emerald {
    box-shadow: inset 0 0 0 1px rgba(52, 211, 153, 0.2);
}
.testimonial-highlight--emerald .testimonial-highlight__stat {
    color: #6ee7b7;
}

.testimonial-highlight--violet {
    box-shadow: inset 0 0 0 1px rgba(167, 139, 250, 0.22);
}
.testimonial-highlight--violet .testimonial-highlight__stat {
    color: #c4b5fd;
}

.testimonial-highlight--cyan {
    box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.22);
}
.testimonial-highlight--cyan .testimonial-highlight__stat {
    color: #67e8f9;
}

.testimonial-card__ribbon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.65rem;
    font-size: 0.8rem;
    margin: 0 auto 1rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    max-width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.15);
    background: rgba(5, 8, 20, 0.45);
}

.testimonial-card__sector {
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.testimonial-card__pipe {
    opacity: 0.35;
}

.testimonial-card__statline {
    font-size: 0.8rem;
    text-align: left;
}

.testimonial-card__ribbon--emerald {
    border-color: rgba(52, 211, 153, 0.28);
    background: rgba(6, 78, 59, 0.2);
}
.testimonial-card__ribbon--emerald .testimonial-card__sector {
    color: #6ee7b7;
}

.testimonial-card__ribbon--violet {
    border-color: rgba(167, 139, 250, 0.28);
    background: rgba(76, 29, 149, 0.15);
}
.testimonial-card__ribbon--violet .testimonial-card__sector {
    color: #c4b5fd;
}

.testimonial-card__ribbon--cyan {
    border-color: rgba(34, 211, 238, 0.28);
    background: rgba(8, 47, 73, 0.35);
}
.testimonial-card__ribbon--cyan .testimonial-card__sector {
    color: #67e8f9;
}

.carousel-testimonials .testimonial-carousel-indicators {
    position: relative;
    margin-bottom: 0;
    justify-content: center;
    gap: 0.35rem;
}

.carousel-testimonials .testimonial-carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: rgba(148, 163, 184, 0.35);
    opacity: 1;
    margin: 0;
}

.carousel-testimonials .testimonial-carousel-indicators button.active {
    background: var(--cyan);
    transform: scale(1.15);
}

@media (max-width: 575.98px) {
    .testimonial-card__statline {
        flex-basis: 100%;
        text-align: center;
    }
}

.testimonial-section-title {
    font-size: clamp(1.25rem, 0.95rem + 1.4vw, 2.15rem);
    line-height: 1.25;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-section-lead {
    font-size: clamp(0.95rem, 0.88rem + 0.35vw, 1.1rem);
    max-width: 640px;
    line-height: 1.55;
}

/* Legacy blog / inner heroes */
.hero-section.dark {
    padding: 5rem 0 4rem;
    background: linear-gradient(145deg, #020617 0%, #0f172a 100%);
    color: #fff;
    margin-top: 0;
}

.hero-section.bg-light {
    background: rgba(15, 23, 42, 0.6) !important;
    color: var(--text);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Inner hero (subpages) */
.page-hero {
    padding: 4rem 0 3.5rem;
    background: linear-gradient(145deg, #020617 0%, #0f172a 60%, #134e4a 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.page-hero h1 {
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* Forms on dark */
.form-control,
.form-select {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(148, 163, 184, 0.25);
    color: var(--text);
}

.form-control:focus,
.form-select:focus {
    background: rgba(15, 23, 42, 0.95);
    border-color: var(--cyan);
    color: var(--text);
    box-shadow: 0 0 0 0.2rem rgba(34, 211, 238, 0.15);
}

.form-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Regions strip (above site footer) */
.site-countries {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(5, 8, 20, 0.75) 100%);
}

.site-countries__list {
    row-gap: 0.5rem;
}

.site-countries__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem 0.45rem 0.65rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.01em;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: #f1f5f9;
}

.site-countries__flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    line-height: 1;
    flex-shrink: 0;
}

.site-countries__name {
    padding-top: 0.05rem;
}

/* Footer */
.footer-cta {
    background: linear-gradient(135deg, #0c4a6e 0%, #0f172a 50%, #312e81 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.footer-main {
    background: #020617;
}

/* lg+: five equal columns (row-cols-lg-5); stacks on smaller screens */
.footer-main-row {
    --bs-gutter-x: 1.25rem;
}

.footer-main-row > .col {
    min-width: 0;
}

.footer-about {
    position: relative;
    padding: 0.65rem 0.5rem 0.65rem 0.65rem;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(34, 211, 238, 0.05) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(2, 6, 23, 0.35) 100%);
    border: 1px solid rgba(148, 163, 184, 0.1);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.footer-about::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    bottom: 0.6rem;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--cyan) 0%, rgba(34, 211, 238, 0.2) 100%);
}

.footer-about__kicker {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--cyan);
    margin: 0;
}

.footer-about__title {
    font-size: 0.95rem;
    letter-spacing: -0.02em;
}

.footer-about__blurb {
    font-size: 0.8125rem;
    line-height: 1.45;
    margin-bottom: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-about__quick {
    margin-bottom: 0;
}

.footer-about__quick li {
    margin-bottom: 0.35rem;
}

.footer-about__quick li:last-child {
    margin-bottom: 0;
}

.footer-about__quick a {
    color: rgba(226, 232, 240, 0.88);
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
}

.footer-about__quick a:hover {
    color: var(--cyan);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.footer-contact-list a,
.footer-contact-list span {
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.45;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--cyan);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    transition: background 0.2s, color 0.2s;
}

.social-icon:hover {
    background: var(--cyan-dim);
    color: var(--cyan);
}

/* Partners — technology integration cards */
.integration-card {
    background: rgba(12, 18, 36, 0.75);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.integration-card:hover {
    border-color: rgba(148, 163, 184, 0.28) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.integration-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    background: rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.integration-card--green .integration-card__icon {
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.25);
}

.integration-card--red .integration-card__icon {
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.25);
}

/* Product page — school “who uses” cards */
.product-who-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    background: rgba(34, 211, 238, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(34, 211, 238, 0.2);
}

/* Help FAB + panel — theme/help float only on lg+; mobile uses navbar toolbar */
@media (max-width: 991.98px) {
    .site-theme-fab-wrap--floating,
    .fab-help--floating {
        display: none !important;
    }
}

.nav-toolbar-btn {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    font-size: 1rem;
}

.nav-toolbar-btn:hover {
    border-color: rgba(34, 211, 238, 0.45) !important;
    color: var(--cyan) !important;
}

html[data-site-theme="light"] body.site-body .nav-toolbar-btn {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: #cbd5e1 !important;
    color: #0f172a !important;
}

html[data-site-theme="light"] body.site-body .nav-toolbar-btn:hover {
    background: #f1f5f9 !important;
    border-color: #94a3b8 !important;
    color: #0e7490 !important;
}

.fab-help,
.fab-wa {
    position: fixed;
    right: 22px;
    z-index: 1040;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    color: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.fab-help:hover,
.fab-wa:hover {
    transform: scale(1.05);
}

.fab-help {
    bottom: 96px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.fab-wa {
    bottom: 24px;
    background: #25d366;
    text-decoration: none;
}

.help-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.65);
    z-index: 1045;
    backdrop-filter: blur(4px);
}

.help-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 400px);
    height: 100%;
    z-index: 1050;
    background: var(--bg-elevated);
    border-left: 1px solid rgba(148, 163, 184, 0.15);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.help-panel.is-open {
    transform: translateX(0);
}

.help-faq-item.hidden {
    display: none;
}

.help-faq-empty {
    background: rgba(250, 204, 21, 0.07);
}

#helpFaqCount {
    min-height: 1.25rem;
}

.breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.35);
}

.breadcrumb-item a {
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--cyan);
}

.faq-category {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-category h4 {
    color: var(--cyan);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.pagination .page-link {
    background: var(--bg-card);
    border-color: rgba(148, 163, 184, 0.2);
    color: var(--text);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--cyan), #0ea5e9);
    border-color: transparent;
    color: #04121a;
}

/* Legacy / utilities */
.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
}

.btn-primary:hover {
    filter: brightness(1.08);
}

.btn-outline-light {
    border-radius: var(--radius-pill);
}

.animated-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.animated-card.offscreen {
    opacity: 0;
    transform: translateY(28px);
}

.slide-up {
    animation: slideUp 0.65s ease both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Light contrast blocks inside dark (e.g. legacy contact) */
.bg-light-soft {
    background: rgba(15, 23, 42, 0.55) !important;
}

/* Accordion FAQ */
.accordion-item {
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.12);
    color: var(--text);
}

.accordion-button {
    background: rgba(15, 23, 42, 0.9);
    color: var(--text);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.15), transparent);
    color: var(--cyan);
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    background: rgba(5, 8, 20, 0.5);
    color: var(--text-muted);
}

@media (max-width: 991px) {
    :root {
        --header-h: 64px;
    }

    .fab-help {
        bottom: 88px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .icon-ring {
        animation: none !important;
    }
}

/* --- Page: HRM / mesh heroes / lifts --- */
.page-hero--mesh {
    padding: 4rem 0 4.5rem;
    background: linear-gradient(165deg, #020617 0%, #0f172a 45%, #134e4a 100%);
    isolation: isolate;
}

/* Offers — hero stays above glow, comfortable top spacing */
.page-offers .page-hero--mesh,
.page-hero--offers {
    padding-top: 5.25rem;
    padding-bottom: 4.75rem;
    min-height: min(52vh, 520px);
}

.page-offers .page-hero__inner,
.page-hero--offers .page-hero__inner {
    position: relative;
    z-index: 2;
}

html[data-site-theme="light"] body.site-body.page-offers .page-hero--mesh,
html[data-site-theme="light"] body.site-body .page-hero--offers {
    min-height: min(48vh, 480px);
}

.hero-glow {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
}

.hero-glow--1 {
    width: 320px;
    height: 320px;
    background: var(--cyan);
    top: -80px;
    right: 10%;
}

.hero-glow--2 {
    width: 280px;
    height: 280px;
    background: var(--accent-2);
    bottom: -120px;
    left: 5%;
}

/* Split hero — right-column aside (contact, offers, etc.) */
.page-hero-aside-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(5, 8, 20, 0.88));
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.page-hero-aside-card__title {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--cyan);
    margin: 0;
}

.page-hero-aside-card__item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.page-hero-aside-card__icon {
    flex-shrink: 0;
    width: 1.25rem;
    text-align: center;
    line-height: 1.35;
}

.hrm-hero-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(5, 8, 20, 0.85));
    backdrop-filter: blur(12px);
}

/* HRM bottom CTA — watermark must not block clicks */
.hrm-cta-card {
    background: linear-gradient(155deg, rgba(17, 24, 39, 0.98), rgba(12, 18, 36, 0.98)) !important;
}

.hrm-cta-card__watermark {
    position: absolute;
    top: -0.5rem;
    right: -0.25rem;
    font-size: clamp(6rem, 22vw, 11rem);
    line-height: 1;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
    color: #fff;
}

.hrm-cta-card__content,
.hrm-cta-card__actions {
    position: relative;
    z-index: 2;
}

.hrm-cta-card__actions .btn {
    position: relative;
    z-index: 3;
}

/* Site-wide theme toggle — left; WhatsApp/help on the right */
.site-theme-fab-wrap {
    position: fixed;
    left: 1rem;
    bottom: 5.5rem;
    z-index: 1060;
}

@media (min-width: 992px) {
    .site-theme-fab-wrap {
        bottom: 2rem;
        left: 1.5rem;
    }
}

.site-theme-fab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.92);
    color: #e2e8f0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.site-theme-fab:hover {
    background: rgba(30, 41, 59, 0.95);
    color: #fff;
    border-color: rgba(34, 211, 238, 0.35);
}

html[data-site-theme="light"] body.site-body .site-theme-fab {
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

html[data-site-theme="light"] body.site-body .site-theme-fab:hover {
    background: #f8fafc;
    color: #0f172a;
}

/* Home — returning visitor: HR interest strip */
.home-interest-banner {
    background: rgba(15, 23, 42, 0.96) !important;
}

html[data-site-theme="light"] body.site-body .home-interest-banner {
    background: #f1f5f9 !important;
    border-color: #e2e8f0 !important;
}

html[data-site-theme="light"] body.site-body .home-interest-banner .text-white-50 {
    color: #475569 !important;
}

html[data-site-theme="light"] body.site-body .home-interest-banner .text-white {
    color: #0f172a !important;
}

/* HRM — light / grey reading theme */
html[data-site-theme="light"] body.site-body.site-body {
    background: #e8edf3 !important;
    color: #1e293b;
}

html[data-site-theme="light"] body.site-body .text-white {
    color: #0f172a !important;
}

html[data-site-theme="light"] body.site-body .text-white-50 {
    color: #475569 !important;
}

/* Light theme — section titles & kickers: strong contrast (not washed out) */
html[data-site-theme="light"] body.site-body .section-label {
    color: #0e7490 !important;
}

html[data-site-theme="light"] body.site-body .section h1.text-white,
html[data-site-theme="light"] body.site-body .section h2.text-white,
html[data-site-theme="light"] body.site-body .section h2.display-6,
html[data-site-theme="light"] body.site-body .section .display-6.fw-bold {
    color: #0f172a !important;
    font-weight: 800 !important;
}

html[data-site-theme="light"] body.site-body .section h3.h6.text-uppercase.text-white-50,
html[data-site-theme="light"] body.site-body .section h3.text-uppercase.text-white-50 {
    color: #0f172a !important;
    font-weight: 700 !important;
    opacity: 1 !important;
}

html[data-site-theme="light"] body.site-body .testimonial-section-title {
    color: #0f172a !important;
    font-weight: 800 !important;
}

html[data-site-theme="light"] body.site-body .card-dark h3,
html[data-site-theme="light"] body.site-body .card-dark h4,
html[data-site-theme="light"] body.site-body .card-dark h5,
html[data-site-theme="light"] body.site-body .card-dark .card-title {
    color: #0f172a !important;
    font-weight: 700 !important;
}

html[data-site-theme="light"] body.site-body .product-spotlight h3.text-white {
    color: #0f172a !important;
    font-weight: 800 !important;
}

html[data-site-theme="light"] body.site-body .site-countries h2.text-white {
    color: #0f172a !important;
    font-weight: 800 !important;
}

html[data-site-theme="light"] body.site-body .site-countries {
    background: linear-gradient(180deg, #f8fafc 0%, #e8edf3 100%) !important;
    border-color: #e2e8f0 !important;
}

html[data-site-theme="light"] body.site-body .site-countries .section-label {
    color: #0e7490 !important;
}

html[data-site-theme="light"] body.site-body .site-countries__pill {
    background: #ffffff !important;
    border-color: #cbd5e1 !important;
    color: #0f172a !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

html[data-site-theme="light"] body.site-body .site-header .navbar {
    background: rgba(255, 255, 255, 0.97) !important;
    border-bottom: 1px solid #cbd5e1;
}

html[data-site-theme="light"] body.site-body .navbar-dark .navbar-brand,
html[data-site-theme="light"] body.site-body .navbar-dark .nav-link {
    color: #1e293b !important;
}

html[data-site-theme="light"] body.site-body .navbar-dark .nav-link:hover,
html[data-site-theme="light"] body.site-body .navbar-dark .navbar-brand:hover {
    color: #0f172a !important;
}

html[data-site-theme="light"] body.site-body .navbar-dark .navbar-toggler-icon {
    filter: invert(0.85);
}

html[data-site-theme="light"] body.site-body .brand-text .text-white-50 {
    color: #64748b !important;
}

html[data-site-theme="light"] body.site-body .page-hero--mesh {
    background: linear-gradient(165deg, #f1f5f9 0%, #e2e8f0 45%, #dbeafe 100%) !important;
}

html[data-site-theme="light"] body.site-body .hero-glow {
    opacity: 0.35;
}

html[data-site-theme="light"] body.site-body .bg-section {
    background: linear-gradient(180deg, #e2e8f0 0%, #f1f5f9 100%) !important;
}

html[data-site-theme="light"] body.site-body .card-dark,
html[data-site-theme="light"] body.site-body .hrm-hero-card {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

html[data-site-theme="light"] body.site-body .hrm-cta-card {
    background: #ffffff !important;
    border-color: rgba(34, 211, 238, 0.35) !important;
}

html[data-site-theme="light"] body.site-body .page-hero-aside-card {
    background: rgba(255, 255, 255, 0.94) !important;
    border-color: #cbd5e1 !important;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

html[data-site-theme="light"] body.site-body .page-hero-aside-card .text-white {
    color: #0f172a !important;
}

html[data-site-theme="light"] body.site-body .page-hero-aside-card .text-white-50 {
    color: #64748b !important;
}

html[data-site-theme="light"] body.site-body .hrm-cta-card__watermark {
    color: #0f172a;
    opacity: 0.05;
}

html[data-site-theme="light"] body.site-body .stat-bubble {
    background: rgba(34, 211, 238, 0.08);
    border-color: rgba(34, 211, 238, 0.25);
}

html[data-site-theme="light"] body.site-body .stat-bubble__num {
    color: #0f172a;
}

html[data-site-theme="light"] body.site-body .site-footer {
    background: #f8fafc !important;
    color: #334155;
}

html[data-site-theme="light"] body.site-body .site-footer .text-white,
html[data-site-theme="light"] body.site-body .site-footer .footer-links a {
    color: #475569 !important;
}

html[data-site-theme="light"] body.site-body .site-footer .text-white-50 {
    color: #64748b !important;
}

html[data-site-theme="light"] body.site-body .site-footer .fw-bold.text-white {
    color: #0f172a !important;
}

html[data-site-theme="light"] body.site-body .footer-cta {
    background: linear-gradient(135deg, #e0f2fe 0%, #f1f5f9 50%, #e0e7ff 100%) !important;
}

html[data-site-theme="light"] body.site-body .footer-main {
    background: #f8fafc !important;
}

html[data-site-theme="light"] body.site-body .footer-about {
    background: linear-gradient(145deg, rgba(224, 242, 254, 0.75) 0%, #f8fafc 55%, #f1f5f9 100%);
    border-color: rgba(148, 163, 184, 0.28);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

html[data-site-theme="light"] body.site-body .footer-about__quick a {
    color: #475569 !important;
}

html[data-site-theme="light"] body.site-body .footer-about__quick a:hover {
    color: #0e7490 !important;
}

html[data-site-theme="light"] body.site-body .fab-help,
html[data-site-theme="light"] body.site-body .fab-wa {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

html[data-site-theme="light"] body.site-body .btn-outline-light {
    color: #0f172a !important;
    border-color: #64748b !important;
}

html[data-site-theme="light"] body.site-body .btn-outline-light:hover {
    background: #f1f5f9 !important;
    color: #0f172a !important;
    border-color: #475569 !important;
}

html[data-site-theme="light"] body.site-body .dropdown-menu-dark,
html[data-site-theme="light"] body.site-body .mega-menu-dropdown {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12) !important;
}

html[data-site-theme="light"] body.site-body .dropdown-item,
html[data-site-theme="light"] body.site-body .mega-menu-link {
    color: #334155 !important;
}

html[data-site-theme="light"] body.site-body .mega-menu-label {
    color: #64748b !important;
}

html[data-site-theme="light"] body.site-body .rounded-3.bg-dark.bg-opacity-50 {
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
}

/* Surfaces that stayed dark while text flipped — force light panels in light theme */
html[data-site-theme="light"] body.site-body .bg-dark.bg-opacity-10,
html[data-site-theme="light"] body.site-body .bg-dark.bg-opacity-25,
html[data-site-theme="light"] body.site-body .bg-dark.bg-opacity-30,
html[data-site-theme="light"] body.site-body .bg-dark.bg-opacity-40,
html[data-site-theme="light"] body.site-body .bg-dark.bg-opacity-50,
html[data-site-theme="light"] body.site-body .bg-dark.bg-opacity-75 {
    background-color: #f1f5f9 !important;
    background-image: none !important;
}

html[data-site-theme="light"] body.site-body .mission-card,
html[data-site-theme="light"] body.site-body .mission-card--accent {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
}

html[data-site-theme="light"] body.site-body .offer-card,
html[data-site-theme="light"] body.site-body .offer-card--muted {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08) !important;
}

html[data-site-theme="light"] body.site-body .home-offer-card__head {
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%) !important;
}

html[data-site-theme="light"] body.site-body .offer-card__badge--muted {
    background: #e2e8f0 !important;
    color: #475569 !important;
}

html[data-site-theme="light"] body.site-body .enquiry-hub {
    background: linear-gradient(180deg, #f8fafc 0%, #e8edf3 100%) !important;
    border-color: #e2e8f0 !important;
}

html[data-site-theme="light"] body.site-body .enquiry-card {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
}

html[data-site-theme="light"] body.site-body .enquiry-card--demo {
    background: linear-gradient(160deg, rgba(14, 165, 233, 0.1), #ffffff) !important;
    border-color: #bae6fd !important;
}

html[data-site-theme="light"] body.site-body .partner-tile.bg-dark,
html[data-site-theme="light"] body.site-body .industry-card.bg-dark {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
}

html[data-site-theme="light"] body.site-body .integration-card {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

html[data-site-theme="light"] body.site-body .product-who-card.bg-dark,
html[data-site-theme="light"] body.site-body .product-who-card {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
}

html[data-site-theme="light"] body.site-body .badge.bg-dark {
    background-color: #e2e8f0 !important;
    color: #0f172a !important;
    border: 1px solid #cbd5e1 !important;
}

html[data-site-theme="light"] body.site-body .blog-figure .bg-dark,
html[data-site-theme="light"] body.site-body .blog-figure figcaption.bg-dark {
    background: #f1f5f9 !important;
    color: #475569 !important;
}

html[data-site-theme="light"] body.site-body .icon-ring {
    background: rgba(34, 211, 238, 0.12);
    border-color: rgba(34, 211, 238, 0.25);
    color: #0891b2;
}

/* Light theme — design tokens + contrast (headings, links, cards) */
html[data-site-theme="light"] body.site-body {
    --text: #0f172a;
    --text-muted: #64748b;
    --bg-deep: #e8edf3;
    --bg-card: #ffffff;
    --bg-elevated: #f8fafc;
    --cyan-dim: rgba(14, 165, 233, 0.14);
}

html[data-site-theme="light"] body.site-body .prose strong {
    color: #0f172a !important;
}

html[data-site-theme="light"] body.site-body .prose a:not(.btn),
html[data-site-theme="light"] body.site-body .blog-prose a:not(.btn) {
    color: #0369a1 !important;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

html[data-site-theme="light"] body.site-body .prose a:not(.btn):hover,
html[data-site-theme="light"] body.site-body .blog-prose a:not(.btn):hover {
    color: #0c4a6e !important;
}

html[data-site-theme="light"] body.site-body .blog-prose.text-white-50,
html[data-site-theme="light"] body.site-body .blog-prose {
    color: #475569 !important;
}

html[data-site-theme="light"] body.site-body .blog-prose .lead {
    color: #334155 !important;
}

html[data-site-theme="light"] body.site-body .text-white-75 {
    color: rgba(15, 23, 42, 0.88) !important;
}

html[data-site-theme="light"] body.site-body .breadcrumb {
    --bs-breadcrumb-divider-color: rgba(15, 23, 42, 0.35);
}

html[data-site-theme="light"] body.site-body .breadcrumb-item a {
    color: #64748b !important;
}

html[data-site-theme="light"] body.site-body .breadcrumb-item a:hover {
    color: #0f172a !important;
}

html[data-site-theme="light"] body.site-body .breadcrumb-item.active {
    color: #0e7490 !important;
}

/* Inner heroes (products, services, FAQs, etc.) */
html[data-site-theme="light"] body.site-body .page-hero:not(.page-hero--mesh) {
    background: linear-gradient(165deg, #f8fafc 0%, #e2e8f0 50%, #e0f2fe 100%) !important;
    border-bottom-color: #cbd5e1 !important;
}

html[data-site-theme="light"] body.site-body .page-hero:not(.blog-post-hero) .display-1,
html[data-site-theme="light"] body.site-body .page-hero:not(.blog-post-hero) .display-2,
html[data-site-theme="light"] body.site-body .page-hero:not(.blog-post-hero) .display-3,
html[data-site-theme="light"] body.site-body .page-hero:not(.blog-post-hero) .display-4,
html[data-site-theme="light"] body.site-body .page-hero:not(.blog-post-hero) .display-5,
html[data-site-theme="light"] body.site-body .page-hero:not(.blog-post-hero) .display-6 {
    color: #0f172a !important;
}

/* Help / assistant drawer */
html[data-site-theme="light"] body.site-body .help-panel {
    background: #ffffff !important;
    border-left-color: #e2e8f0 !important;
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.08);
}

html[data-site-theme="light"] body.site-body .help-panel .border-secondary {
    border-color: #e2e8f0 !important;
}

html[data-site-theme="light"] body.site-body .help-panel strong,
html[data-site-theme="light"] body.site-body .help-panel .text-white {
    color: #0f172a !important;
}

html[data-site-theme="light"] body.site-body .help-panel .text-white-50 {
    color: #64748b !important;
}

html[data-site-theme="light"] body.site-body .help-panel .form-control,
html[data-site-theme="light"] body.site-body .help-panel #helpSearch {
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
    color: #0f172a !important;
}

html[data-site-theme="light"] body.site-body .help-panel .input-group-text {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    color: #64748b !important;
}

html[data-site-theme="light"] body.site-body .help-panel .alert-dark {
    background: #f1f5f9 !important;
    border-color: #e2e8f0 !important;
    color: #475569 !important;
}

html[data-site-theme="light"] body.site-body .help-panel .help-faq-item strong {
    color: #0f172a !important;
}

html[data-site-theme="light"] body.site-body .help-panel .help-faq-empty {
    background: #fffbeb !important;
    border-color: #fcd34d !important;
}

html[data-site-theme="light"] body.site-body .help-panel .help-faq-empty .text-white {
    color: #0f172a !important;
}

html[data-site-theme="light"] body.site-body .help-panel .btn-outline-secondary {
    color: #475569 !important;
    border-color: #cbd5e1 !important;
    background: #ffffff !important;
}

html[data-site-theme="light"] body.site-body .help-panel .btn-outline-secondary:hover {
    background: #f1f5f9 !important;
    color: #0f172a !important;
    border-color: #94a3b8 !important;
}

html[data-site-theme="light"] body.site-body .help-panel .btn-outline-light {
    color: #475569 !important;
    border-color: #cbd5e1 !important;
    background: #ffffff !important;
}

html[data-site-theme="light"] body.site-body .help-panel .btn-outline-light:hover {
    background: #f1f5f9 !important;
    color: #0f172a !important;
}

/* Blog index */
html[data-site-theme="light"] body.site-body .blog-hero {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%) !important;
    border-bottom-color: #e2e8f0 !important;
}

html[data-site-theme="light"] body.site-body .blog-card-v2 {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

html[data-site-theme="light"] body.site-body .blog-card-v2 .h5,
html[data-site-theme="light"] body.site-body .blog-card-v2 h2 {
    color: #0f172a !important;
}

html[data-site-theme="light"] body.site-body .blog-feature-mini .bg-dark {
    background: #f8fafc !important;
}

html[data-site-theme="light"] body.site-body .blog-filter-btn:not(.active) {
    color: #475569 !important;
    border-color: #cbd5e1 !important;
    background: #ffffff !important;
}

html[data-site-theme="light"] body.site-body .blog-filter-btn.active {
    color: #0f172a !important;
}

/* Article hero — dark scrim + photo: keep light text (overrides global .text-white flip) */
html[data-site-theme="light"] body.site-body .blog-post-hero .text-white {
    color: #ffffff !important;
}

html[data-site-theme="light"] body.site-body .blog-post-hero .text-white-50 {
    color: rgba(255, 255, 255, 0.82) !important;
}

html[data-site-theme="light"] body.site-body .blog-post-hero .text-white-75 {
    color: rgba(255, 255, 255, 0.9) !important;
}

html[data-site-theme="light"] body.site-body .blog-post-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75) !important;
}

html[data-site-theme="light"] body.site-body .blog-post-hero .breadcrumb-item a:hover {
    color: #ffffff !important;
}

html[data-site-theme="light"] body.site-body .blog-post-hero .breadcrumb-item.active {
    color: #67e8f9 !important;
}

html[data-site-theme="light"] body.site-body .blog-post-hero .blog-pill {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #e0f2fe !important;
}

/* Stats + home strips */
html[data-site-theme="light"] body.site-body .stats-strip {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
}

html[data-site-theme="light"] body.site-body .stat-num {
    color: #0f172a !important;
}

html[data-site-theme="light"] body.site-body .stat-bubble__lbl {
    color: #64748b !important;
}

/* Home hero — light slides (matches flipped heading colours) */
html[data-site-theme="light"] body.site-body .hero-home .carousel-item {
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 50%, #e0f2fe 100%) !important;
}

html[data-site-theme="light"] body.site-body .hero-home .carousel-control-prev,
html[data-site-theme="light"] body.site-body .hero-home .carousel-control-next {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: #cbd5e1 !important;
}

html[data-site-theme="light"] body.site-body .hero-home .carousel-control-prev-icon,
html[data-site-theme="light"] body.site-body .hero-home .carousel-control-next-icon {
    filter: invert(0.35);
}

html[data-site-theme="light"] body.site-body .hero-home .carousel-indicators [data-bs-target] {
    background: rgba(15, 23, 42, 0.22);
}

html[data-site-theme="light"] body.site-body .hero-home .carousel-indicators .active {
    background: #0891b2;
}

/* Caption on photo still sits on dark gradient — keep light text */
html[data-site-theme="light"] body.site-body .hero-slide-photo__caption .text-white-50 {
    color: rgba(255, 255, 255, 0.9) !important;
}

html[data-site-theme="light"] body.site-body .bg-mesh {
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(14, 165, 233, 0.1), transparent),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(167, 139, 250, 0.08), transparent);
}

/* Mobile nav drawer mega menus */
@media (max-width: 991.98px) {
    html[data-site-theme="light"] body.site-body .site-header .mega-menu-dropdown {
        background: #ffffff !important;
        border-color: #e2e8f0 !important;
        box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.04);
    }

    html[data-site-theme="light"] body.site-body .navbar-toggler-jutech:hover {
        background: rgba(15, 23, 42, 0.06);
    }

    html[data-site-theme="light"] body.site-body .navbar-toggler-jutech[aria-expanded="true"] {
        background: rgba(14, 165, 233, 0.12);
    }
}

/* Footer: stronger link hover on light */
html[data-site-theme="light"] body.site-body .footer-links a:hover,
html[data-site-theme="light"] body.site-body .footer-contact-list a:hover {
    color: #0284c7 !important;
}

/* Forms (contact, etc.) */
html[data-site-theme="light"] body.site-body .form-control,
html[data-site-theme="light"] body.site-body .form-select,
html[data-site-theme="light"] body.site-body textarea.form-control {
    background: #ffffff !important;
    border-color: #cbd5e1 !important;
    color: #0f172a !important;
}

html[data-site-theme="light"] body.site-body .form-control:focus,
html[data-site-theme="light"] body.site-body .form-select:focus,
html[data-site-theme="light"] body.site-body textarea.form-control:focus {
    background: #ffffff !important;
    border-color: #22d3ee !important;
    color: #0f172a !important;
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.2) !important;
}

/* FAQ blocks */
html[data-site-theme="light"] body.site-body .faq-category {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
}

html[data-site-theme="light"] body.site-body .faq-category h4 {
    color: #0e7490 !important;
}

/* Home: product / offer / testimonial cards */
html[data-site-theme="light"] body.site-body .product-spotlight,
html[data-site-theme="light"] body.site-body .offer-card:not(.offer-card--muted) {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
}

html[data-site-theme="light"] body.site-body .product-spotlight__kicker,
html[data-site-theme="light"] body.site-body .offer-card .small,
html[data-site-theme="light"] body.site-body .testimonial-card .text-white-50 {
    color: #64748b !important;
}

html[data-site-theme="light"] body.site-body .testimonial-card,
html[data-site-theme="light"] body.site-body .testimonial-highlight {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
}

html[data-site-theme="light"] body.site-body .testimonial-highlight__line,
html[data-site-theme="light"] body.site-body .testimonial-card p {
    color: #475569 !important;
}

html[data-site-theme="light"] body.site-body .testimonial-card__ribbon {
    background: #f1f5f9 !important;
    border-color: #e2e8f0 !important;
}

/* Light theme: card hovers — lift, layered shadow, cyan edge glow */
@media (prefers-reduced-motion: no-preference) {
    html[data-site-theme="light"] body.site-body .card-dark,
    html[data-site-theme="light"] body.site-body .hrm-hero-card,
    html[data-site-theme="light"] body.site-body .hrm-cta-card,
    html[data-site-theme="light"] body.site-body .mission-card,
    html[data-site-theme="light"] body.site-body .offer-card,
    html[data-site-theme="light"] body.site-body .enquiry-card,
    html[data-site-theme="light"] body.site-body .integration-card,
    html[data-site-theme="light"] body.site-body .partner-tile,
    html[data-site-theme="light"] body.site-body .blog-card-v2,
    html[data-site-theme="light"] body.site-body .testimonial-card,
    html[data-site-theme="light"] body.site-body .testimonial-highlight,
    html[data-site-theme="light"] body.site-body .product-who-card,
    html[data-site-theme="light"] body.site-body .faq-category,
    html[data-site-theme="light"] body.site-body .about-mv-card,
    html[data-site-theme="light"] body.site-body .stat-bubble {
        transition:
            transform 0.42s cubic-bezier(0.33, 1.1, 0.64, 1),
            box-shadow 0.42s ease,
            border-color 0.35s ease;
    }

    html[data-site-theme="light"] body.site-body .card-lift:hover {
        transform: translateY(-10px);
        box-shadow:
            0 28px 56px rgba(15, 23, 42, 0.11),
            0 0 0 1px rgba(34, 211, 238, 0.25),
            0 16px 48px rgba(14, 165, 233, 0.12);
        border-color: rgba(34, 211, 238, 0.38) !important;
    }

    html[data-site-theme="light"] body.site-body .card-dark:hover,
    html[data-site-theme="light"] body.site-body .hrm-hero-card:hover {
        transform: translateY(-8px);
        box-shadow:
            0 24px 48px rgba(15, 23, 42, 0.1),
            0 0 0 1px rgba(34, 211, 238, 0.3),
            0 12px 36px rgba(14, 165, 233, 0.14);
        border-color: rgba(34, 211, 238, 0.42) !important;
    }

    html[data-site-theme="light"] body.site-body .hrm-cta-card:hover {
        transform: translateY(-6px);
        box-shadow:
            0 20px 44px rgba(15, 23, 42, 0.1),
            0 0 0 1px rgba(34, 211, 238, 0.35),
            0 0 28px rgba(14, 165, 233, 0.12);
    }

    html[data-site-theme="light"] body.site-body .mission-card:hover {
        transform: translateY(-8px);
        box-shadow:
            0 22px 50px rgba(15, 23, 42, 0.12),
            0 0 0 1px rgba(34, 211, 238, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.85);
        border-color: rgba(34, 211, 238, 0.4) !important;
    }

    html[data-site-theme="light"] body.site-body .offer-card:hover {
        transform: translateY(-8px);
        box-shadow:
            0 26px 52px rgba(15, 23, 42, 0.12),
            0 0 0 1px rgba(34, 211, 238, 0.28),
            0 0 36px rgba(14, 165, 233, 0.1);
        border-color: rgba(34, 211, 238, 0.4) !important;
    }

    html[data-site-theme="light"] body.site-body .enquiry-card:hover {
        transform: translateY(-6px);
        box-shadow:
            0 22px 48px rgba(15, 23, 42, 0.12),
            0 0 0 1px rgba(34, 211, 238, 0.28),
            0 12px 32px rgba(14, 165, 233, 0.1);
        border-color: rgba(34, 211, 238, 0.38) !important;
    }

    html[data-site-theme="light"] body.site-body .integration-card:hover {
        transform: translateY(-5px);
        box-shadow:
            0 18px 44px rgba(15, 23, 42, 0.11),
            0 0 0 1px rgba(34, 211, 238, 0.3),
            0 12px 28px rgba(14, 165, 233, 0.1);
        border-color: rgba(34, 211, 238, 0.4) !important;
    }

    html[data-site-theme="light"] body.site-body .partner-tile:hover {
        transform: translateY(-8px);
        box-shadow:
            0 22px 46px rgba(15, 23, 42, 0.15),
            0 0 0 1px rgba(34, 211, 238, 0.2),
            0 0 32px rgba(14, 165, 233, 0.12);
    }

    html[data-site-theme="light"] body.site-body .blog-card-v2:hover {
        transform: translateY(-8px);
        box-shadow:
            0 26px 52px rgba(15, 23, 42, 0.11),
            0 0 0 1px rgba(34, 211, 238, 0.3),
            0 12px 40px rgba(14, 165, 233, 0.12);
    }

    html[data-site-theme="light"] body.site-body .testimonial-card:hover,
    html[data-site-theme="light"] body.site-body .testimonial-highlight:hover {
        transform: translateY(-6px);
        box-shadow:
            0 20px 44px rgba(15, 23, 42, 0.1),
            0 0 0 1px rgba(34, 211, 238, 0.22),
            0 0 24px rgba(14, 165, 233, 0.08);
        border-color: rgba(34, 211, 238, 0.35) !important;
    }

    html[data-site-theme="light"] body.site-body .product-who-card:hover {
        transform: translateY(-5px);
        box-shadow:
            0 18px 40px rgba(15, 23, 42, 0.1),
            0 0 0 1px rgba(34, 211, 238, 0.15);
        border-color: rgba(34, 211, 238, 0.35) !important;
    }

    html[data-site-theme="light"] body.site-body .faq-category:hover {
        transform: translateY(-4px);
        box-shadow:
            0 16px 40px rgba(15, 23, 42, 0.08),
            0 0 0 1px rgba(34, 211, 238, 0.2);
        border-color: rgba(34, 211, 238, 0.32) !important;
    }

    html[data-site-theme="light"] body.site-body .about-mv-card:hover {
        transform: translateY(-8px);
        border-color: rgba(34, 211, 238, 0.45) !important;
        box-shadow:
            0 24px 56px rgba(15, 23, 42, 0.12),
            0 0 0 1px rgba(34, 211, 238, 0.2),
            0 20px 48px rgba(14, 165, 233, 0.11),
            inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
    }

    html[data-site-theme="light"] body.site-body .stat-bubble:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(14, 165, 233, 0.14);
        border-color: rgba(34, 211, 238, 0.45) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html[data-site-theme="light"] body.site-body .card-lift:hover {
        transform: none;
        box-shadow:
            0 20px 44px rgba(15, 23, 42, 0.1),
            0 0 0 1px rgba(34, 211, 238, 0.22);
        border-color: rgba(34, 211, 238, 0.35) !important;
    }

    html[data-site-theme="light"] body.site-body .card-dark:hover,
    html[data-site-theme="light"] body.site-body .hrm-hero-card:hover,
    html[data-site-theme="light"] body.site-body .hrm-cta-card:hover,
    html[data-site-theme="light"] body.site-body .mission-card:hover,
    html[data-site-theme="light"] body.site-body .offer-card:hover,
    html[data-site-theme="light"] body.site-body .enquiry-card:hover,
    html[data-site-theme="light"] body.site-body .integration-card:hover,
    html[data-site-theme="light"] body.site-body .partner-tile:hover,
    html[data-site-theme="light"] body.site-body .blog-card-v2:hover,
    html[data-site-theme="light"] body.site-body .testimonial-card:hover,
    html[data-site-theme="light"] body.site-body .testimonial-highlight:hover,
    html[data-site-theme="light"] body.site-body .product-who-card:hover,
    html[data-site-theme="light"] body.site-body .faq-category:hover,
    html[data-site-theme="light"] body.site-body .about-mv-card:hover,
    html[data-site-theme="light"] body.site-body .stat-bubble:hover {
        transform: none;
    }
}

/* Pagination */
html[data-site-theme="light"] body.site-body .pagination .page-link {
    background: #ffffff !important;
    border-color: #cbd5e1 !important;
    color: #334155 !important;
}

html[data-site-theme="light"] body.site-body .pagination .page-item.active .page-link {
    color: #04121a !important;
}

.stat-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.stat-bubble__num {
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.stat-bubble__lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-lift {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.card-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.4);
    border-color: rgba(34, 211, 238, 0.25) !important;
}

.icon-ring {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, rgba(34, 211, 238, 0.2), rgba(167, 139, 250, 0.12));
    color: var(--cyan);
    font-size: 1.35rem;
    animation: iconFloat 4s ease-in-out infinite;
}

.icon-ring--sm {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    animation: none;
}

@keyframes iconFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.prose {
    line-height: 1.75;
    font-size: 1.02rem;
}

.prose p {
    margin-bottom: 1.1rem;
}

.prose strong {
    color: #e2e8f0;
}

.prose ul {
    padding-left: 1.25rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.blog-prose.lead,
.blog-prose .lead {
    font-size: 1.2rem;
    color: #cbd5e1;
}

/* Industries */
.industry-card__img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.industry-card__img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.industry-card:hover .industry-card__img {
    transform: scale(1.06);
}

.industry-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(5, 8, 20, 0.92) 100%);
}

.industry-card__icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(15, 23, 42, 0.85);
    color: var(--cyan);
    font-size: 1.2rem;
    border: 1px solid rgba(34, 211, 238, 0.3);
}

/* Partners */
.partner-tile {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.partner-avatar {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1rem;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.25), rgba(167, 139, 250, 0.2));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Blog listing */
.blog-hero {
    background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(34, 211, 238, 0.12), transparent),
        linear-gradient(180deg, #020617 0%, #0f172a 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.blog-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, #000 40%, transparent);
    pointer-events: none;
}

.py-lg-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

@media (min-width: 992px) {
    .py-lg-6 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
}

.blog-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(34, 211, 238, 0.12);
    color: var(--cyan);
    border: 1px solid rgba(34, 211, 238, 0.25);
}

.blog-filter-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: var(--text-muted);
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: rgba(34, 211, 238, 0.15);
    border-color: rgba(34, 211, 238, 0.35);
    color: #fff;
}

.blog-card-v2__media {
    height: 220px;
    overflow: hidden;
}

.blog-card-v2__media img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.blog-card-v2:hover .blog-card-v2__media img {
    transform: scale(1.05);
}

.blog-card-v2__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.blog-card-v2:hover .blog-card-v2__shine {
    transform: translateX(100%);
}

.blog-card-v2__icon {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(5, 8, 20, 0.75);
    color: var(--cyan);
    font-size: 1.1rem;
    border: 1px solid rgba(34, 211, 238, 0.25);
}

.object-fit-cover {
    object-fit: cover;
}

/* Blog post */
.blog-post-hero {
    min-height: 420px;
}

.blog-post-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.blog-post-hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 8, 20, 0.3) 0%, rgba(5, 8, 20, 0.92) 100%);
}

/* Blog post — body + share + figures */
.blog-share-bar .btn {
    font-size: 0.8rem;
}

.blog-figure img {
    max-height: 420px;
    object-fit: cover;
}

.blog-quote {
    background: rgba(15, 23, 42, 0.35);
    border-radius: 0 0.75rem 0.75rem 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.blog-sidebar {
    position: relative;
    max-width: 100%;
    min-width: 0;
}

@media (min-width: 992px) {
    .blog-sidebar {
        position: sticky;
        top: 5.5rem;
        align-self: flex-start;
    }
}

.blog-sidebar-card {
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(8px);
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.blog-sidebar-card--related {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}

.blog-sidebar-card__title {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    column-gap: 0.35rem;
    row-gap: 0.25rem;
}

.blog-sidebar-card__title > span {
    min-width: 0;
    flex: 1 1 12rem;
}

.blog-sidebar-item__thumb {
    width: 72px;
    height: 56px;
    background: #0f172a;
}

.blog-sidebar-item__link {
    min-width: 0;
    width: 100%;
}

.blog-sidebar-item__title {
    overflow-wrap: anywhere;
    word-break: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.blog-sidebar-item__link:hover .text-white {
    color: var(--cyan) !important;
}

.blog-sidebar-list > .blog-sidebar-item {
    min-width: 0;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.blog-sidebar-list > .blog-sidebar-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.blog-card-v2__share .btn-link:hover {
    color: var(--cyan) !important;
}

html[data-site-theme="light"] body.site-body .blog-sidebar-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: #cbd5e1 !important;
}

html[data-site-theme="light"] body.site-body .blog-sidebar-card .text-white {
    color: #0f172a !important;
}

html[data-site-theme="light"] body.site-body .blog-sidebar-card .text-white-50 {
    color: #64748b !important;
}

html[data-site-theme="light"] body.site-body .blog-prose .h4.text-white {
    color: #0f172a !important;
}

html[data-site-theme="light"] body.site-body .blog-quote {
    background: rgba(241, 245, 249, 0.9);
    color: #475569 !important;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.letter-spacing {
    letter-spacing: 0.12em;
}

/* Product spotlight trio (e-learning · payments · lending) */
.product-spotlight {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(5, 8, 20, 0.98) 100%);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.product-spotlight--violet {
    box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.25), 0 24px 48px rgba(0, 0, 0, 0.35);
}

.product-spotlight--cyan {
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.3), 0 24px 48px rgba(0, 0, 0, 0.35);
}

.product-spotlight--emerald {
    box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.28), 0 24px 48px rgba(0, 0, 0, 0.35);
}

.product-spotlight__media {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #0f172a;
}

@media (min-width: 992px) {
    .product-spotlight__media {
        height: 220px;
    }
}

.product-spotlight__icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    background: rgba(5, 8, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--cyan);
}

.product-spotlight--violet .product-spotlight__icon {
    color: #c4b5fd;
    border-color: rgba(167, 139, 250, 0.35);
}

.product-spotlight--emerald .product-spotlight__icon {
    color: #6ee7b7;
    border-color: rgba(52, 211, 153, 0.35);
}

.product-spotlight__kicker {
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.7rem;
}

/* About — mission & vision cards */
.about-mv-section .section-label {
    letter-spacing: 0.14em;
}

.about-mv-card {
    --mv-accent: var(--cyan);
    --mv-accent-dim: rgba(34, 211, 238, 0.12);
    background:
        linear-gradient(145deg, rgba(15, 23, 42, 0.92) 0%, rgba(5, 8, 20, 0.97) 50%, rgba(15, 23, 42, 0.88) 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.15),
        0 24px 48px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition:
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s ease,
        border-color 0.3s ease;
}

@media (prefers-reduced-motion: no-preference) {
    .about-mv-card:hover {
        transform: translateY(-6px);
        border-color: rgba(34, 211, 238, 0.35);
        box-shadow:
            0 8px 12px rgba(0, 0, 0, 0.2),
            0 32px 64px rgba(0, 0, 0, 0.35),
            0 0 0 1px rgba(34, 211, 238, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }
}

.about-mv-card--mission {
    --mv-accent: #22d3ee;
    --mv-accent-dim: rgba(34, 211, 238, 0.14);
}

.about-mv-card--vision {
    --mv-accent: #a78bfa;
    --mv-accent-dim: rgba(167, 139, 250, 0.14);
}

.about-mv-card--vision .about-mv-card__icon {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.22), rgba(167, 139, 250, 0.06));
    border-color: rgba(167, 139, 250, 0.4);
    color: #c4b5fd;
}

.about-mv-card__glow {
    position: absolute;
    width: 140%;
    height: 80%;
    top: -35%;
    left: -20%;
    border-radius: 50%;
    filter: blur(56px);
    opacity: 0.35;
    pointer-events: none;
}

.about-mv-card__glow--mission {
    background: radial-gradient(ellipse at 30% 30%, rgba(34, 211, 238, 0.45), transparent 55%);
}

.about-mv-card__glow--vision {
    background: radial-gradient(ellipse at 70% 20%, rgba(167, 139, 250, 0.4), transparent 55%);
}

.about-mv-card__inner {
    padding: 2rem 1.75rem 2.25rem;
    z-index: 1;
}

@media (min-width: 768px) {
    .about-mv-card__inner {
        padding: 2.25rem 2.25rem 2.5rem;
    }
}

.about-mv-card__icon-wrap {
    display: flex;
    align-items: center;
}

.about-mv-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.22), rgba(34, 211, 238, 0.06));
    border: 1px solid rgba(34, 211, 238, 0.38);
    color: var(--cyan);
    box-shadow: 0 8px 24px rgba(34, 211, 238, 0.12);
}

.about-mv-card__text {
    line-height: 1.75 !important;
    font-size: 1.05rem;
}

.about-mv-card--mission::before,
.about-mv-card--vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 4px 4px 0 0;
    z-index: 2;
    pointer-events: none;
}

.about-mv-card--mission::before {
    background: linear-gradient(90deg, transparent, var(--cyan), rgba(34, 211, 238, 0.4), transparent);
}

.about-mv-card--vision::before {
    background: linear-gradient(90deg, transparent, #a78bfa, rgba(167, 139, 250, 0.45), transparent);
}

html[data-site-theme="light"] body.site-body .about-mv-card {
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%) !important;
    border-color: #e2e8f0 !important;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.07) !important;
}

html[data-site-theme="light"] body.site-body .about-mv-card__glow--mission {
    opacity: 0.22;
}

html[data-site-theme="light"] body.site-body .about-mv-card__glow--vision {
    opacity: 0.2;
}

/* Mission / home teaser */
.mission-card--accent {
    border-color: rgba(34, 211, 238, 0.25) !important;
}

/* Offers */
.offer-card {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(5, 8, 20, 0.98) 100%);
    border: 1px solid rgba(148, 163, 184, 0.15);
}
.offer-card--cyan {
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.25), 0 20px 40px rgba(0, 0, 0, 0.3);
}
.offer-card--violet {
    box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.28), 0 20px 40px rgba(0, 0, 0, 0.3);
}
.offer-card--emerald {
    box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.28), 0 20px 40px rgba(0, 0, 0, 0.3);
}
.offer-card--muted {
    background: rgba(15, 23, 42, 0.65);
}
.home-offer-card__head {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, transparent 100%);
}
.offer-card__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.15);
    color: var(--cyan);
}
.offer-card__badge--muted {
    background: rgba(148, 163, 184, 0.2);
    color: #94a3b8;
}
.offer-card__state {
    flex-shrink: 0;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}
.offer-card__state--live {
    background: rgba(34, 211, 238, 0.15);
    color: #67e8f9;
}
.offer-card__state--upcoming {
    background: rgba(167, 139, 250, 0.18);
    color: #c4b5fd;
}

/* Enquiry hub (product + service pages) */
.enquiry-hub {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(5, 8, 20, 0.95) 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.enquiry-card {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.enquiry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    border-color: rgba(34, 211, 238, 0.2);
}

.enquiry-card--demo {
    background: linear-gradient(160deg, rgba(34, 211, 238, 0.08), rgba(15, 23, 42, 0.9));
    border-color: rgba(34, 211, 238, 0.25);
}

.enquiry-card__badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cyan);
}

.enquiry-card__badge--mail {
    color: #a5b4fc;
}

.enquiry-card__badge--chat {
    color: #4ade80;
}
