/*
    SYSmax Harmonised Presentation Layer
    -------------------------------------
    Purpose:
      - Modernise the existing MVC presentation without replacing Bootstrap/vendor CSS.
      - Keep existing classes/widgets working.
      - Provide one visual language for Sysmax corporate pages and Swift product pages.
      - Scope new components with the sx-* prefix to reduce collisions with legacy CSS.

    Load this file AFTER style.css and responsive.css.
*/

:root {
    --sx-primary: #0b5ed7;
    --sx-primary-dark: #084298;
    --sx-primary-deep: #062b68;
    --sx-accent: #28a8ff;
    --sx-ink: #10233f;
    --sx-muted: #66758a;
    --sx-soft: #f4f7fb;
    --sx-line: #e5ebf3;
    --sx-white: #ffffff;
    --sx-radius: 18px;
    --sx-radius-lg: 28px;
    --sx-shadow: 0 18px 55px rgba(16, 35, 63, .10);
    --sx-shadow-sm: 0 8px 28px rgba(16, 35, 63, .08);
    --sx-max: 1180px;
}

html {
    scroll-behavior: smooth;
}

body.sx-site {
    background: #fff;
    color: var(--sx-ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

.sx-site *,
.sx-site *::before,
.sx-site *::after {
    box-sizing: border-box;
}

.sx-site img {
    max-width: 100%;
}

.sx-site a {
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.sx-skip-link {
    position: fixed;
    left: 18px;
    top: -80px;
    z-index: 99999;
    padding: 10px 16px;
    background: var(--sx-ink);
    color: #fff;
    border-radius: 8px;
}

.sx-skip-link:focus {
    top: 18px;
    color: #fff;
}

/* Top bar */
.sx-topbar {
    background: #071a36;
    color: rgba(255,255,255,.82);
    font-size: 13px;
}

.sx-topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sx-social,
.sx-contact-strip {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sx-social a {
    color: rgba(255,255,255,.75);
    font-size: 14px;
}

.sx-social a:hover,
.sx-contact-strip a:hover {
    color: #fff;
}

.sx-contact-strip a {
    color: rgba(255,255,255,.86);
}

.sx-contact-strip i {
    margin-right: 6px;
}

.sx-topbar-divider {
    width: 1px;
    height: 15px;
    background: rgba(255,255,255,.18);
}

/* Header */
.sx-header {
    position: relative;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid rgba(16,35,63,.07);
    box-shadow: 0 4px 20px rgba(16,35,63,.04);
}

.sx-navbar {
    min-height: 82px;
    padding: 0;
}

.sx-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin-right: 42px;
}

.sx-brand img {
    width: 166px;
    height: auto;
    display: block;
}

.sx-nav {
    align-items: center;
    gap: 3px;
}

.sx-nav .nav-link {
    position: relative;
    padding: 30px 14px !important;
    color: #34455d;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.sx-nav .nav-link:hover,
.sx-nav .nav-link:focus,
.sx-nav .nav-item.active .nav-link {
    color: var(--sx-primary);
}

.sx-nav .nav-link::after {
    opacity: 0;
    transition: opacity .2s ease;
}

.sx-nav .nav-link:hover::after {
    opacity: 1;
}

.sx-swift-link span {
    color: var(--sx-primary);
    font-weight: 700;
}

.sx-nav-cta {
    margin-left: 8px;
}

.sx-nav-cta .nav-link {
    padding: 11px 17px !important;
    border-radius: 999px;
    background: var(--sx-primary);
    color: #fff !important;
}

.sx-nav-cta .nav-link:hover {
    background: var(--sx-primary-dark);
    transform: translateY(-1px);
}

.sx-nav-cta i {
    margin-left: 7px;
    font-size: 11px;
}

.sx-toggler {
    border: 1px solid var(--sx-line);
    padding: 8px 9px;
    border-radius: 10px;
    background: #fff;
}

.sx-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    background: var(--sx-ink);
}

/* Dropdown */
.sx-dropdown {
    min-width: 285px;
    padding: 10px;
    border: 1px solid var(--sx-line);
    border-radius: 16px;
    box-shadow: var(--sx-shadow);
    margin-top: 0;
}

.dropdown-menu.sx-dropdown {
    background-color: #fff !important;
}

.sx-dropdown-heading {
    padding: 10px 12px 12px;
}

.sx-dropdown-heading span,
.sx-dropdown-heading small {
    display: block;
}

.sx-dropdown-heading span {
    color: var(--sx-ink);
    font-weight: 800;
}

.sx-dropdown-heading small {
    color: var(--sx-muted);
    line-height: 1.4;
    margin-top: 2px;
}

.sx-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #33455e;
    font-size: 14px;
    font-weight: 600;
}

/* Defensive overrides: the legacy header/nav CSS styles .dropdown-item with
   its own background/color/sizing for the original single-level dropdown,
   and that rule is more specific than a plain .sx-dropdown-item class, so it
   wins the cascade even though this file loads after the legacy CSS. Pin
   every property the legacy rule could plausibly set. */
.dropdown-menu.sx-dropdown .dropdown-item.sx-dropdown-item {
    background-color: transparent !important;
    background-image: none !important;
    color: #33455e !important;
    height: auto !important;
    min-height: 0 !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    text-transform: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 10px 12px !important;
    border-radius: 10px !important;
    box-shadow: none !important;
}

.dropdown-menu.sx-dropdown .dropdown-item.sx-dropdown-item span {
    color: inherit !important;
    background: none !important;
}

.dropdown-menu.sx-dropdown .dropdown-item.sx-dropdown-item:hover,
.dropdown-menu.sx-dropdown .dropdown-item.sx-dropdown-item:focus {
    background-color: #f1f6fd !important;
    color: var(--sx-primary) !important;
}

.sx-dropdown-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf5ff;
    color: var(--sx-primary);
    font-size: 10px;
}

.dropdown-menu.sx-dropdown .sx-dropdown-icon {
    width: 26px !important;
    height: 26px !important;
    min-height: 0 !important;
    flex-shrink: 0;
}

.sx-dropdown-footer {
    border-top: 1px solid var(--sx-line);
    margin-top: 7px;
    padding: 12px 8px 5px;
}

.sx-dropdown-footer a {
    color: var(--sx-primary);
    font-size: 13px;
    font-weight: 700;
}

/* Hero */
.sx-hero {
    position: relative;
    background: #081b36;
    overflow: hidden;
}

.sx-hero .owl-main {
    margin: 0;
}

.sx-hero-slide {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sx-hero-image {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

.sx-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4,20,45,.92) 0%, rgba(5,29,61,.78) 42%, rgba(5,29,61,.30) 100%),
        linear-gradient(0deg, rgba(4,20,45,.35), transparent 40%);
}

.sx-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.sx-hero-content {
    width: min(690px, 100%);
    padding: 110px 0 125px;
    color: #fff;
}

.sx-eyebrow,
.sx-section-kicker {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--sx-primary);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
    font-weight: 800;
}

.sx-eyebrow {
    color: rgba(255,255,255,.78);
}

.sx-hero h1,
.sx-hero h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.07;
    letter-spacing: -.035em;
    font-weight: 800;
    max-width: 750px;
}

.sx-hero p {
    max-width: 610px;
    margin: 22px 0 30px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.75;
}

.sx-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.sx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none !important;
}

.sx-btn i {
    margin-left: 9px;
    font-size: 11px;
}

.sx-btn-primary {
    background: var(--sx-primary);
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(11,94,215,.28);
}

.sx-btn-primary:hover {
    background: #084fb5;
    transform: translateY(-2px);
    color: #fff;
}

.sx-btn-light {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.32);
    color: #fff !important;
    backdrop-filter: blur(8px);
}

.sx-btn-light:hover {
    background: #fff;
    border-color: #fff;
    color: var(--sx-ink) !important;
}

.sx-btn-white {
    background: #fff;
    color: var(--sx-primary) !important;
}

.sx-btn-white:hover {
    background: #f1f6ff;
    transform: translateY(-2px);
}

.sx-btn-ghost-light {
    background: transparent;
    border-color: rgba(255,255,255,.35);
    color: #fff !important;
}

.sx-btn-ghost-light:hover {
    background: rgba(255,255,255,.1);
    color: #fff !important;
}

.sx-hero-scroll {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 23px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.58);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.sx-hero-scroll span {
    display: block;
    width: 25px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 20px;
    position: relative;
}

.sx-hero-scroll span::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    width: 3px;
    height: 7px;
    border-radius: 3px;
    background: #fff;
    transform: translateX(-50%);
}

/* Generic sections */
.sx-section {
    padding: 105px 0;
}

.sx-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
    margin-bottom: 45px;
}

.sx-section-heading-centered {
    display: block;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.sx-section-heading h2,
.sx-about-copy h2,
.sx-swift h2,
.sx-cta h2 {
    margin: 0;
    color: var(--sx-ink);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -.035em;
    font-weight: 800;
}

.sx-section-heading p {
    max-width: 510px;
    margin: 0;
    color: var(--sx-muted);
}

.sx-section-heading-centered p {
    margin: 16px auto 0;
}

.sx-lead {
    color: var(--sx-muted);
    font-size: 17px;
}

/* Value strip */
.sx-value-strip {
    position: relative;
    z-index: 5;
}

/* The "floating card" overlap effect only makes sense when a value-strip
   sits directly under a dark hero section (it visually tucks the white
   card under the hero's bottom edge). Scoped via adjacent-sibling selector
   so it does NOT fire when a value-strip follows a plain content section
   (.sx-about) or the video intro (.sx-video-hero) — those need normal
   spacing, not an overlap. */
.sx-product-hero + .sx-value-strip,
.sx-hero + .sx-value-strip {
    margin-top: -42px;
}

.sx-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border: 1px solid var(--sx-line);
    border-radius: 18px;
    box-shadow: var(--sx-shadow);
    overflow: hidden;
}

.sx-value-item {
    display: flex;
    gap: 16px;
    padding: 28px;
}

.sx-value-item + .sx-value-item {
    border-left: 1px solid var(--sx-line);
}

.sx-value-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #edf5ff;
    color: var(--sx-primary);
}

.sx-value-item h2 {
    margin: 0 0 5px;
    color: var(--sx-ink);
    font-size: 15px;
    font-weight: 800;
}

.sx-value-item p {
    margin: 0;
    color: var(--sx-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* About */
.sx-about {
    padding-top: 120px;
}

.sx-image-frame {
    position: relative;
    padding-right: 38px;
}

.sx-image-frame::before {
    content: "";
    position: absolute;
    left: -18px;
    top: -18px;
    width: 150px;
    height: 150px;
    border: 2px solid #d9e9ff;
    border-radius: 28px;
    z-index: 0;
}

.sx-image-frame img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--sx-shadow);
}

.sx-image-badge {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 35px;
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--sx-shadow);
}

.sx-image-badge strong {
    color: var(--sx-primary);
    font-size: 18px;
}

.sx-image-badge span {
    color: var(--sx-muted);
    font-size: 12px;
}

.sx-about-copy {
    padding-left: 45px;
}

.sx-about-copy h2 {
    margin-bottom: 20px;
}

.sx-pill-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 25px 0 28px;
}

.sx-pill-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3b4e68;
    font-size: 14px;
    font-weight: 600;
}

.sx-pill-list i {
    color: var(--sx-primary);
}

.sx-text-link {
    color: var(--sx-primary);
    font-size: 14px;
    font-weight: 800;
}

.sx-text-link:hover {
    color: var(--sx-primary-dark);
}

.sx-text-link i {
    margin-left: 8px;
}

/* Solutions */
.sx-solutions {
    background: var(--sx-soft);
}

.sx-solution-grid {
    row-gap: 24px;
}

.sx-solution-card {
    position: relative;
    height: 100%;
    padding: 34px;
    background: #fff;
    border: 1px solid var(--sx-line);
    border-radius: var(--sx-radius);
    box-shadow: 0 5px 22px rgba(16,35,63,.04);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.sx-solution-card::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #f1f7ff;
}

.sx-solution-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sx-shadow);
    border-color: #cfe1f8;
}

.sx-solution-card-featured {
    background: linear-gradient(145deg, #0b5ed7, #07458f);
    border-color: transparent;
    color: #fff;
}

.sx-solution-card-featured::after {
    background: rgba(255,255,255,.08);
}

.sx-card-icon {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #edf5ff;
    color: var(--sx-primary);
    font-size: 25px;
    margin-bottom: 28px;
}

.sx-solution-card-featured .sx-card-icon {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.sx-card-number {
    position: absolute;
    right: 27px;
    top: 28px;
    z-index: 2;
    color: #b7c6d8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.sx-solution-card-featured .sx-card-number {
    color: rgba(255,255,255,.52);
}

.sx-solution-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: var(--sx-ink);
    font-size: 21px;
    font-weight: 800;
}

.sx-solution-card-featured h3 {
    color: #fff;
}

.sx-solution-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 22px;
    color: var(--sx-muted);
    font-size: 14px;
    line-height: 1.75;
}

.sx-solution-card-featured p {
    color: rgba(255,255,255,.78);
}

.sx-solution-card a {
    position: relative;
    z-index: 2;
    color: var(--sx-primary);
    font-size: 13px;
    font-weight: 800;
}

.sx-solution-card-featured a {
    color: #fff;
}

/* Swift */
.sx-swift {
    position: relative;
    overflow: hidden;
    background: #071f45;
}

.sx-swift::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -220px;
    top: -250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40,168,255,.22), transparent 68%);
}

.sx-kicker-light {
    color: #74c7ff;
}

.sx-swift h2 {
    color: #fff;
}

.sx-lead-light {
    color: rgba(255,255,255,.74);
}

.sx-swift-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 25px;
    margin: 25px 0 30px;
}

.sx-swift-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.88);
    font-size: 14px;
}

.sx-swift-features i {
    color: #63c3ff;
    font-size: 12px;
}

.sx-swift-actions {
    margin-top: 10px;
}

.sx-swift-visual {
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sx-swift-orbit {
    position: absolute;
    border: 1px solid rgba(109,198,255,.17);
    border-radius: 50%;
}

.sx-orbit-one {
    width: 390px;
    height: 390px;
}

.sx-orbit-two {
    width: 270px;
    height: 270px;
}

.sx-swift-panel {
    position: relative;
    z-index: 2;
    width: min(410px, 90%);
    padding: 18px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,.22);
    backdrop-filter: blur(18px);
}

.sx-swift-panel-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 750;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.sx-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #57d68d;
    box-shadow: 0 0 0 5px rgba(87,214,141,.1);
}

.sx-swift-panel-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 15px;
}

.sx-mini-stat {
    padding: 20px;
    background: rgba(255,255,255,.07);
    border-radius: 14px;
}

.sx-mini-stat strong,
.sx-mini-stat span {
    display: block;
}

.sx-mini-stat strong {
    color: #fff;
    font-size: 15px;
}

.sx-mini-stat span {
    margin-top: 3px;
    color: #8bd1ff;
    font-size: 11px;
}

/* Services */
.sx-services {
    background: #fff;
}

.sx-service-grid {
    row-gap: 18px;
}

.sx-service-card {
    position: relative;
    height: 100%;
    min-height: 250px;
    padding: 30px;
    border: 1px solid var(--sx-line);
    border-radius: 16px;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.sx-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sx-shadow-sm);
}

.sx-service-index {
    position: absolute;
    right: 22px;
    top: 18px;
    color: #c3cfdd;
    font-size: 11px;
    font-weight: 800;
}

.sx-service-card > i {
    display: block;
    margin-bottom: 22px;
    color: var(--sx-primary);
    font-size: 35px;
}

.sx-service-card h3 {
    margin: 0 0 10px;
    color: var(--sx-ink);
    font-size: 18px;
    font-weight: 800;
}

.sx-service-card p {
    margin: 0;
    color: var(--sx-muted);
    font-size: 13px;
    line-height: 1.75;
}

/* Testimonials */
.sx-testimonials {
    background: var(--sx-soft);
}

.sx-testimonial-slider {
    margin-top: 0;
}

.sx-testimonial-card {
    height: 100%;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--sx-line);
    border-radius: 18px;
    box-shadow: 0 7px 25px rgba(16,35,63,.04);
}

.sx-quote-mark {
    color: #b8d8ff;
    font-family: Georgia, serif;
    font-size: 55px;
    line-height: .7;
    margin-bottom: 22px;
}

.sx-testimonial-card p {
    min-height: 85px;
    margin: 0;
    color: #465a74;
    font-size: 15px;
    line-height: 1.8;
}

.sx-client {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

.sx-client-avatar {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf5ff;
    color: var(--sx-primary);
    font-size: 12px;
    font-weight: 800;
}

.sx-client strong,
.sx-client span {
    display: block;
}

.sx-client strong {
    color: var(--sx-ink);
    font-size: 13px;
}

.sx-client span {
    color: var(--sx-muted);
    font-size: 11px;
}

/* Proof */
.sx-proof {
    padding: 65px 0;
    background: #fff;
    border-top: 1px solid var(--sx-line);
    border-bottom: 1px solid var(--sx-line);
}

.sx-proof-item {
    text-align: center;
    padding: 8px 20px;
}

.sx-proof .col-md-4 + .col-md-4 .sx-proof-item {
    border-left: 1px solid var(--sx-line);
}

.sx-proof-item strong,
.sx-proof-item span {
    display: block;
}

.sx-proof-item strong {
    color: var(--sx-primary);
    font-size: 46px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.04em;
}

.sx-proof-item > span {
    margin-top: 8px;
    color: var(--sx-muted);
    font-size: 13px;
    font-weight: 650;
}

/* CTA */
.sx-cta {
    padding: 80px 0;
    background: #071f45;
}

.sx-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sx-cta h2 {
    max-width: 700px;
    color: #fff;
    margin-bottom: 12px;
}

.sx-cta p {
    margin: 0;
    color: rgba(255,255,255,.68);
}

/* Footer */
.sx-footer {
    background: #06162f;
    color: rgba(255,255,255,.7);
    padding: 75px 0 0;
}

.sx-footer-main {
    display: grid;
    grid-template-columns: 1.6fr .8fr 1fr 1.25fr;
    gap: 55px;
    padding-bottom: 55px;
}

.sx-footer-logo img {
    width: 165px;
    height: auto;
    display: block;
}

.sx-footer-brand p {
    max-width: 330px;
    margin: 22px 0 22px;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    line-height: 1.8;
}

.sx-footer-outline-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 9px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.sx-footer-outline-btn:hover {
    border-color: rgba(255,255,255,.45);
    color: #fff;
    background: rgba(255,255,255,.05);
}

.sx-footer-outline-btn i {
    margin-left: 8px;
}

.sx-footer-column h2 {
    margin: 3px 0 17px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 800;
}

.sx-footer-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sx-footer-column li {
    margin-bottom: 8px;
}

.sx-footer-column a {
    color: rgba(255,255,255,.62);
    font-size: 13px;
}

.sx-footer-column a:hover {
    color: #fff;
}

.sx-footer-contact address {
    margin: 0;
    font-style: normal;
}

.sx-contact-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255,255,255,.62);
    font-size: 12px;
    line-height: 1.7;
}

.sx-contact-row a {
    color: rgba(255,255,255,.72);
}

.sx-contact-icon {
    width: 20px;
    flex: 0 0 20px;
    color: #70c6ff;
}

.sx-footer-bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.09);
}

.sx-footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.42);
    font-size: 11px;
}

.sx-footer-social {
    display: flex;
    gap: 10px;
}

.sx-footer-social a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    color: rgba(255,255,255,.58);
    font-size: 11px;
}

.sx-footer-social a:hover {
    color: #fff;
    border-color: rgba(255,255,255,.35);
}

/* Owl navigation */
.sx-site .owl-theme .owl-nav {
    margin-top: 0;
}

.sx-site .owl-theme .owl-nav button {
    transition: all .2s ease;
}

.sx-hero .owl-nav {
    position: absolute;
    right: 35px;
    bottom: 30px;
}

.sx-hero .owl-nav button.owl-prev,
.sx-hero .owl-nav button.owl-next {
    width: 42px;
    height: 42px;
    margin: 0 4px;
    border: 1px solid rgba(255,255,255,.25) !important;
    border-radius: 50%;
    background: rgba(255,255,255,.08) !important;
    color: #fff !important;
}

.sx-hero .owl-nav button:hover {
    background: #fff !important;
    color: var(--sx-primary) !important;
}

.sx-site .owl-theme .owl-dots {
    margin-top: 20px;
}

.sx-hero .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 29px;
    transform: translateX(-50%);
    margin: 0;
}

.sx-hero .owl-theme .owl-dots .owl-dot span {
    width: 24px;
    height: 3px;
    margin: 5px 4px;
    border-radius: 5px;
    background: rgba(255,255,255,.35);
}

.sx-hero .owl-theme .owl-dots .owl-dot.active span {
    width: 40px;
    background: #fff;
}

.sx-testimonial-slider .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
}

.sx-testimonial-slider .owl-dots .owl-dot.active span {
    background: var(--sx-primary);
}

/* Keep legacy pages from inheriting old inline visual patterns too aggressively */
.sx-site main > section {
    max-width: 100%;
}

.sx-site main p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1199px) {
    .sx-brand {
        margin-right: 20px;
    }

    .sx-nav .nav-link {
        padding-left: 9px !important;
        padding-right: 9px !important;
        font-size: 13px;
    }

    .sx-nav-cta {
        margin-left: 3px;
    }

    .sx-footer-main {
        gap: 35px;
    }
}

@media (max-width: 991px) {
    .sx-topbar {
        display: none;
    }

    .sx-navbar {
        min-height: 74px;
        padding: 9px 0;
    }

    .sx-brand {
        margin-right: 0;
    }

    .sx-brand img {
        width: 150px;
    }

    .sx-toggler {
        margin-left: auto;
    }

    .sx-nav-collapse {
        padding: 10px 0 15px;
    }

    .sx-nav {
        gap: 0;
        align-items: stretch;
    }

    .sx-nav .nav-link {
        padding: 12px 4px !important;
        border-bottom: 1px solid #edf1f6;
    }

    .sx-nav-cta {
        margin: 12px 0 0;
    }

    .sx-nav-cta .nav-link {
        display: inline-flex;
        width: fit-content;
        padding: 11px 16px !important;
    }

    .sx-dropdown {
        position: static !important;
        float: none;
        width: 100%;
        min-width: 0;
        box-shadow: none;
        border: 0;
        border-left: 2px solid #edf5ff;
        border-radius: 0;
        margin: 4px 0 8px;
        padding: 4px 0 4px 12px;
    }

    .sx-dropdown-heading,
    .sx-dropdown-footer {
        display: none;
    }

    .sx-dropdown-item {
        padding: 9px 8px;
    }

    .sx-hero-slide {
        min-height: 570px;
    }

    .sx-hero-content {
        padding: 95px 0 105px;
    }

    .sx-value-grid {
        grid-template-columns: 1fr;
    }

    .sx-value-item + .sx-value-item {
        border-left: 0;
        border-top: 1px solid var(--sx-line);
    }

    .sx-about-copy {
        padding: 50px 15px 0;
    }

    .sx-image-frame {
        padding-right: 25px;
    }

    .sx-section-heading {
        display: block;
    }

    .sx-section-heading > p {
        margin-top: 16px;
    }

    .sx-swift-visual {
        margin-top: 50px;
        min-height: 390px;
    }

    .sx-footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .sx-footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .sx-section {
        padding: 75px 0;
    }

    .sx-hero-slide {
        min-height: 590px;
    }

    .sx-hero-overlay {
        background:
            linear-gradient(90deg, rgba(4,20,45,.90), rgba(4,20,45,.68)),
            linear-gradient(0deg, rgba(4,20,45,.35), transparent);
    }

    .sx-hero-content {
        padding: 80px 15px 95px;
    }

    .sx-hero h1,
    .sx-hero h2 {
        font-size: 39px;
    }

    .sx-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

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

    .sx-btn {
        width: 100%;
    }

    .sx-hero .owl-nav {
        right: 15px;
        bottom: 20px;
    }

    .sx-hero .owl-dots {
        left: 15px;
        transform: none;
        bottom: 30px;
    }

    .sx-hero-scroll {
        display: none;
    }

    .sx-value-strip {
        margin-top: -25px;
    }

    .sx-value-item {
        padding: 22px;
    }

    .sx-image-frame img {
        height: 380px;
    }

    .sx-image-badge {
        right: 0;
        bottom: 22px;
    }

    .sx-about-copy {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sx-swift-features {
        grid-template-columns: 1fr;
    }

    .sx-swift-visual {
        min-height: 330px;
    }

    .sx-orbit-one {
        width: 300px;
        height: 300px;
    }

    .sx-orbit-two {
        width: 210px;
        height: 210px;
    }

    .sx-proof {
        padding: 45px 0;
    }

    .sx-proof .col-md-4 + .col-md-4 .sx-proof-item {
        border-left: 0;
        border-top: 1px solid var(--sx-line);
        margin-top: 20px;
        padding-top: 25px;
    }

    .sx-cta-inner {
        display: block;
    }

    .sx-cta-inner .sx-btn {
        margin-top: 25px;
        width: auto;
    }

    .sx-footer {
        padding-top: 55px;
    }

    .sx-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 38px 25px;
    }

    .sx-footer-brand,
    .sx-footer-contact {
        grid-column: 1 / -1;
    }

    .sx-footer-bottom {
        padding: 20px 0;
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 479px) {
    .sx-hero h1,
    .sx-hero h2 {
        font-size: 34px;
    }

    .sx-section-heading h2,
    .sx-about-copy h2,
    .sx-swift h2,
    .sx-cta h2 {
        font-size: 31px;
    }

    .sx-image-frame {
        padding-right: 12px;
    }

    .sx-image-frame::before {
        left: -8px;
        top: -8px;
    }

    .sx-image-frame img {
        height: 320px;
        border-radius: 18px;
    }

    .sx-swift-panel-body {
        grid-template-columns: 1fr;
    }

    .sx-swift-visual {
        min-height: 420px;
    }

    .sx-footer-main {
        grid-template-columns: 1fr;
    }

    .sx-footer-column {
        grid-column: auto;
    }

    .sx-footer-contact {
        grid-column: auto;
    }
}

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

    .sx-site *,
    .sx-site *::before,
    .sx-site *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ================================================================
   STABILITY PATCH — layout/footer overflow and legacy theme cleanup
   ================================================================ */

/* The legacy theme's .wraper can impose page-height/float behaviour.
   The new presentation should size itself naturally to its content. */
.sx-site,
.sx-site body,
.sx-site .sx-page,
.sx-site main {
    margin: 0 !important;
    padding-left: 0;
    padding-right: 0;
}

.sx-site .sx-page {
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
}

.sx-site main {
    display: block;
    min-height: 0 !important;
    height: auto !important;
}

.sx-site main::after,
.sx-site .sx-page::after {
    content: "";
    display: table;
    clear: both;
}

/* Footer is deliberately self-contained so legacy .footer/.footer_* rules
   cannot make its children float into one another. */
.sx-site .sx-footer {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    clear: both;
    overflow: hidden;
}

.sx-site .sx-footer-main {
    width: 100%;
    align-items: start;
}

.sx-site .sx-footer-main > * {
    min-width: 0;
    float: none !important;
    position: relative;
}

.sx-site .sx-footer-column,
.sx-site .sx-footer-brand {
    width: auto !important;
    max-width: none !important;
}

.sx-site .sx-footer-contact,
.sx-site .sx-footer-contact address {
    min-width: 0;
    max-width: 100%;
}

.sx-site .sx-contact-row {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
}

.sx-site .sx-contact-row > span:last-child,
.sx-site .sx-contact-row > a {
    min-width: 0;
}

.sx-site .sx-footer-bottom {
    position: relative;
    clear: both;
    width: 100%;
}

/* Prevent Bootstrap/legacy theme column floats from affecting the new footer. */
.sx-site .sx-footer .row,
.sx-site .sx-footer [class*="col-"] {
    float: none;
}

/* Tablet: two predictable footer columns are safer than the old 3-column
   breakpoint, particularly for long product names and contact details. */
@media (max-width: 991px) and (min-width: 768px) {
    .sx-site .sx-footer-main {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        gap: 42px 45px;
    }

    .sx-site .sx-footer-brand,
    .sx-site .sx-footer-column,
    .sx-site .sx-footer-contact {
        grid-column: auto !important;
    }

    .sx-site .sx-footer-contact {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 767px) {
    .sx-site .sx-footer-main {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
        padding-bottom: 38px;
    }

    .sx-site .sx-footer-brand,
    .sx-site .sx-footer-column,
    .sx-site .sx-footer-contact {
        grid-column: auto !important;
    }

    .sx-site .sx-footer-bottom {
        min-height: 0;
        padding: 20px 0 24px;
        flex-wrap: wrap;
    }

    .sx-site .sx-footer-bottom p {
        max-width: 100%;
        line-height: 1.6;
    }
}

/* Keep the final section flush with the footer. */
.sx-site .sx-cta:last-child,
.sx-site main > .sx-cta {
    margin-bottom: 0 !important;
}

/* Never let the hero/carousel itself create an accidental extra block below. */
.sx-site .sx-hero,
.sx-site .sx-hero .owl-carousel,
.sx-site .sx-hero .owl-stage-outer {
    margin-bottom: 0 !important;
}

/* Branch name above address – ensure it's block and styled like a heading */
.sx-branch-name {
    font-size: 0.75rem;
    margin-bottom: 0.25rem; /* small gap before address */
    display: block;
    color: inherit; /* keep footer text colour */
}

/* If you want the branch name to stand out more, you can add: */
.sx-branch-name {
    color: #fff; /* or your theme’s accent colour */
}

/* Ensure address rows keep their flex alignment */
.sx-contact-row {
    display: flex;
    align-items: flex-start; /* or center, but flex-start looks better for multi-line addresses */
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.sx-contact-icon {
    flex-shrink: 0;
    width: 1.2rem; /* fixed width for icon alignment */
    text-align: center;
}

/* If the address lines are long, allow wrapping */
.sx-contact-row span:last-child {
    word-break: break-word;
}
/* =========================================================
   Interior page header (About / Contact / FAQ / Products)
   ========================================================= */
.sx-page-header {
    position: relative;
    padding: 150px 0 60px;
    background: linear-gradient(120deg, var(--sx-primary-deep), var(--sx-primary-dark) 60%, var(--sx-primary));
    color: #fff;
    overflow: hidden;
}
.sx-page-header::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.sx-page-header-inner {
    position: relative;
    z-index: 1;
}
.sx-page-header h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}
.sx-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,.75);
}
.sx-breadcrumb a {
    color: rgba(255,255,255,.9);
}
.sx-breadcrumb a:hover {
    color: #fff;
}
.sx-breadcrumb .sx-crumb-sep {
    opacity: .5;
}
.sx-breadcrumb .active {
    color: #fff;
    font-weight: 600;
}

/* =========================================================
   Contact page
   ========================================================= */
.sx-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 70px;
}
@media (max-width: 991px) {
    .sx-contact-grid {
        grid-template-columns: 1fr;
    }
}
.sx-contact-card {
    padding: 32px;
    background: #fff;
    border: 1px solid var(--sx-line);
    border-radius: var(--sx-radius);
    box-shadow: var(--sx-shadow-sm);
    text-align: left;
}
.sx-contact-card .sx-card-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--sx-soft);
    color: var(--sx-primary);
    font-size: 22px;
    margin-bottom: 18px;
}
.sx-contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.sx-contact-card p {
    color: var(--sx-muted);
    margin-bottom: 4px;
}
.sx-contact-form-wrap {
    background: var(--sx-soft);
    border-radius: var(--sx-radius-lg);
    padding: 50px;
}
@media (max-width: 767px) {
    .sx-contact-form-wrap {
        padding: 30px 20px;
    }
}
.sx-contact-form-wrap h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}
.sx-contact-form-wrap .sx-lead {
    margin-bottom: 0;
}
.sx-map-frame {
    border-radius: var(--sx-radius-lg);
    overflow: hidden;
    box-shadow: var(--sx-shadow);
    line-height: 0;
}
.sx-map-frame iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* =========================================================
   FAQ accordion
   ========================================================= */
.sx-faq-accordion {
    max-width: 880px;
    margin: 0 auto;
}
.sx-faq-item {
    background: #fff;
    border: 1px solid var(--sx-line);
    border-radius: var(--sx-radius);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--sx-shadow-sm);
}
.sx-faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 22px 26px;
    background: none;
    border: 0;
    text-align: left;
    font-size: 17px;
    font-weight: 700;
    color: var(--sx-ink);
    cursor: pointer;
}
.sx-faq-question .sx-faq-num {
    color: var(--sx-primary);
    font-weight: 800;
    min-width: 32px;
}
.sx-faq-question .sx-faq-caret {
    margin-left: auto;
    transition: transform .2s ease;
    color: var(--sx-muted);
}
.sx-faq-question[aria-expanded="true"] .sx-faq-caret {
    transform: rotate(180deg);
    color: var(--sx-primary);
}
.sx-faq-answer .card-body {
    padding: 0 26px 26px 74px;
    color: var(--sx-muted);
}
.sx-faq-answer ul {
    margin: 12px 0 0;
    padding-left: 18px;
}
.sx-faq-contact-note {
    text-align: center;
    margin-top: 40px;
    color: var(--sx-muted);
}
.sx-faq-contact-note a {
    color: var(--sx-primary);
    font-weight: 700;
}

/* =========================================================
   Product page hero (Pharmacy / HRM / future modules)
   ========================================================= */
.sx-product-hero {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(120deg, var(--sx-primary-deep), var(--sx-primary-dark) 65%, var(--sx-primary));
    color: #fff;
    overflow: hidden;
}
.sx-product-hero::before {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -140px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}
.sx-product-hero .sx-section-kicker {
    color: #bcd6ff;
}
.sx-product-hero h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
}
.sx-product-hero .sx-lead-light {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 560px;
}
.sx-product-visual {
    position: relative;
}
.sx-product-panel {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--sx-radius-lg);
    padding: 30px;
    backdrop-filter: blur(6px);
}
.sx-product-panel-top {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    margin-bottom: 20px;
}
.sx-product-panel-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Problem / pain-point strip (reuses sx-value-* grid but on soft background) */
.sx-problem {
    background: var(--sx-soft);
}

/* Breadcrumb helper used inside .sx-swift-panel-style status dot, reused here */

/* =========================================================
   Products & Services — video intro + product grid
   ========================================================= */
.sx-video-hero {
    padding: 60px 0 10px;
}
.sx-video-frame {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    border-radius: var(--sx-radius-lg);
    overflow: hidden;
    box-shadow: var(--sx-shadow);
    background: #000;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}
.sx-video-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .82;
    transition: opacity .25s ease, transform .4s ease;
}
.sx-video-frame:hover img {
    opacity: .65;
    transform: scale(1.02);
}
.sx-video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.sx-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,.35);
    transition: transform .2s ease;
}
.sx-video-frame:hover .sx-video-play {
    transform: translate(-50%, -50%) scale(1.08);
}
.sx-video-play i {
    color: var(--sx-primary);
    font-size: 30px;
    margin-left: 5px;
}
.sx-video-caption {
    text-align: center;
    color: var(--sx-muted);
    margin-top: 18px;
    font-size: 15px;
}

/* Product grid */
.sx-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 991px) {
    .sx-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .sx-product-grid {
        grid-template-columns: 1fr;
    }
}
.sx-product-tile {
    position: relative;
    display: block;
    background: #fff;
    border: 1px solid var(--sx-line);
    border-radius: var(--sx-radius);
    padding: 34px 28px 28px;
    text-decoration: none;
    box-shadow: var(--sx-shadow-sm);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sx-product-tile::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sx-primary), var(--sx-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.sx-product-tile:hover {
    transform: translateY(-8px);
    box-shadow: var(--sx-shadow);
    border-color: transparent;
    text-decoration: none;
}
.sx-product-tile:hover::before {
    transform: scaleX(1);
}
.sx-product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--sx-soft);
    color: var(--sx-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
}
.sx-product-tile-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--sx-soft);
    color: var(--sx-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: background .25s ease, color .25s ease;
}
.sx-product-tile:hover .sx-product-tile-icon {
    background: var(--sx-primary);
    color: #fff;
}
.sx-product-tile h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--sx-ink);
    margin-bottom: 10px;
}
.sx-product-tile p {
    color: var(--sx-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 22px;
}
.sx-product-tile-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--sx-primary);
    font-size: 14.5px;
}
.sx-product-tile-cta i {
    transition: transform .2s ease;
}
.sx-product-tile:hover .sx-product-tile-cta i {
    transform: translateX(4px);
}

/* =========================================================
   Global "Book a Demo" modal (Google Form embed)
   ========================================================= */
.sx-demo-modal .modal-dialog {
    max-width: 640px;
}
.sx-demo-modal-content {
    border: 0;
    border-radius: var(--sx-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(6, 43, 104, .35);
}
.sx-demo-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 0;
    background: rgba(16, 35, 63, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    color: var(--sx-ink);
    cursor: pointer;
}
.sx-demo-modal-close:hover {
    background: rgba(16, 35, 63, .12);
}
.sx-demo-modal-header {
    text-align: center;
    padding: 34px 30px 10px;
}
.sx-demo-modal-header img {
    max-height: 44px;
    margin-bottom: 14px;
}
.sx-demo-modal-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--sx-ink);
    margin-bottom: 6px;
}
.sx-demo-modal-header p {
    color: var(--sx-muted);
    font-size: 14.5px;
    margin-bottom: 0;
}
.sx-demo-modal-body {
    padding: 10px 0 0;
    width: 100%;
    height: 480px;
    overflow: hidden;
}
.sx-demo-modal-body iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
@media (max-width: 767px) {
    .sx-demo-modal-body {
        height: 60vh;
    }
}
.sx-demo-modal-footer {
    background: var(--sx-soft);
    padding: 18px 24px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.sx-demo-modal-footer span {
    color: var(--sx-muted);
    font-size: 13.5px;
    width: 100%;
    margin-bottom: 4px;
}
.sx-demo-modal-footer a {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--sx-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sx-pill-list-light span {
    color: rgba(255,255,255,.92);
}
.sx-pill-list-light i {
    color: #7fc4ff;
}
