/* ============================================
   BLAZE TECHNOLOGY SOLUTIONS - HOMEPAGE CSS
   Premium Design System (Stripe/Linear inspired)
   ============================================ */

:root {
    --bts-primary: #01add3;
    --bts-primary-dark: #0192b3;
    --bts-primary-light: #e0f2fe;
    --bts-navy: #0a2540;
    --bts-navy-light: #0d3356;
    --bts-text: #0a2540;
    --bts-text-light: #425466;
    --bts-text-muted: #8898aa;
    --bts-white: #ffffff;
    --bts-bg-light: #f6f9fc;
    --bts-border: rgba(10, 37, 64, 0.08);
    --bts-shadow: 0 2px 8px rgba(10, 37, 64, 0.08);
    --bts-shadow-hover: 0 12px 32px rgba(10, 37, 64, 0.12);
    --bts-radius: 16px;
    --bts-radius-sm: 12px;
    --bts-purple: #7c3aed;
    --bts-green: #16a34a;
    --bts-orange: #ea580c;
    --bts-teal: #0d9488;
}

/* ============================================
   RESET & BASE
   ============================================ */
.page-container,
.web-footer,
[data-page-container] {
    display: none !important;
}

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--bts-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Container */
.bts-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVBAR — White Full-Width Design
   ============================================ */
/* ============================================
   NAVBAR — Transparent top → floating dark pill on scroll
   ============================================ */
.bts-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
    transition: transform 0.36s ease, background 0.36s ease,
                box-shadow 0.36s ease, border-color 0.36s ease,
                padding 0.36s ease;
}

.bts-navbar.bts-navbar-hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

.bts-navbar::before,
.bts-navbar::after { display: none; }

/* Scroll progress bar */
.bts-nav-progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--bts-primary), #7c3aed);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 0 2px 2px 0;
}
.bts-navbar.bts-navbar-scrolled .bts-nav-progress { opacity: 1; }

/* ---- Scrolled: solid white navbar ---- */
.bts-navbar.bts-navbar-scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: rgba(10, 37, 64, 0.08);
    box-shadow: 0 2px 20px rgba(10, 37, 64, 0.10);
    padding: 0;
}

.bts-navbar.bts-navbar-scrolled .bts-container {
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 0 32px;
    height: 62px;
}

/* Section variants */
.bts-navbar.bts-nav-s-products,
.bts-navbar.bts-nav-s-about,
.bts-navbar.bts-nav-s-services,
.bts-navbar.bts-nav-s-faq,
.bts-navbar.bts-nav-s-testimonials,
.bts-navbar.bts-nav-s-blog,
.bts-navbar.bts-nav-s-contact {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(10, 37, 64, 0.08);
}

/* ---- Default nav link styles (white — over dark hero) ---- */
.bts-nav-links > li > a {
    color: rgba(255, 255, 255, 0.90) !important;
    transition: color 0.22s, background 0.22s;
}
.bts-nav-links > li > a i { color: rgba(255, 255, 255, 0.55) !important; }
.bts-nav-links > li > a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.12) !important;
}
.bts-nav-links > li > a.active {
    color: #01add3 !important;
    background: rgba(1, 173, 211, 0.15) !important;
}

/* ---- Scrolled: black links on white navbar ---- */
.bts-navbar.bts-navbar-scrolled .bts-nav-links > li > a {
    color: #000000 !important;
}
.bts-navbar.bts-navbar-scrolled .bts-nav-links > li > a i {
    color: #555555 !important;
}
.bts-navbar.bts-navbar-scrolled .bts-nav-links > li > a:hover {
    color: var(--bts-primary) !important;
    background: var(--bts-primary-light) !important;
}
.bts-navbar.bts-navbar-scrolled .bts-nav-links > li > a.active {
    color: var(--bts-primary) !important;
    background: var(--bts-primary-light) !important;
}

/* Logo — original colors on white navbar */
.bts-navbar.bts-navbar-scrolled .bts-logo img {
    height: 32px;
    filter: none;
}

/* Login button on white navbar */
.bts-navbar.bts-navbar-scrolled .bts-btn-outline {
    color: #374151 !important;
    border-color: rgba(10, 37, 64, 0.25) !important;
}
.bts-navbar.bts-navbar-scrolled .bts-btn-outline:hover {
    color: var(--bts-primary) !important;
    border-color: var(--bts-primary) !important;
    background: var(--bts-primary-light) !important;
}

/* Login outline — white over hero */
.bts-navbar .bts-btn-outline {
    color: rgba(255,255,255,0.90) !important;
    border-color: rgba(255,255,255,0.40) !important;
}
.bts-navbar .bts-btn-outline:hover {
    color: #fff !important;
    border-color: #fff !important;
    background: rgba(255,255,255,0.10) !important;
}

/* Hamburger — white over hero, dark on white scrolled navbar */
.bts-menu-toggle span { background: #fff; }
.bts-navbar.bts-navbar-scrolled .bts-menu-toggle span { background: #374151; }

/* ---- Container layout ---- */
.bts-navbar .bts-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 68px;
    padding: 0 32px;
    max-width: 1280px;
    margin: 0 auto;
    transition: height 0.36s ease, padding 0.36s ease,
                background 0.36s ease, border-radius 0.36s ease,
                border-color 0.36s ease, box-shadow 0.36s ease;
}

/* Logo */
.bts-logo img {
    height: 52px;
    width: auto;
    transition: height 0.36s ease, filter 0.36s ease;
    display: block;
}
.bts-navbar.bts-navbar-scrolled .bts-logo img {
    height: 44px;
    filter: none;
}

/* Nav links — centered */
.bts-nav-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Actions — right */
.bts-nav-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}

/* Search button */
.bts-nav-search-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.35);
    background: transparent;
    color: rgba(255,255,255,0.90);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    flex-shrink: 0;
}
.bts-nav-search-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}
.bts-navbar.bts-navbar-scrolled .bts-nav-search-btn {
    border-color: rgba(10, 37, 64, 0.20);
    color: #374151;
}
.bts-navbar.bts-navbar-scrolled .bts-nav-search-btn:hover {
    background: var(--bts-primary-light);
    border-color: var(--bts-primary);
    color: var(--bts-primary);
}

/* Search overlay */
.bts-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 21, 41, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.bts-search-overlay.bts-search-open {
    opacity: 1;
    visibility: visible;
}

.bts-search-box {
    width: 100%;
    max-width: 640px;
    margin: 0 20px;
    transform: translateY(-20px);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bts-search-overlay.bts-search-open .bts-search-box {
    transform: translateY(0);
}

.bts-search-inner {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 0 20px;
    box-shadow: 0 24px 64px rgba(6, 21, 41, 0.35);
    border: 2px solid transparent;
    transition: border-color 0.2s;
}
.bts-search-inner:focus-within {
    border-color: var(--bts-primary);
}

.bts-search-icon {
    color: #94a3b8;
    font-size: 16px;
    flex-shrink: 0;
    margin-right: 14px;
}

.bts-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    color: #0a2540;
    padding: 18px 0;
    background: transparent;
}
.bts-search-input::placeholder { color: #94a3b8; }

.bts-search-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.bts-search-close:hover { background: #fee2e2; color: #dc2626; }

.bts-search-suggestions {
    margin-top: 12px;
    padding: 0 8px;
}
.bts-search-hint {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin: 0;
}
.bts-search-hint span {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    padding: 3px 10px;
    border-radius: 20px;
    margin: 3px 4px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 12px;
    font-weight: 500;
}
.bts-search-hint span:hover {
    background: rgba(1, 173, 211, 0.3);
    border-color: rgba(1, 173, 211, 0.5);
    color: #fff;
}

/* Search results */
.bts-search-results {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(6,21,41,0.25);
}
.bts-search-results:empty { display: none; }

.bts-search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
    text-decoration: none;
}
.bts-search-result-item:last-child { border-bottom: none; }
.bts-search-result-item:hover { background: #f0fbff; }

.bts-search-result-icon {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: #e0f7fd;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    color: #01add3;
}
.bts-search-result-text { flex: 1; }
.bts-search-result-title {
    font-size: 14px;
    font-weight: 600;
    color: #0a2540;
    margin: 0 0 2px;
}
.bts-search-result-desc {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}
.bts-search-no-result {
    padding: 16px 20px;
    font-size: 13.5px;
    color: #64748b;
    text-align: center;
}

.bts-nav-actions .bts-btn {
    padding: 8px 18px;
    font-size: 13px;
}

/* Desktop nav wrapper */
.bts-nav-desktop {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Mobile nav drawer (outside navbar, fixed full-height) */
/* ============================================================
   Mobile Nav Drawer — Dark Glassmorphism
   ============================================================ */
.bts-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: #f0f9ff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-left: 2px solid #01add3;
    padding: 0 0 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
    z-index: 1001;
    box-shadow: -8px 0 40px rgba(1, 173, 211, 0.18);
    scrollbar-width: none;
}
.bts-nav-menu::-webkit-scrollbar { display: none; }
.bts-nav-menu.active { transform: translateX(0); }

/* Top accent bar */
.bts-nav-menu::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, #0192b3, #01add3, #00c9f0);
    flex-shrink: 0;
}

/* Drawer header */
.bts-nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px 16px;
    border-bottom: 1px solid #e0f2fe;
    position: sticky;
    top: 0;
    background: #f0f9ff;
    z-index: 2;
}

.bts-nav-drawer-header .bts-logo img {
    height: 44px;
    width: auto;
    filter: none;
}

.bts-nav-drawer-close {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid #bae6fd;
    background: #f0f9ff;
    color: #0369a1;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    flex-shrink: 0;
}
.bts-nav-drawer-close:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #ef4444;
}

/* Nav links inside drawer */
.bts-nav-menu .bts-nav-links {
    padding: 10px 16px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bts-nav-menu .bts-nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    font-size: 14.5px;
    font-weight: 600;
    color: #0f2557 !important;
    border-radius: 10px;
    border-left: 2px solid transparent;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.bts-nav-menu .bts-nav-links > li > a:hover,
.bts-nav-menu .bts-nav-links > li > a.active {
    background: #e0f2fe !important;
    color: #0192b3 !important;
    border-left-color: #01add3;
}

/* Dropdown arrow */
.bts-nav-menu .bts-nav-links > li > a .fa-chevron-down {
    margin-left: auto;
    font-size: 11px;
    opacity: 0.5;
    transition: transform 0.25s;
}
.bts-nav-menu .bts-dropdown.active > a .fa-chevron-down {
    transform: rotate(180deg);
    opacity: 1;
    color: #01add3;
}

/* Dropdown menu inside drawer */
.bts-nav-menu .bts-dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    background: #f0f9ff !important;
    border: 1px solid #bae6fd !important;
    border-radius: 10px !important;
    margin: 4px 0 4px 14px !important;
    padding: 4px 0 !important;
    display: none;
}
.bts-nav-menu .bts-dropdown.active .bts-dropdown-menu { display: block; }
.bts-nav-menu .bts-dropdown-menu li a {
    color: #0369a1 !important;
    font-size: 13.5px !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    border-left: 2px solid transparent !important;
    display: block;
}
.bts-nav-menu .bts-dropdown-menu li a:hover {
    color: #0192b3 !important;
    background: #e0f2fe !important;
    border-left-color: #01add3 !important;
}

/* Action buttons */
.bts-nav-menu .bts-nav-actions {
    padding: 14px 16px 0;
    margin-top: 10px;
    border-top: 1px solid #e0f2fe;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bts-nav-menu .bts-nav-actions .bts-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 13.5px;
    padding: 11px 20px;
}
.bts-nav-menu .bts-nav-actions .bts-btn-primary {
    background: linear-gradient(135deg, #0192b3, #01add3) !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(1, 173, 211, 0.30) !important;
}
.bts-nav-menu .bts-nav-actions .bts-btn-primary:hover {
    opacity: 0.90 !important;
    transform: translateY(-1px) !important;
}
.bts-nav-menu .bts-nav-actions .bts-btn-outline {
    background: #ffffff !important;
    border: 1.5px solid #01add3 !important;
    color: #01add3 !important;
}
.bts-nav-menu .bts-nav-actions .bts-btn-outline:hover {
    background: #e0f2fe !important;
    color: #0192b3 !important;
}

/* Contact section at bottom */
.bts-drawer-contact {
    margin: 16px 16px 0;
    padding: 16px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bts-drawer-contact-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #0192b3;
    margin-bottom: 2px;
}

.bts-drawer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border-radius: 8px;
    padding: 4px 2px;
    transition: background 0.2s;
}
.bts-drawer-contact-item:hover { background: #e0f2fe; text-decoration: none; }

.bts-drawer-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(1, 173, 211, 0.15);
    border: 1px solid rgba(1, 173, 211, 0.25);
    color: #01add3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.bts-drawer-contact-icon--wa {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.25);
    color: #25d366;
}

.bts-drawer-contact-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
}

.bts-drawer-contact-value {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0f2557;
}

.bts-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
    align-items: center;
}

.bts-nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 13px;
    color: var(--bts-text-light);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 10px;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.bts-nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--bts-primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.bts-nav-links > li > a:hover {
    color: var(--bts-primary);
    background: var(--bts-primary-light);
    text-decoration: none;
}

.bts-nav-links > li > a:hover::after {
    transform: scaleX(1);
}

.bts-nav-links > li > a.active {
    color: var(--bts-primary);
    background: var(--bts-primary-light);
    font-weight: 600;
}

.bts-nav-links > li > a.active::after {
    transform: scaleX(1);
}

.bts-nav-links > li > a i {
    font-size: 9px;
    color: var(--bts-text-muted);
    transition: transform 0.25s ease;
}

/* Dropdown */
.bts-dropdown { position: relative; }

.bts-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 210px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(10, 37, 64, 0.14), 0 2px 8px rgba(10, 37, 64, 0.08);
    padding: 6px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px) scale(0.98);
    transform-origin: top left;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 100;
    border: 1px solid rgba(10, 37, 64, 0.07);
}

.bts-dropdown.open .bts-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.bts-dropdown.open > a i {
    transform: rotate(180deg);
    color: var(--bts-primary);
}

.bts-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    color: var(--bts-text);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 9px;
    transition: color 0.2s ease, background 0.2s ease;
}

.bts-dropdown-menu li a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bts-primary);
    opacity: 0;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.bts-dropdown-menu li a:hover {
    background: var(--bts-primary-light);
    color: var(--bts-primary);
    text-decoration: none;
}

.bts-dropdown-menu li a:hover::before { opacity: 1; }

/* Nav Actions */
.bts-nav-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid var(--bts-border);
}

/* ============================================
   BUTTONS
   ============================================ */
.bts-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}

.bts-btn-primary {
    background: var(--bts-primary);
    color: var(--bts-white);
    border-color: var(--bts-primary);
}

.bts-btn-primary:hover {
    background: var(--bts-primary-dark);
    border-color: var(--bts-primary-dark);
    color: var(--bts-white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 173, 211, 0.3);
}

.bts-btn-outline {
    background: transparent;
    color: var(--bts-primary);
    border-color: var(--bts-primary);
}

.bts-btn-outline:hover {
    background: var(--bts-primary);
    color: var(--bts-white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 173, 211, 0.2);
}

.bts-btn-white {
    background: var(--bts-white);
    color: var(--bts-primary);
    border-color: var(--bts-white);
}

.bts-btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--bts-primary-dark);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
}

.bts-btn-outline-white {
    background: transparent;
    color: var(--bts-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.bts-btn-outline-white:hover {
    background: var(--bts-white);
    color: var(--bts-navy);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.bts-btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

/* Purple Buttons (VMS) */
/* Purple → Blue */
.bts-btn-purple {
    background: var(--bts-primary);
    color: var(--bts-white);
    border-color: var(--bts-primary);
}
.bts-btn-purple:hover {
    background: var(--bts-primary-dark);
    border-color: var(--bts-primary-dark);
    color: var(--bts-white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 173, 211, 0.35);
}
.bts-btn-outline-purple {
    background: transparent;
    color: var(--bts-primary);
    border-color: var(--bts-primary);
}
.bts-btn-outline-purple:hover {
    background: var(--bts-primary);
    color: var(--bts-white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 173, 211, 0.25);
}

/* Orange → Blue */
.bts-btn-orange {
    background: var(--bts-primary);
    color: var(--bts-white);
    border-color: var(--bts-primary);
}
.bts-btn-orange:hover {
    background: var(--bts-primary-dark);
    border-color: var(--bts-primary-dark);
    color: var(--bts-white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 173, 211, 0.35);
}
.bts-btn-outline-orange {
    background: transparent;
    color: var(--bts-primary);
    border-color: var(--bts-primary);
}
.bts-btn-outline-orange:hover {
    background: var(--bts-primary);
    color: var(--bts-white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 173, 211, 0.25);
}

/* Teal → Blue */
.bts-btn-teal {
    background: var(--bts-primary);
    color: var(--bts-white);
    border-color: var(--bts-primary);
}
.bts-btn-teal:hover {
    background: var(--bts-primary-dark);
    border-color: var(--bts-primary-dark);
    color: var(--bts-white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 173, 211, 0.35);
}
.bts-btn-outline-teal {
    background: transparent;
    color: var(--bts-primary);
    border-color: var(--bts-primary);
}
.bts-btn-outline-teal:hover {
    background: var(--bts-primary);
    color: var(--bts-white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(1, 173, 211, 0.25);
}

/* Mobile Menu Toggle */
.bts-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.bts-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--bts-navy);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

.bts-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.bts-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.bts-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay Backdrop */
.bts-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 37, 64, 0.50);
    z-index: 998;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    cursor: pointer;
}

.bts-nav-overlay.active {
    display: block;
}

/* ============================================
   HERO SECTION — Full-bleed Glass Card Design
   ============================================ */
.bts-hero {
    margin-top: 0;
    padding-top: 0;
    position: relative;
    overflow: hidden;
}

.bts-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
}

.bts-hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
    background: #061529;
}

/* ---- Slide base ---- */
.bts-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.bts-hero-slide.active { opacity: 1; }

/* ---- Background image with Ken Burns ---- */
.bts-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.07);
    transition: transform 8s ease;
}

.bts-hero-slide.active .bts-hero-bg { transform: scale(1); }

/* ---- Left-to-right vignette — text side dark, image side open ---- */
.bts-hero-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(4, 12, 24, 0.97) 0%,
        rgba(4, 12, 24, 0.82) 32%,
        rgba(4, 12, 24, 0.38) 60%,
        rgba(4, 12, 24, 0.04) 100%
    );
}

/* Slide-specific vignette tints */
.bts-hero-slide--frappe .bts-hero-vignette {
    background: linear-gradient(to right, rgba(30,12,4,0.97) 0%, rgba(30,12,4,0.78) 35%, rgba(30,12,4,0.20) 65%, transparent 100%);
}
.bts-hero-slide--vms .bts-hero-vignette {
    background: linear-gradient(to right, rgba(10,6,30,0.97) 0%, rgba(10,6,30,0.78) 35%, rgba(10,6,30,0.20) 65%, transparent 100%);
}
.bts-hero-slide--opensource .bts-hero-vignette {
    background: linear-gradient(to right, rgba(2,20,14,0.97) 0%, rgba(2,20,14,0.78) 35%, rgba(2,20,14,0.20) 65%, transparent 100%);
}

/* ---- Ghost number — huge stroke text top-right ---- */
.bts-hero-ghost-num {
    position: absolute;
    top: 20px;
    right: 48px;
    font-size: 240px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -16px;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.06);
    pointer-events: none;
    z-index: 1;
    user-select: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.bts-hero-slide.active .bts-hero-ghost-num {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Vertical left accent bar ---- */
.bts-hero-left-bar {
    position: absolute;
    top: 0; left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--bts-primary) 30%, var(--bts-primary) 70%, transparent 100%);
    z-index: 3;
}

/* ---- Content ---- */
.bts-hero-content {
    position: absolute;
    bottom: 80px;
    left: 80px;
    max-width: 580px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--bts-white);
}

.bts-hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 0;
    color: var(--bts-white);
    letter-spacing: -2px;
}

/* ---- Thin teal divider ---- */
.bts-hero-divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(to right, var(--bts-primary), transparent);
    border-radius: 2px;
    margin: 20px 0;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.5s ease 0.9s, transform 0.5s ease 0.9s;
}

.bts-hero-slide.active .bts-hero-divider {
    opacity: 1;
    transform: scaleX(1);
}

.bts-hero-content p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    max-width: 460px;
}

/* ---- Text-link CTA ---- */
.bts-hero-text-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-bottom: 1px solid rgba(1, 173, 211, 0.5);
    padding-bottom: 4px;
    transition: gap 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.bts-hero-text-cta:hover {
    gap: 20px;
    color: var(--bts-primary);
    border-color: var(--bts-primary);
    text-decoration: none;
}

/* ---- Stroke accent text ---- */
.bts-stroke-blue   { color: transparent; -webkit-text-stroke: 2px var(--bts-primary); }
.bts-stroke-orange { color: transparent; -webkit-text-stroke: 2px #fb923c; }
.bts-stroke-green  { color: transparent; -webkit-text-stroke: 2px #10b981; }

/* ---- Solid accent text ---- */
.bts-text-blue   { color: var(--bts-primary); }
.bts-text-orange { color: #fb923c; }
.bts-text-green  { color: #10b981; }

.bts-hero-btns { display: flex; gap: 14px; }

/* ---- Partner badge ---- */
.bts-hero-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(234, 88, 12, 0.20);
    border: 1px solid rgba(234, 88, 12, 0.45);
    color: #fb923c;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.bts-hero-partner-badge i { font-size: 14px; }

.bts-hero-badge--green {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.bts-hero-slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(1, 173, 211, 0.18);
    border: 1px solid rgba(1, 173, 211, 0.35);
    color: var(--bts-primary);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

/* ---- Slider arrows ---- */
.bts-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(10, 37, 64, 0.60);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(1, 173, 211, 0.45);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease,
                box-shadow 0.3s ease, transform 0.3s ease;
    bottom: auto;
}

/* Spinning ring on hover */
.bts-slider-arrow::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(1, 173, 211, 0);
    transition: border-color 0.3s ease;
    animation: none;
}

.bts-slider-arrow:hover {
    background: rgba(1, 173, 211, 0.28);
    border-color: #01add3;
    box-shadow: 0 0 24px rgba(1, 173, 211, 0.45),
                0 0 6px rgba(1, 173, 211, 0.20) inset;
    transform: translateY(-50%) scale(1.10);
}

.bts-slider-arrow:hover::before {
    border-color: rgba(1, 173, 211, 0.55);
    animation: bts-ring-spin 3s linear infinite;
}

@keyframes bts-ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Arrow icon shift on hover */
.bts-slider-prev:hover i { transform: translateX(-2px); }
.bts-slider-next:hover i { transform: translateX(2px); }
.bts-slider-arrow i { transition: transform 0.2s ease; }

.bts-slider-prev { left: 24px;  right: auto; }
.bts-slider-next { right: 24px; left: auto; }

/* ---- Slider dots ---- */
.bts-slider-dots {
    position: absolute;
    bottom: 52px;
    right: 172px;
    display: flex;
    gap: 8px;
    z-index: 10;
    left: auto;
}

.bts-slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.30);
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
    border: none;
    flex-shrink: 0;
}

.bts-slider-dot.active {
    background: var(--bts-primary);
    width: 28px;
    border-radius: 4px;
}

/* ============================================
   HERO — Dynamic animations & effects
   ============================================ */

/* ---- Keyframes ---- */
@keyframes bts-fadeup {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bts-fadedown {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bts-fadeleft {
    from { opacity: 0; transform: translateX(-28px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes bts-ring-pulse {
    0%, 100% { transform: scale(1);    opacity: 0.12; }
    50%       { transform: scale(1.1); opacity: 0.26; }
}
@keyframes bts-ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes bts-glow-pulse {
    0%, 100% { filter: brightness(1); }
    50%       { filter: brightness(1.4) drop-shadow(0 0 10px currentColor); }
}
@keyframes bts-shimmer-pass {
    0%   { left: -120%; }
    100% { left: 200%; }
}
@keyframes bts-progress-fill {
    from { width: 0%; }
    to   { width: 100%; }
}
@keyframes bts-counter-pop {
    0%   { opacity: 0; transform: translateY(6px) scale(0.85); }
    100% { opacity: 1; transform: translateY(0)   scale(1); }
}

/* ---- Staggered content entry ---- */
.bts-hero-slide .bts-hero-partner-badge,
.bts-hero-slide .bts-hero-content h1,
.bts-hero-slide .bts-hero-content p,
.bts-hero-slide .bts-hero-text-cta { opacity: 0; }

.bts-hero-slide.active .bts-hero-partner-badge {
    animation: bts-fadedown 0.6s cubic-bezier(0.22,1,0.36,1) 0.45s both;
}
.bts-hero-slide.active .bts-hero-content h1 {
    animation: bts-fadeleft 0.75s cubic-bezier(0.22,1,0.36,1) 0.55s both;
}
.bts-hero-slide.active .bts-hero-content p {
    animation: bts-fadeup   0.7s cubic-bezier(0.22,1,0.36,1) 0.95s both;
}
.bts-hero-slide.active .bts-hero-text-cta {
    animation: bts-fadeup   0.7s cubic-bezier(0.22,1,0.36,1) 1.10s both;
}

/* ---- Accent text glow pulse ---- */
.bts-text-blue   { color: var(--bts-primary); animation: bts-glow-pulse 3s ease-in-out infinite; }
.bts-text-orange { color: #fb923c;            animation: bts-glow-pulse 3s ease-in-out infinite 0.5s; }
.bts-text-green  { color: #10b981;            animation: bts-glow-pulse 3s ease-in-out infinite 1s; }

/* shimmer removed — no card box */

/* ---- Floating decorative rings (added via JS) ---- */
.bts-hero-decor { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }

.bts-hero-decor-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(1, 173, 211, 0.15);
}

.bts-hero-decor-ring--1 {
    width: 480px; height: 480px;
    top: -160px; right: -100px;
    animation: bts-ring-pulse 5s ease-in-out infinite;
}
.bts-hero-decor-ring--2 {
    width: 340px; height: 340px;
    top: -90px; right: -40px;
    border-color: rgba(1, 173, 211, 0.10);
    animation: bts-ring-pulse 7s ease-in-out infinite 1.5s;
}
.bts-hero-decor-ring--3 {
    width: 200px; height: 200px;
    top: -20px; right: 80px;
    border-color: rgba(1, 173, 211, 0.08);
    animation: bts-ring-spin 18s linear infinite;
    border-style: dashed;
}

/* Per-slide ring tint */
.bts-hero-slide--frappe   .bts-hero-decor-ring { border-color: rgba(251,146,60,0.18); }
.bts-hero-slide--vms      .bts-hero-decor-ring { border-color: rgba(139,92,246,0.18); }
.bts-hero-slide--opensource .bts-hero-decor-ring { border-color: rgba(16,185,129,0.18); }

/* ---- Slide counter ---- */
.bts-hero-counter-display {
    position: absolute;
    top: 28px; right: 44px;
    z-index: 10;
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    font-weight: 700;
    font-family: monospace;
    letter-spacing: 1px;
}

.bts-hero-counter-num {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    display: inline-block;
    animation: bts-counter-pop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}

.bts-hero-counter-sep { margin: 0 2px; }

/* ---- Progress bar ---- */
.bts-hero-progress {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255,255,255,0.08);
    z-index: 10;
}

.bts-hero-progress-fill {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--bts-primary), #22d3ee);
    border-radius: 0 2px 2px 0;
    transition: none;
}

/* ============================================
   TRUSTED PARTNERS — Dark split layout
   ============================================ */
.bts-clients {
    padding: 80px 0 60px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--bts-border);
    border-bottom: 1px solid var(--bts-border);
}

/* Subtle diagonal stripe background */
.bts-clients::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(1, 173, 211, 0.025) 0px,
        rgba(1, 173, 211, 0.025) 1px,
        transparent 1px,
        transparent 12px
    );
    pointer-events: none;
}

/* ---- Header ---- */
.bts-clients-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.bts-clients-heading {
    font-size: 36px;
    font-weight: 800;
    color: var(--bts-navy);
    margin: 12px 0 14px;
    line-height: 1.2;
}

.bts-clients-heading span {
    color: var(--bts-primary);
}

.bts-clients-header p {
    font-size: 15px;
    color: var(--bts-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ---- Stats row ---- */
.bts-clients-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 52px;
    background: var(--bts-bg-light);
    border-radius: 16px;
    padding: 24px 40px;
    border: 1px solid var(--bts-border);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.bts-clients-stat-item {
    text-align: center;
    flex: 1;
}

.bts-clients-stat-item strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--bts-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.bts-clients-stat-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--bts-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bts-clients-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--bts-border);
    flex-shrink: 0;
    margin: 0 8px;
}

/* ---- Logo strip ---- */
.bts-clients-track {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 8px 0 4px;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

.bts-clients-slider {
    display: flex;
    align-items: center;
    gap: 0;
    animation: clientScroll 32s linear infinite;
    width: max-content;
    will-change: transform;
}

@keyframes clientScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.bts-clients-track:hover .bts-clients-slider {
    animation-play-state: paused;
}

/* White logo cards */
.bts-client-logo {
    flex: 0 0 auto;
    width: 180px;
    height: 90px;
    margin: 0 12px;
    padding: 18px 28px;
    background: #ffffff;
    border: 1.5px solid var(--bts-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.60;
    box-shadow: 0 2px 8px rgba(10, 37, 64, 0.06);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease,
                filter 0.35s ease,
                opacity 0.35s ease;
}

.bts-client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.12);
    border-color: var(--bts-primary);
}

.bts-client-logo img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    display: block;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.bts-products {
    padding: 120px 0;
    background: var(--bts-white);
    position: relative;
}

/* ============================================
   PRODUCT LAYOUT — Vertical Side Nav
   ============================================ */
.bts-product-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

/* ---- Left: Vertical Nav ---- */
.bts-product-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 100px;
}

.bts-product-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--bts-white);
    border: 1.5px solid var(--bts-border);
    border-radius: 14px;
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.bts-product-tab:hover {
    border-color: var(--bts-primary);
    box-shadow: 0 4px 16px rgba(1, 173, 211, 0.12);
    transform: translateX(3px);
}

/* Per-product active colours — blue & white only */
.bts-product-tab.active                          { border-color: var(--bts-primary); background: var(--bts-primary-light); box-shadow: 0 6px 20px rgba(1,173,211,0.18); transform: translateX(5px); }
.bts-product-tab.active[data-target="vms"]       { border-color: var(--bts-primary); background: var(--bts-primary-light); box-shadow: 0 6px 20px rgba(1,173,211,0.18); }
.bts-product-tab.active[data-target="tailoring"] { border-color: var(--bts-primary); background: var(--bts-primary-light); box-shadow: 0 6px 20px rgba(1,173,211,0.18); }
.bts-product-tab.active[data-target="medfit"]    { border-color: var(--bts-primary); background: var(--bts-primary-light); box-shadow: 0 6px 20px rgba(1,173,211,0.18); }

/* Nav icon */
.bts-product-nav-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.bts-product-tab:hover .bts-product-nav-icon,
.bts-product-tab.active .bts-product-nav-icon { transform: scale(1.08); }

.bts-nav-icon-erp      { background: linear-gradient(135deg, var(--bts-primary) 0%, #0284c7 100%); }
.bts-nav-icon-vms      { background: linear-gradient(135deg, var(--bts-primary) 0%, #0284c7 100%); }
.bts-nav-icon-tailoring{ background: linear-gradient(135deg, var(--bts-primary) 0%, #0284c7 100%); }
.bts-nav-icon-medfit   { background: linear-gradient(135deg, var(--bts-primary) 0%, #0284c7 100%); }

/* Nav text */
.bts-product-nav-text {
    flex: 1;
}

.bts-product-nav-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--bts-navy);
    margin-bottom: 2px;
}

.bts-product-nav-text span {
    font-size: 12px;
    color: var(--bts-text-muted);
    font-weight: 400;
}

/* Arrow indicator */
.bts-nav-arrow {
    font-size: 12px;
    color: var(--bts-text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.bts-product-tab.active .bts-nav-arrow,
.bts-product-tab:hover  .bts-nav-arrow {
    transform: translateX(3px);
    color: var(--bts-primary);
}

.bts-product-tab.active[data-target="vms"]       .bts-nav-arrow { color: var(--bts-primary); }
.bts-product-tab.active[data-target="tailoring"] .bts-nav-arrow { color: var(--bts-primary); }
.bts-product-tab.active[data-target="medfit"]    .bts-nav-arrow { color: var(--bts-primary); }

/* ---- Right: Panels ---- */
.bts-product-panels {
    min-width: 0;
}

/* Product Panels */
.bts-product-panel {
    display: none;
    animation: fadeInProduct 0.35s ease;
}

.bts-product-panel.active {
    display: block;
}

@keyframes fadeInProduct {
    from { opacity: 0; transform: translateX(12px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ============================================
   PRODUCTS SECTION — Card Grid Design
   ============================================ */

/* Dark section background */
.bts-products {
    padding: 100px 0;
    background:
        url('/assets/blaze/img/homepage/solutions-bg.svg') center center / cover no-repeat,
        linear-gradient(160deg, var(--bts-navy) 0%, #0d3356 50%, #0a2540 100%);
    position: relative;
    overflow: hidden;
}

.bts-products::before { display: none; }

/* Light section tag for dark background */
.bts-section-tag--light {
    background: rgba(1, 173, 211, 0.15);
    color: var(--bts-primary);
    border: 1px solid rgba(1, 173, 211, 0.3);
}

/* ---- Products Section Header ---- */
.bts-prod-section-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

/* Label row with dots */
.bts-prod-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bts-primary);
    margin-bottom: 20px;
}

.bts-prod-label-dot {
    width: 20px;
    height: 1.5px;
    background: var(--bts-primary);
    border-radius: 2px;
    opacity: 0.7;
    display: inline-block;
}

/* Main heading */
.bts-prod-title {
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.08;
    letter-spacing: -1px;
    margin: 0 0 8px;
}

/* Second line — mixed style */
.bts-prod-title-line {
    display: block;
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -1px;
}

/* "for" — small muted word */
.bts-prod-title-line span {
    font-size: 32px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.40);
    font-style: normal;
    margin-right: 6px;
    letter-spacing: 0;
}

/* "Business" — italic accent in cyan */
.bts-prod-title-line em {
    font-style: italic;
    color: var(--bts-primary);
    font-weight: 900;
}

/* Subtitle */
.bts-prod-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 560px;
    margin: 18px auto 0;
    font-weight: 400;
}

/* 4-column product card grid */
.bts-prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* ---- Card ---- */
.bts-prod-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.35s ease;
}

.bts-prod-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

/* ---- Colored gradient header ---- */
.bts-prod-header {
    position: relative;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bts-prod-header--erp {
    background: linear-gradient(135deg, #0a2540 0%, #01add3 100%);
}
.bts-prod-header--vms {
    background: linear-gradient(135deg, #0a2540 0%, #0192b3 100%);
}
.bts-prod-header--tailoring {
    background: linear-gradient(135deg, #01add3 0%, #0284c7 100%);
}
.bts-prod-header--medfit {
    background: linear-gradient(135deg, #0284c7 0%, #0a2540 100%);
}

/* Shine sweep on hover */
.bts-prod-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: rgba(255,255,255,0.12);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
    pointer-events: none;
}
.bts-prod-card:hover .bts-prod-header::after {
    left: 125%;
}

/* Icon */
.bts-prod-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255,255,255,0.18);
    border: 1.5px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}
.bts-prod-card:hover .bts-prod-icon {
    transform: scale(1.15) rotate(-8deg);
}

/* Badge */
.bts-prod-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,0.22);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 1;
}

/* ---- Body ---- */
.bts-prod-body {
    padding: 24px 22px 20px;
    flex: 1;
}

.bts-prod-body h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--bts-navy);
    margin-bottom: 8px;
}

.bts-prod-body p {
    font-size: 13px;
    color: var(--bts-text-light);
    line-height: 1.65;
    margin-bottom: 16px;
}

/* Feature list */
.bts-prod-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bts-prod-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--bts-text);
}

.bts-prod-features li i { font-size: 13px; flex-shrink: 0; }
.bts-prod-header--erp      ~ .bts-prod-body .bts-prod-features li i,
.bts-prod-card:first-child   .bts-prod-features li i { color: var(--bts-primary); }

/* Simpler: target by nth child */
.bts-prod-card:nth-child(1) .bts-prod-features li i { color: var(--bts-primary); }
.bts-prod-card:nth-child(2) .bts-prod-features li i { color: var(--bts-primary); }
.bts-prod-card:nth-child(3) .bts-prod-features li i { color: var(--bts-primary); }
.bts-prod-card:nth-child(4) .bts-prod-features li i { color: var(--bts-primary); }

/* ---- Footer CTA ---- */
.bts-prod-footer {
    padding: 0 22px 22px;
}

.bts-prod-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease, gap 0.25s ease;
}

.bts-prod-btn i { transition: transform 0.25s ease; }
.bts-prod-btn:hover { opacity: 0.9; text-decoration: none; box-shadow: 0 6px 20px rgba(1,173,211,0.40); }
.bts-prod-btn:hover i { transform: translateX(4px); }

.bts-prod-btn--erp      { background: var(--bts-primary); color: #fff; }
.bts-prod-btn--vms      { background: var(--bts-primary); color: #fff; }
.bts-prod-btn--tailoring { background: var(--bts-primary); color: #fff; }
.bts-prod-btn--medfit   { background: var(--bts-primary); color: #fff; }

/* Responsive */
@media (max-width: 1024px) {
    .bts-prod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .bts-prod-grid { grid-template-columns: 1fr; }
    .bts-products  { padding: 64px 0; }
}

/* ============================================
   PRODUCT BUTTONS ROW (index page)
   ============================================ */
.bts-product-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin: 0 auto;
}

.bts-product-btns .bts-btn {
    gap: 10px;
    min-width: 200px;
    justify-content: center;
}

@media (max-width: 600px) {
    .bts-product-btns .bts-btn {
        width: 100%;
    }
}

/* ============================================
   PRODUCT SHOWCASE CARD GRID (index page)
   ============================================ */
.bts-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.bts-showcase-card {
    display: flex;
    flex-direction: column;
    background: var(--bts-white);
    border-radius: 20px;
    border: 1.5px solid var(--bts-border);
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
}

/* Top accent bar */
.bts-showcase-card::before {
    content: '';
    display: block;
    height: 4px;
    background: var(--bts-primary);
    flex-shrink: 0;
}
.bts-showcase-card--vms::before      { background: var(--bts-primary); }
.bts-showcase-card--tailoring::before { background: var(--bts-orange); }
.bts-showcase-card--medfit::before    { background: var(--bts-teal); }

.bts-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(10, 37, 64, 0.13);
    text-decoration: none;
    border-color: transparent;
}
.bts-showcase-card--erp:hover      { border-color: var(--bts-primary); }
.bts-showcase-card--vms:hover      { border-color: var(--bts-primary); }
.bts-showcase-card--tailoring:hover { border-color: var(--bts-orange); }
.bts-showcase-card--medfit:hover    { border-color: var(--bts-teal); }

.bts-showcase-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 28px 0;
}

.bts-showcase-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bts-showcase-card:hover .bts-showcase-icon { transform: scale(1.12) rotate(-5deg); }

.bts-showcase-card--erp      .bts-showcase-icon { background: linear-gradient(135deg, var(--bts-primary) 0%, #0284c7 100%); }
.bts-showcase-card--vms      .bts-showcase-icon { background: linear-gradient(135deg, var(--bts-primary) 0%, #0284c7 100%); }
.bts-showcase-card--tailoring .bts-showcase-icon { background: linear-gradient(135deg, var(--bts-orange) 0%, #c2410c 100%); }
.bts-showcase-card--medfit   .bts-showcase-icon { background: linear-gradient(135deg, var(--bts-teal) 0%, #0f766e 100%); }

.bts-showcase-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--bts-primary-light);
    color: var(--bts-primary);
}
.bts-showcase-badge--vms      { background: var(--bts-primary-light); color: var(--bts-primary); }
.bts-showcase-badge--tailoring { background: #fff7ed; color: var(--bts-orange); }
.bts-showcase-badge--medfit   { background: #f0fdfa; color: var(--bts-teal); }

.bts-showcase-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--bts-navy);
    margin: 16px 28px 8px;
}

.bts-showcase-card > p {
    font-size: 14px;
    color: var(--bts-text-light);
    line-height: 1.6;
    margin: 0 28px 20px;
}

.bts-showcase-features {
    list-style: none;
    padding: 0 28px;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.bts-showcase-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--bts-text);
}

.bts-showcase-features li i { font-size: 12px; color: var(--bts-primary); }
.bts-showcase-card--vms      .bts-showcase-features li i { color: var(--bts-primary); }
.bts-showcase-card--tailoring .bts-showcase-features li i { color: var(--bts-orange); }
.bts-showcase-card--medfit   .bts-showcase-features li i { color: var(--bts-teal); }

.bts-showcase-footer {
    padding: 20px 28px 28px;
}

.bts-showcase-footer .bts-btn {
    width: 100%;
    justify-content: center;
    gap: 8px;
}

.bts-showcase-footer .bts-btn i {
    transition: transform 0.3s ease;
}

.bts-showcase-card:hover .bts-showcase-footer .bts-btn i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .bts-showcase-grid { grid-template-columns: 1fr; }
}

/* Product Showcase Layout */
.bts-product-showcase {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: start;
}

/* Product Visual (Left Side) */
.bts-product-visual {
    position: relative;
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bts-product-visual:hover {
    transform: translateY(-4px);
    box-shadow: var(--bts-shadow-hover);
}

#panel-vms .bts-product-visual {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

#panel-tailoring .bts-product-visual {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
}

#panel-medfit .bts-product-visual {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
}

.bts-product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bts-primary);
    color: var(--bts-white);
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bts-badge-purple {
    background: var(--bts-primary);
}

.bts-badge-orange {
    background: var(--bts-orange);
}

.bts-badge-teal {
    background: var(--bts-teal);
}

.bts-product-icon-hero {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bts-product-visual:hover .bts-product-icon-hero {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.bts-product-icon-erp {
    background: linear-gradient(135deg, var(--bts-primary) 0%, #0284c7 100%);
    color: var(--bts-white);
}

.bts-product-icon-vms {
    background: linear-gradient(135deg, var(--bts-primary) 0%, #0284c7 100%);
    color: var(--bts-white);
}

.bts-product-icon-tailoring {
    background: linear-gradient(135deg, var(--bts-orange) 0%, #c2410c 100%);
    color: var(--bts-white);
}

.bts-product-icon-medfit {
    background: linear-gradient(135deg, var(--bts-teal) 0%, #0f766e 100%);
    color: var(--bts-white);
}

/* Stats Ring */
.bts-product-stats-ring {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.bts-stat-item {
    text-align: center;
    background: var(--bts-white);
    border-radius: var(--bts-radius-sm);
    padding: 15px 12px;
    min-width: 90px;
    box-shadow: var(--bts-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bts-stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(10, 37, 64, 0.12);
}

.bts-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--bts-primary);
    line-height: 1;
    margin-bottom: 4px;
}

#panel-vms .bts-stat-number {
    color: var(--bts-primary);
}

#panel-tailoring .bts-stat-number {
    color: var(--bts-orange);
}

#panel-medfit .bts-stat-number {
    color: var(--bts-teal);
}

.bts-stat-label {
    font-size: 11px;
    color: var(--bts-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Product Details (Right Side) */
.bts-product-details h3 {
    font-size: 30px;
    font-weight: 800;
    color: var(--bts-navy);
    margin-bottom: 12px;
}

.bts-highlight {
    color: var(--bts-primary);
}

.bts-highlight-purple {
    color: var(--bts-primary);
}

.bts-highlight-orange {
    color: var(--bts-orange);
}

.bts-highlight-teal {
    color: var(--bts-teal);
}

.bts-product-desc {
    font-size: 15px;
    color: var(--bts-text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Module Chips (ERPNext) */
.bts-modules-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.bts-module-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    background: var(--bts-bg-light);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--bts-text);
    transition: background 0.3s ease, color 0.3s ease;
}

.bts-module-chip i {
    color: var(--bts-primary);
    font-size: 12px;
}

.bts-module-chip:hover {
    background: var(--bts-primary-light);
    color: var(--bts-primary);
}

/* Product Highlights */
.bts-product-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 25px;
}

.bts-ph-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bts-bg-light);
    border-radius: var(--bts-radius-sm);
    border-left: 3px solid var(--bts-primary);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.bts-ph-item:hover {
    box-shadow: var(--bts-shadow);
    background: var(--bts-white);
}

.bts-ph-purple {
    border-left-color: var(--bts-primary);
}

.bts-ph-orange {
    border-left-color: var(--bts-orange);
}

.bts-ph-teal {
    border-left-color: var(--bts-teal);
}

.bts-ph-item > i {
    font-size: 20px;
    color: var(--bts-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.bts-ph-purple > i {
    color: var(--bts-primary);
}

.bts-ph-orange > i {
    color: var(--bts-orange);
}

.bts-ph-teal > i {
    color: var(--bts-teal);
}

.bts-ph-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--bts-navy);
    margin-bottom: 2px;
}

.bts-ph-item span {
    font-size: 13px;
    color: var(--bts-text-light);
    line-height: 1.4;
}

/* Product Actions */
.bts-product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* VMS Feature Cards */
.bts-vms-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 25px;
}

.bts-vms-feature-card {
    background: var(--bts-white);
    border-radius: var(--bts-radius-sm);
    padding: 20px 16px;
    text-align: center;
    border: 1px solid var(--bts-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bts-vms-feature-card:hover {
    border-color: var(--bts-purple);
    box-shadow: var(--bts-shadow-hover);
    transform: translateY(-4px);
}

.bts-vms-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: var(--bts-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 auto 10px;
    transition: transform 0.3s ease;
}

.bts-vms-feature-card:hover .bts-vms-icon {
    transform: scale(1.08);
}

.bts-vms-feature-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--bts-navy);
    margin-bottom: 5px;
}

.bts-vms-feature-card p {
    font-size: 12px;
    color: var(--bts-text-light);
    line-height: 1.4;
    margin: 0;
}

/* VMS Workflow Cards */
.bts-vms-workflows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.bts-vms-wf-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bts-white);
    border-radius: var(--bts-radius-sm);
    border: 1px solid var(--bts-border);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.bts-vms-wf-card:hover {
    border-color: var(--bts-purple);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.08);
}

.bts-vms-wf-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: var(--bts-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.bts-vms-wf-card:hover .bts-vms-wf-icon {
    transform: scale(1.08);
}

.bts-vms-wf-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--bts-navy);
    margin-bottom: 4px;
}

.bts-vms-wf-content p {
    font-size: 13px;
    color: var(--bts-text-light);
    line-height: 1.5;
    margin: 0;
}


/* ============================================
   ABOUT SECTION
   ============================================ */
.bts-about {
    padding: 120px 0;
    background: var(--bts-bg-light);
    position: relative;
}

.bts-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bts-section-tag {
    display: inline-block;
    background: var(--bts-primary-light);
    color: var(--bts-primary);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.bts-about-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--bts-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.bts-about-content h2 span {
    color: var(--bts-primary);
}

.bts-about-content p {
    font-size: 16px;
    color: var(--bts-text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.bts-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.bts-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--bts-text);
    transition: color 0.3s ease;
}

.bts-feature-item:hover {
    color: var(--bts-primary);
}

.bts-feature-item i {
    color: var(--bts-primary);
    font-size: 16px;
}

.bts-about-image {
    position: relative;
}

.bts-about-image img {
    width: 100%;
    border-radius: var(--bts-radius);
    box-shadow: var(--bts-shadow);
}



/* ============================================
   TRUST SECTION — Dashboard panel design
   ============================================ */
.bts-trust {
    padding: 110px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    color: var(--bts-navy);
}

/* Dot-grid pattern overlay */
.bts-trust::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(1,173,211,0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* Teal top accent line */
.bts-trust::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--bts-primary), transparent);
}

/* Section heading */
.bts-trust-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.bts-trust-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bts-primary);
    margin-bottom: 14px;
}

.bts-trust-heading {
    font-size: 40px;
    font-weight: 800;
    color: var(--bts-navy);
    margin: 0;
    line-height: 1.2;
}

.bts-trust-heading span { color: var(--bts-primary); }

/* ---- 4-column grid ---- */
.bts-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* ---- Stat panel ---- */
.bts-trust-stat {
    background: #0a2540;
    border: 1px solid rgba(1, 173, 211, 0.14);
    border-left: 3px solid var(--bts-primary);
    border-radius: 16px;
    padding: 36px 28px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.bts-trust-stat:hover {
    transform: translateY(-8px);
    background: #0d3356;
    box-shadow: 0 20px 48px rgba(1, 173, 211, 0.15), inset 0 0 0 1px rgba(1,173,211,0.3);
}

/* Index badge — top right */
.bts-trust-idx {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(1, 173, 211, 0.55);
    font-family: monospace;
}

/* Icon */
.bts-trust-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(1, 173, 211, 0.1);
    border: 1px solid rgba(1, 173, 211, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bts-primary);
    margin-bottom: 22px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.bts-trust-stat:hover .bts-trust-stat-icon {
    background: rgba(1, 173, 211, 0.2);
    transform: scale(1.08);
}

/* Gradient number */
.bts-trust-number {
    font-size: 62px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ffffff 30%, #01add3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Progress bar */
.bts-trust-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 16px;
}

.bts-trust-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--bts-primary), #22d3ee);
    border-radius: 2px;
    transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.bts-trust-stat.bts-bar-active .bts-trust-bar span {
    width: var(--bar-w, 80%);
}

/* Label */
.bts-trust-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.bts-services {
    padding: 120px 0;
    background:
        url('/assets/blaze/img/homepage/solutions-bg.svg') center center / cover no-repeat,
        linear-gradient(160deg, #e8eef7 0%, #d0dff0 50%, #e8eef7 100%);
    position: relative;
}

.bts-services::before { display: none; }

.bts-services .bts-container { position: relative; z-index: 1; }

/* Header text for light background */
.bts-services .bts-section-header h2 {
    color: #0a2540;
}

.bts-services .bts-section-header h2::after {
    background: var(--bts-primary);
}

.bts-services .bts-section-header p {
    color: #64748b;
}

.bts-services .bts-section-tag {
    color: var(--bts-primary);
    background: rgba(1, 173, 211, 0.10);
    border: 1px solid rgba(1, 173, 211, 0.25);
}

.bts-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.bts-section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--bts-navy);
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.bts-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: var(--bts-primary);
    border-radius: 2px;
}

.bts-section-header p {
    font-size: 16px;
    color: var(--bts-text-light);
    line-height: 1.7;
}

/* ============================================
   SOLUTIONS SECTION — Split-header card design
   Gradient coloured top + curved white body + floating icon
   ============================================ */

.bts-sol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.bts-sol-card {
    width: 100%;
    max-width: 100%;
}

.bts-sol-card {
    background: var(--bts-white);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(10, 37, 64, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bts-sol-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(10, 37, 64, 0.15);
}

/* ---- Coloured gradient banner (top portion) ---- */
.bts-sol-card-top {
    height: 168px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

/* Dot-matrix pattern overlaid on gradient */
.bts-sol-card-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.22) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    z-index: 0;
}

/* Curved white scoop at the bottom of the banner */
.bts-sol-card-top::after {
    content: '';
    position: absolute;
    bottom: -2px; left: -8%; right: -8%;
    height: 44px;
    background: var(--bts-white);
    border-radius: 50%;
    z-index: 1;
}

/* ---- Floating icon circle ---- */
.bts-sol-card-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--bts-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.bts-sol-card:hover .bts-sol-card-icon {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

/* ---- Card text body ---- */
.bts-sol-card-body {
    padding: 14px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bts-sol-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--bts-navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.bts-sol-card-body p {
    font-size: 14px;
    color: var(--bts-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

/* ---- Pill CTA button ---- */
.bts-sol-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 100px;
    border: 2px solid var(--bts-primary);
    color: var(--bts-primary);
    transition: background 0.25s ease, color 0.25s ease, gap 0.25s ease, box-shadow 0.25s ease;
}

.bts-sol-cta:hover {
    gap: 11px;
    text-decoration: none;
    background: var(--bts-primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(1,173,211,0.35);
}

/* ---- Per-card shades — single brand teal/navy colour family ---- */
/* Shade 1 — Darkest navy */
.bts-sol-card--mobile .bts-sol-card-top     { background: linear-gradient(135deg, #021e2f, #054a6b); }
.bts-sol-card--mobile .bts-sol-card-icon    { color: #01add3; }

/* Shade 2 — Deep navy-teal */
.bts-sol-card--web .bts-sol-card-top        { background: linear-gradient(135deg, #054a6b, #0875a1); }
.bts-sol-card--web .bts-sol-card-icon       { color: #01add3; }

/* Shade 3 — Medium-dark teal */
.bts-sol-card--trading .bts-sol-card-top    { background: linear-gradient(135deg, #0875a1, #0192b3); }
.bts-sol-card--trading .bts-sol-card-icon   { color: #0192b3; }

/* Shade 4 — Brand primary range */
.bts-sol-card--manufacturing .bts-sol-card-top  { background: linear-gradient(135deg, #0192b3, #01add3); }
.bts-sol-card--manufacturing .bts-sol-card-icon { color: #0192b3; }

/* Shade 5 — Light brand teal */
.bts-sol-card--fmcg .bts-sol-card-top       { background: linear-gradient(135deg, #01add3, #22d3ee); }
.bts-sol-card--fmcg .bts-sol-card-icon      { color: #0192b3; }

/* Shade 6 — Pure navy */
.bts-sol-card--healthcare .bts-sol-card-top  { background: linear-gradient(135deg, #0a2540, #1a4f80); }
.bts-sol-card--healthcare .bts-sol-card-icon { color: #01add3; }

/* Shade 7 — Mid teal */
.bts-sol-card--education .bts-sol-card-top   { background: linear-gradient(135deg, #046076, #0192b3); }
.bts-sol-card--education .bts-sol-card-icon  { color: #0192b3; }

/* Shade 8 — VMS: deep navy to cyan */
.bts-sol-card--vms .bts-sol-card-top          { background: linear-gradient(135deg, #0a2540, #01add3); }
.bts-sol-card--vms .bts-sol-card-icon--vms    { background: #fff; color: #01add3; font-size: 34px; box-shadow: 0 6px 20px rgba(1,173,211,0.30); }

/* Shade 9 — Digital Tailoring: blue gradient */
.bts-sol-card--tailoring .bts-sol-card-top    { background: linear-gradient(135deg, #1e3a5f, #0369a1); }
.bts-sol-card--tailoring .bts-sol-card-icon   { color: #0369a1; }
.bts-sol-card--tailoring:hover                { border-color: #0369a1; box-shadow: 0 28px 60px rgba(3,105,161,0.18); }
.bts-sol-card--tailoring .bts-sol-cta         { color: #0369a1; }
.bts-sol-card--tailoring .bts-sol-cta:hover   { background: #eff6ff; color: #1e3a5f; }

/* VMS featured badge */
.bts-sol-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.22);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
}

.bts-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--bts-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: gap 0.3s ease, color 0.3s ease;
}

.bts-link:hover {
    gap: 10px;
    text-decoration: none;
    color: var(--bts-primary-dark);
}

/* ============================================
   FAQ SECTION — Warm White + Card Accordion
   ============================================ */
.bts-faq {
    padding: 110px 0;
    background: #faf8f4;
    position: relative;
    overflow: hidden;
}

/* Warm radial glow — top left */
.bts-faq::before {
    content: '';
    position: absolute;
    width: 560px; height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(1,173,211,0.07) 0%, transparent 70%);
    top: -160px; left: -120px;
    pointer-events: none;
}

/* Warm radial glow — bottom right */
.bts-faq::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10,37,64,0.05) 0%, transparent 70%);
    bottom: -100px; right: -80px;
    pointer-events: none;
}

/* Two-column grid */
.bts-faq-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ---- Left: Intro panel ---- */
.bts-faq-intro { position: sticky; top: 100px; }

.bts-faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(1,173,211,0.10);
    border: 1px solid rgba(1,173,211,0.28);
    color: #0192b3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.bts-faq-intro-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.1;
    color: #0a2540;
    letter-spacing: -1.2px;
    margin-bottom: 18px;
}

.bts-faq-intro-title span { color: #01add3; }

.bts-faq-intro-sub {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 30px;
}

.bts-faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #0a2540;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(10,37,64,0.18);
    margin-bottom: 28px;
}

.bts-faq-cta-btn:hover {
    background: #01add3;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(1,173,211,0.35);
    color: #fff;
    text-decoration: none;
}

.bts-faq-cta-btn i { transition: transform 0.2s ease; }
.bts-faq-cta-btn:hover i { transform: translateX(4px); }

/* Contact card */
.bts-faq-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #e8f0f7;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(10,37,64,0.06);
}

.bts-faq-contact-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(37,211,102,0.10);
    border: 1px solid rgba(37,211,102,0.22);
    color: #16a34a;
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.bts-faq-contact-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 3px;
}

.bts-faq-contact-link {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #16a34a;
    text-decoration: none;
    transition: opacity 0.2s;
}

.bts-faq-contact-link:hover { opacity: 0.75; text-decoration: none; color: #16a34a; }

/* ---- Right: Card accordion ---- */
.bts-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bts-faq-item {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #ede8e1;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 1px 4px rgba(10,37,64,0.05);
}

.bts-faq-item:hover {
    border-color: #c8dde8;
    box-shadow: 0 4px 16px rgba(10,37,64,0.08);
}

.bts-faq-item.active {
    border-color: #01add3;
    box-shadow: 0 4px 20px rgba(1,173,211,0.14);
    border-left: 3.5px solid #01add3;
}

.bts-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s ease;
}

.bts-faq-question:hover { background: #fdf9f5; }
.bts-faq-item.active .bts-faq-question { background: #f0fbff; }

/* Number circle badge */
.bts-faq-num {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    flex-shrink: 0;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.bts-faq-item.active .bts-faq-num {
    background: #01add3;
    border-color: #01add3;
    color: #fff;
}

.bts-faq-q-text {
    flex: 1;
    font-size: 14.5px;
    font-weight: 600;
    color: #0a2540;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.bts-faq-item.active .bts-faq-q-text { color: #0192b3; }

/* Chevron */
.bts-faq-chevron {
    font-size: 12px;
    color: #94a3b8;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), color 0.2s ease;
    margin-left: 6px;
}

.bts-faq-item.active .bts-faq-chevron {
    transform: rotate(180deg);
    color: #01add3;
}

/* Answer */
.bts-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.bts-faq-item.active .bts-faq-answer { max-height: 300px; }

.bts-faq-answer p {
    padding: 2px 20px 20px 66px;
    font-size: 14px;
    color: #475569;
    line-height: 1.75;
    margin: 0;
    border-top: 1px solid #f1f5f9;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .bts-faq-grid       { grid-template-columns: 260px 1fr; gap: 44px; }
    .bts-faq-intro-title { font-size: 34px; }
}

@media (max-width: 768px) {
    .bts-faq-grid       { grid-template-columns: 1fr; gap: 36px; }
    .bts-faq-intro      { position: static; }
    .bts-faq-intro-title { font-size: 30px; }
    .bts-faq-answer p   { padding-left: 20px; }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
/* ============================================
   TESTIMONIALS — Split Panel Dynamic Slider
   ============================================ */
.bts-testimonials {
    padding: 100px 0;
    background: var(--bts-bg-light);
    position: relative;
}

/* ---- Outer wrapper card ---- */
.bts-ts-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(10,37,64,0.18);
    min-height: 460px;
}

/* ---- LEFT PANEL — Morphing gradient ---- */
.bts-ts-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    overflow: hidden;
    background: linear-gradient(160deg, #0a2540 0%, #01add3 100%);
    transition: background 0.9s ease;
}

.bts-ts-panel[data-theme="1"] { background: linear-gradient(160deg, #1e1065 0%, #7c3aed 100%); }
.bts-ts-panel[data-theme="2"] { background: linear-gradient(160deg, #042f2e 0%, #0d9488 100%); }

/* Shimmer overlay */
.bts-ts-panel-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 30%, rgba(255,255,255,0.12) 0%, transparent 65%);
    pointer-events: none;
}

/* Dot grid */
.bts-ts-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.bts-ts-panel-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.bts-ts-panel-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 28px;
}

/* Avatar ring */
.bts-ts-avatar-ring {
    width: 96px; height: 96px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.15); }
    50%       { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}

.bts-ts-avatar {
    width: 78px; height: 78px;
    border-radius: 50%;
    background: rgba(255,255,255,0.20);
    border: 2px solid rgba(255,255,255,0.35);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 900;
    color: #fff; letter-spacing: 1px;
    transition: all 0.5s ease;
}

.bts-ts-panel-company {
    font-size: 15px; font-weight: 800;
    color: #fff; margin-bottom: 8px;
    transition: all 0.4s ease;
}

.bts-ts-panel-location {
    font-size: 12px; color: rgba(255,255,255,0.55);
    display: flex; align-items: center; justify-content: center;
    gap: 5px; margin-bottom: 36px;
}

.bts-ts-panel-location i { font-size: 10px; color: rgba(255,255,255,0.7); }

/* Slide counter */
.bts-ts-counter {
    font-size: 13px; font-weight: 700;
    color: rgba(255,255,255,0.6);
    display: flex; align-items: baseline; justify-content: center;
    gap: 6px;
}

#btsTsCurrent {
    font-size: 36px; font-weight: 900;
    color: #fff; line-height: 1;
}

.bts-ts-sep { color: rgba(255,255,255,0.3); }

/* Panel dots */
.bts-ts-panel-dots {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 6px;
}

.bts-ts-pdot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none; cursor: pointer; padding: 0;
    transition: background 0.3s, width 0.3s, border-radius 0.3s;
}

.bts-ts-pdot.active {
    background: #fff; width: 20px; border-radius: 3px;
}

/* ---- RIGHT CONTENT ---- */
.bts-ts-content {
    background: #fff;
    padding: 48px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Large watermark quote */
.bts-ts-content::before {
    content: '\201C';
    position: absolute;
    top: 20px; right: 40px;
    font-size: 180px;
    font-family: Georgia, serif;
    color: var(--bts-primary);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
}

.bts-ts-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.bts-ts-stars i {
    color: #fbbf24; font-size: 18px;
}

/* Quote slides */
.bts-ts-quotes-wrap {
    position: relative;
    min-height: 180px;
    margin-bottom: 36px;
    overflow: hidden;
}

.bts-ts-slide {
    position: absolute;
    top: 0; left: 0; right: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(48px);
    transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1),
                transform 0.55s cubic-bezier(0.4,0,0.2,1);
}

.bts-ts-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.bts-ts-slide.exit {
    opacity: 0;
    transform: translateX(-40px);
}

.bts-ts-quote {
    font-size: 18px;
    font-style: italic;
    color: var(--bts-text-light);
    line-height: 1.85;
    margin: 0;
    font-weight: 400;
}

/* Progress bar */
.bts-ts-progress-wrap {
    height: 3px;
    background: #edf2f7;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 32px;
}

.bts-ts-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--bts-primary), #0284c7);
    border-radius: 3px;
    transition: width 0.1s linear;
}

.bts-ts-progress-bar.running {
    animation: tsProgress 6s linear forwards;
}

@keyframes tsProgress {
    from { width: 0; }
    to   { width: 100%; }
}

/* Controls */
.bts-ts-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bts-ts-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 13px; font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1.5px solid var(--bts-border);
    background: var(--bts-bg-light);
    color: var(--bts-text);
}

.bts-ts-btn:hover {
    border-color: var(--bts-primary);
    color: var(--bts-primary);
    background: var(--bts-primary-light);
}

.bts-ts-btn--next {
    background: var(--bts-primary);
    color: #fff;
    border-color: var(--bts-primary);
    box-shadow: 0 4px 16px rgba(1,173,211,0.3);
}

.bts-ts-btn--next:hover {
    background: var(--bts-primary-dark);
    border-color: var(--bts-primary-dark);
    color: #fff;
    transform: translateX(3px);
}

.bts-ts-btn i { transition: transform 0.25s ease; }
.bts-ts-btn--next:hover i { transform: translateX(4px); }

/* Responsive */
@media (max-width: 900px) {
    .bts-ts-wrapper { grid-template-columns: 1fr; }
    .bts-ts-panel   { padding: 40px 24px; min-height: 220px; }
    .bts-ts-content { padding: 36px 24px; }
    .bts-ts-quote   { font-size: 16px; }
    .bts-ts-content::before { font-size: 100px; right: 20px; }
}

/* Blog scroll animations */
@keyframes bts-blog-fadein {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

.bts-blog-animate {
    opacity: 0;
    transform: translateY(32px);
}
.bts-blog-animate.bts-blog-visible {
    animation: bts-blog-fadein 0.55s ease both;
    animation-delay: var(--delay, 0s);
}

.bts-blog {
    padding: 120px 0;
    background: var(--bts-bg-light);
    position: relative;
}

.bts-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 36px;
}

.bts-blog-card {
    background: var(--bts-white);
    border-radius: var(--bts-radius);
    overflow: visible;
    border: 1px solid var(--bts-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    clip-path: none;
}

/* Glowing line flowing down to the card top border */
.bts-blog-card::before {
    content: '';
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, transparent, #01add3);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 2;
}

/* Cyan top accent line on card */
.bts-blog-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #01add3, transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: var(--bts-radius) var(--bts-radius) 0 0;
    z-index: 2;
}

.bts-blog-card:hover::before,
.bts-blog-card:hover::after {
    opacity: 1;
}

.bts-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(1,173,211,0.15), 0 4px 16px rgba(0,0,0,0.08);
    border-color: rgba(1,173,211,0.40);
}

/* Inner wrapper to clip image but keep ::before visible */
.bts-blog-card-inner {
    border-radius: var(--bts-radius);
    overflow: hidden;
}

.bts-blog-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.bts-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bts-blog-card:hover .bts-blog-img img {
    transform: scale(1.05);
}

.bts-blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--bts-primary);
    color: var(--bts-white);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.bts-blog-info {
    padding: 24px;
}

.bts-blog-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--bts-navy);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.bts-blog-info p {
    font-size: 14px;
    color: var(--bts-text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

/* ============================================
   CONTACT SECTION — Premium Design
   ============================================ */
.bts-contact-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #f0f4f8 0%, #e8f0f7 100%);
    position: relative;
    overflow: hidden;
}

.bts-contact-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(1,173,211,0.08) 0%, transparent 70%);
    top: -150px; right: -100px;
    pointer-events: none;
}

.bts-contact-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 32px;
    align-items: start;
}

/* ---- Left: Dark Info Panel ---- */
.bts-contact-info {
    background: linear-gradient(160deg, #0a2540 0%, #0d3356 60%, #0a3060 100%);
    border-radius: 24px;
    padding: 48px 36px;
    color: #fff;
    position: sticky;
    top: 100px;
    overflow: hidden;
}

/* Decorative dot pattern */
.bts-contact-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

/* Cyan glow orb */
.bts-contact-info::after {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(1,173,211,0.18) 0%, transparent 70%);
    bottom: -80px; right: -60px;
    pointer-events: none;
}

.bts-contact-info .bts-section-tag {
    background: rgba(1,173,211,0.18);
    color: #01add3;
    border: 1px solid rgba(1,173,211,0.3);
    position: relative;
    z-index: 1;
}

.bts-contact-info h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 14px 0 12px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.bts-contact-info > p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.bts-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

.bts-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bts-contact-detail:last-child { border-bottom: none; }

.bts-contact-detail > i {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(1,173,211,0.18);
    color: #01add3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    border: 1px solid rgba(1,173,211,0.25);
}

.bts-contact-detail strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 4px;
}

.bts-contact-detail span,
.bts-contact-detail a {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}

/* ---- Right: Form Card ---- */
.bts-contact-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 40px 44px;
    box-shadow: 0 12px 48px rgba(10, 37, 64, 0.10);
}

/* Form header */
.bts-contact-form-wrap h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--bts-navy);
    margin-bottom: 6px;
}

.bts-contact-form-wrap .bts-form-subtitle {
    font-size: 14px;
    color: var(--bts-text-muted);
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--bts-border);
}

.bts-contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

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

.bts-form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.bts-form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--bts-text-light);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.bts-form-group label small {
    font-weight: 400;
    color: var(--bts-text-muted);
    text-transform: none;
    letter-spacing: 0;
    margin-left: 4px;
}

.bts-required { color: #e53e3e; }

.bts-form-group input[type="text"],
.bts-form-group input[type="tel"],
.bts-form-group input[type="email"],
.bts-form-group input[type="date"],
.bts-form-group select,
.bts-form-group textarea {
    padding: 13px 16px;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    color: var(--bts-text);
    background: #f8fafc;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.bts-form-group input:focus,
.bts-form-group select:focus,
.bts-form-group textarea:focus {
    border-color: var(--bts-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(1, 173, 211, 0.10);
}

.bts-form-group input:disabled {
    background: #edf2f7;
    color: var(--bts-text-muted);
    cursor: not-allowed;
    border-color: #edf2f7;
}

.bts-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Phone input */
.bts-phone-input {
    display: flex;
    gap: 8px;
}

.bts-phone-input select { width: 130px; flex-shrink: 0; }
.bts-phone-input input { flex: 1; }

/* Same as mobile */
.bts-same-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bts-primary);
    cursor: pointer;
    margin-top: 8px;
    width: fit-content;
}

.bts-same-check input {
    width: auto;
    cursor: pointer;
    accent-color: var(--bts-primary);
}

/* Section divider label */
.bts-form-section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bts-text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.bts-form-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--bts-border);
}

/* Purpose radio cards */
.bts-purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.bts-radio-card { cursor: pointer; }
.bts-radio-card input { display: none; }

.bts-radio-card span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 10px;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bts-text-light);
    background: #f8fafc;
    text-align: center;
    transition: all 0.2s ease;
    line-height: 1.3;
}

.bts-radio-card span i {
    font-size: 20px;
    color: var(--bts-text-muted);
    transition: color 0.2s ease;
}

.bts-radio-card input:checked + span {
    border-color: var(--bts-primary);
    background: var(--bts-primary-light);
    color: var(--bts-primary);
    box-shadow: 0 0 0 4px rgba(1,173,211,0.10);
}

.bts-radio-card input:checked + span i { color: var(--bts-primary); }

.bts-radio-card:hover span {
    border-color: var(--bts-primary);
    background: #fff;
    color: var(--bts-primary);
}

.bts-radio-card:hover span i { color: var(--bts-primary); }

/* Submit button */
.bts-contact-submit {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    font-size: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bts-primary) 0%, #0192b3 100%);
    box-shadow: 0 6px 20px rgba(1, 173, 211, 0.35);
    margin-top: 4px;
}

.bts-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(1, 173, 211, 0.45);
}

/* Success message */
.bts-contact-success {
    text-align: center;
    padding: 60px 32px;
}

.bts-success-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #15803d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(22,163,74,0.3);
}

.bts-contact-success h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--bts-navy);
    margin-bottom: 12px;
}

.bts-contact-success p {
    font-size: 15px;
    color: var(--bts-text-light);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .bts-contact-grid { grid-template-columns: 1fr; }
    .bts-contact-info { position: static; }
    .bts-purpose-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .bts-form-row { grid-template-columns: 1fr; }
    .bts-contact-form-wrap { padding: 28px 20px; }
    .bts-contact-section { padding: 64px 0; }
    .bts-purpose-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   CTA SECTION
   ============================================ */
.bts-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bts-navy) 0%, var(--bts-navy-light) 100%);
    text-align: center;
    position: relative;
}

.bts-cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.bts-cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--bts-white);
    margin-bottom: 15px;
}

.bts-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.bts-cta-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* ============================================
   BROCHURE BANNER — Full-height, center-aligned
   ============================================ */
.bts-brochure-banner {
    min-height: 360px;
    background: linear-gradient(145deg, #040e1e 0%, #0a2540 40%, #0d3760 70%, #061830 100%);
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
    margin: -2px 0;
}

/* Dot-grid overlay */
.bts-brochure-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(1,173,211,0.10) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* Animated gradient sweep */
.bts-brochure-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
        transparent 0%,
        rgba(1,173,211,0.04) 30%,
        rgba(124,58,237,0.06) 60%,
        transparent 100%);
    animation: bts-brochure-sweep 6s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes bts-brochure-sweep {
    0%   { opacity: 0.5; transform: translateX(-5%); }
    100% { opacity: 1;   transform: translateX(5%); }
}

/* Glow orbs */
.bts-brochure-bg-orb { position: absolute; border-radius: 50%; pointer-events: none; }

.bts-brochure-bg-orb--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(1,173,211,0.16) 0%, transparent 65%);
    top: -200px; left: -150px;
}
.bts-brochure-bg-orb--2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 65%);
    bottom: -180px; right: -100px;
}
.bts-brochure-bg-orb--3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(1,173,211,0.10) 0%, transparent 70%);
    top: 50%; left: 55%;
    transform: translate(-50%, -50%);
}

/* Huge background watermark */
.bts-brochure-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(100px, 18vw, 220px);
    font-weight: 900;
    color: rgba(255,255,255,0.025);
    letter-spacing: 0.1em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    z-index: 0;
}

/* Decorative rings */
.bts-brochure-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(1,173,211,0.10);
    pointer-events: none;
}
.bts-brochure-ring--1 {
    width: 640px; height: 640px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-style: dashed;
    animation: bts-brochure-spin 40s linear infinite;
}
.bts-brochure-ring--2 {
    width: 420px; height: 420px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(124,58,237,0.08);
    animation: bts-brochure-spin 28s linear infinite reverse;
}

@keyframes bts-brochure-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---- Centered inner layout ---- */
.bts-brochure-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

/* Eyebrow */
.bts-brochure-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(1,173,211,0.12);
    border: 1px solid rgba(1,173,211,0.30);
    color: #01add3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 28px;
}
.bts-brochure-eyebrow i { font-size: 9px; color: #fbbf24; }

/* Heading */
.bts-brochure-heading {
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}
.bts-brochure-heading span {
    background: linear-gradient(90deg, #01add3, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sub */
.bts-brochure-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.50);
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 44px;
}

/* ---- Download button ---- */
.bts-brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 18px 36px;
    background: #fff;
    color: #0a2540;
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(0,0,0,0.30), 0 0 0 1px rgba(255,255,255,0.08);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.3s ease;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep on hover */
.bts-brochure-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(1,173,211,0.12), transparent);
    transition: left 0.5s ease;
}
.bts-brochure-btn:hover::before { left: 150%; }

.bts-brochure-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 24px 56px rgba(0,0,0,0.36), 0 0 0 1px rgba(1,173,211,0.15);
    color: #0a2540;
    text-decoration: none;
}

.bts-brochure-btn-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, #01add3, #0192b3);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(1,173,211,0.45);
    animation: bts-bounce-icon 2.4s ease-in-out infinite;
}

@keyframes bts-bounce-icon {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}

.bts-brochure-btn:hover .bts-brochure-btn-icon { animation: none; transform: scale(1.08); }

.bts-brochure-btn-text { display: flex; flex-direction: column; gap: 3px; text-align: left; }

.bts-brochure-btn-label {
    font-size: 16px;
    font-weight: 800;
    color: #0a2540;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.bts-brochure-btn-sub {
    font-size: 11.5px;
    font-weight: 500;
    color: #64748b;
}

/* ---- Stats row ---- */
.bts-brochure-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.bts-brochure-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

.bts-brochure-stat i { color: #01add3; font-size: 14px; }
.bts-brochure-stat strong { color: #fff; font-weight: 700; }

.bts-brochure-stat-divider {
    width: 1px; height: 18px;
    background: rgba(255,255,255,0.15);
}

/* "Or book a demo" link */
.bts-brochure-demo-link {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.38);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}
.bts-brochure-demo-link:hover { color: #01add3; text-decoration: none; }
.bts-brochure-demo-link i { font-size: 11px; transition: transform 0.2s ease; }
.bts-brochure-demo-link:hover i { transform: translateX(4px); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .bts-brochure-banner  { clip-path: polygon(0 24px, 100% 0, 100% calc(100% - 24px), 0 100%); padding: 60px 0 70px; min-height: auto; }
    .bts-brochure-heading { letter-spacing: -0.5px; }
    .bts-brochure-sub     { font-size: 14px; }
    .bts-brochure-btn     { padding: 16px 28px; }
    .bts-brochure-btn-icon { width: 46px; height: 46px; font-size: 18px; }
    .bts-brochure-stats   { flex-wrap: wrap; justify-content: center; gap: 12px; }
    .bts-brochure-stat-divider { display: none; }
    .bts-brochure-watermark { display: none; }
    .bts-brochure-ring    { display: none; }
}

/* ============================================
   FOOTER
   ============================================ */
.bts-footer {
    background: var(--bts-navy);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.bts-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bts-footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.bts-footer-about p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.bts-social-links {
    display: flex;
    gap: 10px;
}

.bts-social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bts-white);
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: 14px;
}

.bts-social-links a:hover {
    background: var(--bts-primary);
    transform: translateY(-2px);
}

.bts-footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--bts-white);
    margin-bottom: 20px;
}

.bts-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bts-footer-col ul li {
    margin-bottom: 10px;
}

.bts-footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.bts-footer-col ul li a:hover {
    color: var(--bts-primary);
}

.bts-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bts-contact-list li i {
    color: var(--bts-primary);
    margin-top: 3px;
    font-size: 14px;
    flex-shrink: 0;
}

.bts-contact-list li span,
.bts-contact-list li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
}

.bts-contact-list li a:hover {
    color: var(--bts-primary);
}

.bts-footer-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bts-footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

/* ============================================
   SCROLL ANIMATIONS — cards / images fade up
   ============================================ */

.bts-scroll-hidden {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.bts-scroll-hidden.bts-scroll-from-left  { transform: translateX(-40px); }
.bts-scroll-hidden.bts-scroll-from-right { transform: translateX(40px); }

.bts-scroll-visible {
    opacity: 1 !important;
    transform: none !important;
}

/* Stagger delays for card grids */
.bts-scroll-hidden[data-delay="1"] { transition-delay: 80ms; }
.bts-scroll-hidden[data-delay="2"] { transition-delay: 160ms; }
.bts-scroll-hidden[data-delay="3"] { transition-delay: 240ms; }
.bts-scroll-hidden[data-delay="4"] { transition-delay: 320ms; }

/* ============================================
   WORD-BY-WORD HEADING REVEAL
   ============================================ */

@keyframes bts-word-in {
    0%   { opacity: 0; transform: translateY(28px); filter: blur(3px); }
    60%  { filter: blur(0); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Each word wrapped by JS */
.bts-word {
    display: inline-block;
    opacity: 0;
    will-change: transform, opacity;
}

/* Trigger: JS adds this class to the heading when it enters viewport */
.bts-heading-animate .bts-word {
    animation: bts-word-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal],
    .bts-scroll-hidden,
    .bts-word {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .bts-clients-slider {
        animation: none;
    }
}

/* ============================================
   RESPONSIVE - 1024px (Tablet landscape)
   ============================================ */
@media (max-width: 1024px) {
    .bts-hero-content { left: 50px; max-width: 500px; }
    .bts-hero-content h1 { font-size: 48px; letter-spacing: -1.5px; }
    .bts-hero-ghost-num { font-size: 180px; }

    .bts-about-grid {
        gap: 40px;
    }

    .bts-about-content h2,
    .bts-section-header h2,
    .bts-cta-content h2 {
        font-size: 36px;
    }

    /* Solutions Tablet — 2 columns */
    .bts-sol-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .bts-sol-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    /* Products Tablet */
    .bts-product-layout {
        grid-template-columns: 1fr;
    }

    .bts-product-nav {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .bts-product-nav::-webkit-scrollbar { display: none; }

    .bts-product-tab {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 14px 16px;
        flex-shrink: 0;
        min-width: 120px;
        transform: none !important;
    }

    .bts-product-tab:hover { transform: none !important; }

    .bts-nav-arrow { display: none; }

    .bts-product-nav-text span { display: none; }

    .bts-product-showcase {
        grid-template-columns: 1fr;
    }

    .bts-product-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .bts-vms-features {
        grid-template-columns: repeat(2, 1fr);
    }


    .bts-testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .bts-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Section spacing */
    .bts-products,
    .bts-about,
    .bts-services,
    .bts-faq,
    .bts-testimonials,
    .bts-blog {
        padding: 80px 0;
    }

    /* Blog — 2 columns on tablet */
    .bts-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .bts-blog-img  { height: 190px; }
    .bts-blog-info { padding: 20px; }

    /* Products section heading scale */
    .bts-prod-title,
    .bts-prod-title-line {
        font-size: 40px;
        letter-spacing: -0.5px;
    }

    /* Clients stats row — hide dividers, wrap */
    .bts-clients-stat-divider { display: none; }
    .bts-clients-stats-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 40px;
    }

    /* CTA */
    .bts-cta { padding: 80px 0; }
}

/* ============================================
   RESPONSIVE - 768px (Tablet portrait)
   ============================================ */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .bts-menu-toggle  { display: flex; }
    .bts-nav-desktop  { display: none; }   /* hide desktop nav links */

    /* Mobile drawer nav links */
    .bts-nav-menu .bts-nav-links > li > a::after { display: none; }

    /* Hero Mobile */
    .bts-hero-slider { height: 620px; }

    .bts-hero-vignette {
        background: linear-gradient(
            to top,
            rgba(4,12,24,0.97) 0%,
            rgba(4,12,24,0.82) 40%,
            rgba(4,12,24,0.30) 70%,
            transparent 100%
        ) !important;
    }

    .bts-hero-content  { left: 22px; right: 22px; bottom: 52px; max-width: 100%; }
    .bts-hero-ghost-num { font-size: 130px; right: 10px; letter-spacing: -10px; }
    .bts-hero-content h1 { font-size: 34px; letter-spacing: -1px; }
    .bts-hero-content p  { font-size: 14px; margin-bottom: 20px; }
    .bts-hero-text-cta   { font-size: 11px; letter-spacing: 2px; }

    /* Move arrows to bottom-left on mobile */
    .bts-slider-prev { left: 12px; right: auto; }
    .bts-slider-next { right: 12px; left: auto; }

    .bts-slider-arrow {
        width: 42px;
        height: 42px;
        font-size: 13px;
    }

    /* About Mobile */
    .bts-about-grid {
        grid-template-columns: 1fr;
    }

    .bts-about-content h2 {
        font-size: 30px;
    }

    .bts-about-features {
        grid-template-columns: 1fr;
    }

    .bts-about-image {
        order: -1;
    }

    /* Products Mobile - Horizontal scroll tabs */
    .bts-product-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .bts-product-tabs::-webkit-scrollbar {
        display: none;
    }

    .bts-product-tab {
        flex-shrink: 0;
    }

    .bts-product-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bts-product-details h3 {
        font-size: 24px;
    }

    .bts-vms-features {
        grid-template-columns: 1fr;
    }


    .bts-product-stats-ring {
        gap: 10px;
    }

    .bts-stat-item {
        min-width: 75px;
        padding: 12px 8px;
    }

    .bts-stat-number {
        font-size: 22px;
    }

    /* Solutions Mobile — 2 columns */
    .bts-sol-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .bts-sol-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 100%;
        margin: 0;
        width: 100%;
    }
    .bts-sol-card-top { height: 130px; }
    .bts-sol-card-body { padding: 16px 18px 20px; }
    .bts-sol-card-body h3 { font-size: 15px; }
    .bts-sol-card-body p  { font-size: 13px; }

    .bts-section-header h2 {
        font-size: 28px;
    }

    /* Blog Mobile */
    .bts-blog-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
        gap: 16px;
    }
    .bts-blog-img        { height: 200px; }
    .bts-blog-info       { padding: 20px; }
    .bts-blog-info h3    { font-size: 15px; }
    .bts-blog-card       { border-radius: 12px; }
    .bts-link            { padding: 6px 0; min-height: 40px; }

    /* Trust grid - 2 columns tablet */
    .bts-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .bts-trust-heading { font-size: 28px; }
    .bts-trust-number { font-size: 52px; }

    /* CTA Mobile */
    .bts-cta-content h2 {
        font-size: 28px;
    }

    .bts-cta-btns {
        flex-direction: column;
        align-items: center;
    }

    /* Footer Mobile */
    .bts-footer-grid {
        grid-template-columns: 1fr;
    }

    /* Section spacing */
    .bts-products,
    .bts-about,
    .bts-services,
    .bts-faq,
    .bts-testimonials,
    .bts-blog {
        padding: 64px 0;
    }

    /* Products section heading */
    .bts-prod-title,
    .bts-prod-title-line {
        font-size: 28px;
        letter-spacing: 0;
    }

    .bts-prod-section-header { margin-bottom: 32px; }

    /* Clients section */
    .bts-clients { padding: 60px 0 40px; }
    .bts-clients-heading { font-size: 26px; }
    .bts-clients-stats-row { gap: 16px 28px; padding: 20px 24px; }

    /* Contact section */
    .bts-contact-section { padding: 64px 0; }

    /* Products grid — single column on narrow mobile */
    .bts-prod-grid { grid-template-columns: 1fr; }

    /* CTA */
    .bts-cta { padding: 64px 0; }
    .bts-cta-content { padding: 0 16px; }

    /* Contact form rows — single column on mobile */
    .bts-form-row { grid-template-columns: 1fr; }
    .bts-contact-form-wrap { padding: 28px 20px; }
    .bts-purpose-grid { grid-template-columns: repeat(2, 1fr); }

    /* Images scale properly */
    img { max-width: 100%; height: auto; }

    /* Prevent any element wider than viewport */
    * { max-width: 100%; box-sizing: border-box; }
    .bts-container { width: 100%; }
}

/* ============================================
   RESPONSIVE - 480px (Mobile)
   ============================================ */
@media (max-width: 480px) {
    /* Solutions — single column on small phones */
    .bts-sol-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .bts-sol-card:last-child:nth-child(odd) {
        grid-column: auto;
    }
    .bts-sol-card-top  { height: 110px; }
    .bts-sol-card-icon { width: 62px; height: 62px; font-size: 24px; }
    .bts-sol-card-body { padding: 14px 16px 18px; }
    .bts-sol-card-body h3 { font-size: 14.5px; }

    .bts-hero-slider {
        height: 460px;
    }

    .bts-hero-content h1 {
        font-size: 28px;
    }

    .bts-hero-content {
        padding: 0 20px;
    }

    .bts-container {
        padding: 0 16px;
    }

    .bts-product-tab {
        padding: 10px 18px;
        font-size: 14px;
    }

    .bts-product-tab i {
        font-size: 16px;
    }

    .bts-about-content h2 {
        font-size: 26px;
    }

    .bts-cta-content h2 {
        font-size: 24px;
    }

    .bts-cta-content p {
        font-size: 15px;
    }

    .bts-section-header h2 {
        font-size: 24px;
    }

    .bts-section-header p {
        font-size: 14px;
    }

    /* Trust grid - 2 columns mobile */
    .bts-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .bts-trust-number { font-size: 42px; letter-spacing: -1px; }
    .bts-trust-stat { padding: 28px 18px 24px; }
    .bts-trust-heading { font-size: 22px; }
    .bts-trust-stat-icon { width: 38px; height: 38px; font-size: 15px; }

    /* Section spacing */
    .bts-products,
    .bts-about,
    .bts-services,
    .bts-faq,
    .bts-testimonials,
    .bts-blog {
        padding: 48px 0;
    }

    /* Products section heading */
    .bts-prod-title,
    .bts-prod-title-line {
        font-size: 24px;
        letter-spacing: 0;
    }

    .bts-prod-title-line span { font-size: 18px; }

    /* Clients stats — stack vertically */
    .bts-clients-stats-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 20px 16px;
    }

    .bts-clients-stat-item { width: 100%; text-align: center; }
    .bts-clients-heading { font-size: 22px; }

    /* CTA */
    .bts-cta { padding: 48px 0; }

    /* Contact */
    .bts-contact-info { padding: 32px 20px; }
    .bts-contact-form-wrap { padding: 24px 16px; }

    /* Phone input — stack on tiny screens */
    .bts-phone-input { flex-direction: column; }
    .bts-phone-input select { width: 100%; }

    /* Testimonials quote mark — hide on tiny screens */
    .bts-ts-content::before { display: none; }

    /* Products grid — force single column */
    .bts-prod-grid { grid-template-columns: 1fr; }

    /* Blog — tighter on small phones */
    .bts-blog-grid    { gap: 14px; max-width: 100%; }
    .bts-blog-img     { height: 180px; }
    .bts-blog-info    { padding: 16px; }
    .bts-blog-info h3 { font-size: 15px; margin-bottom: 8px; }
    .bts-blog-info p  { font-size: 13px; margin-bottom: 12px; }
}

/* ============================================
   LOGIN MODAL — Split-panel design
   ============================================ */
.bts-login-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 21, 41, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.bts-login-modal-overlay.bts-modal-open {
    opacity: 1;
    visibility: visible;
}

/* --- Card shell --- */
.bts-login-modal-card {
    display: flex;
    width: 100%;
    max-width: 760px;
    min-height: 480px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 40px 90px rgba(6, 21, 41, 0.55), 0 0 0 1px rgba(255,255,255,0.06) inset;
    transform: translateY(28px) scale(0.96);
    transition: transform 0.32s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.bts-login-modal-overlay.bts-modal-open .bts-login-modal-card {
    transform: translateY(0) scale(1);
}

/* --- LEFT brand panel --- */
.bts-lm-brand {
    width: 42%;
    flex-shrink: 0;
    background: rgba(6, 21, 41, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 36px 32px 32px;
}

.bts-lm-brand::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(1,173,211,0.10) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.bts-lm-brand::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #01add3, rgba(1,173,211,0.15));
}

.bts-lm-logo {
    height: 80px;
    width: auto;
    position: relative;
    z-index: 1;
    margin-bottom: auto;
}

.bts-lm-brand-content {
    position: relative;
    z-index: 1;
    padding-top: 32px;
}

.bts-lm-brand-heading {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0 0 12px;
}

.bts-lm-brand-sub {
    font-size: 13.5px;
    color: rgba(255,255,255,0.50);
    line-height: 1.65;
    margin: 0 0 24px;
}

.bts-lm-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bts-lm-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    font-weight: 500;
}

.bts-lm-features li i { color: #01add3; font-size: 14px; flex-shrink: 0; }

/* Decorative rings */
.bts-lm-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.bts-lm-ring--1 {
    width: 300px; height: 300px;
    bottom: -110px; left: -110px;
    border: 1px solid rgba(1,173,211,0.12);
}

.bts-lm-ring--2 {
    width: 190px; height: 190px;
    bottom: -60px; left: -60px;
    border: 1px solid rgba(1,173,211,0.08);
}

/* --- RIGHT form panel --- */
.bts-lm-form {
    flex: 1;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 40px;
    position: relative;
}

/* Close button */
.bts-login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.60);
    font-size: 13px;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}

.bts-login-modal-close:hover {
    background: rgba(239, 68, 68, 0.30);
    border-color: rgba(239, 68, 68, 0.50);
    color: #fff;
}

/* Form header */
.bts-lm-form-head { margin-bottom: 28px; }

.bts-login-modal-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 5px;
    letter-spacing: -0.3px;
}

.bts-login-modal-sub {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.50);
    margin: 0;
}

/* Form */
.bts-login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bts-login-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bts-login-field label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.bts-login-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.bts-login-icon {
    position: absolute;
    left: 13px;
    color: #94a3b8;
    font-size: 13px;
    pointer-events: none;
}

.bts-login-input-wrap input {
    width: 100%;
    padding: 11px 40px 11px 38px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
}

.bts-login-input-wrap input:focus {
    border-color: rgba(1, 173, 211, 0.70);
    box-shadow: 0 0 0 3px rgba(1, 173, 211, 0.18);
    background: rgba(255, 255, 255, 0.14);
}

.bts-login-input-wrap input::placeholder { color: rgba(255, 255, 255, 0.28); }

.bts-login-input-wrap input:-webkit-autofill,
.bts-login-input-wrap input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 100px rgba(10, 20, 50, 0.95) inset !important;
    -webkit-text-fill-color: #ffffff !important;
}

.bts-login-toggle-pwd {
    position: absolute;
    right: 11px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
}

.bts-login-toggle-pwd:hover { color: #ffffff; }

.bts-login-icon { color: rgba(255, 255, 255, 0.35); }

.bts-login-forgot {
    text-align: right;
    margin-top: -4px;
}

.bts-login-forgot a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.bts-login-forgot a:hover { color: #ffffff; text-decoration: underline; }

.bts-login-error {
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #fca5a5;
}

.bts-login-submit {
    width: 100%;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    font-size: 14.5px;
    padding: 13px 24px;
}

.bts-login-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* ============================================
   RESPONSIVE — missing patches
   ============================================ */

/* Drawer: never wider than viewport on tiny phones */
@media (max-width: 380px) {
    .bts-nav-menu { width: 88vw; }
}

/* Slider dots: move to centre-bottom on mobile so they clear the arrows */
@media (max-width: 768px) {
    .bts-slider-dots {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 16px;
    }
}

/* Hero buttons: stack on very small phones */
@media (max-width: 400px) {
    .bts-hero-btns { flex-direction: column; gap: 10px; }
    .bts-hero-btns .bts-btn { width: 100%; justify-content: center; }
    .bts-hero-left-bar { display: none; }
    .bts-purpose-grid { grid-template-columns: 1fr !important; }
}

/* ============================================
   RESPONSIVE — 380px (small phones)
   ============================================ */
@media (max-width: 380px) {
    .bts-container { padding: 0 14px; }

    /* Navbar */
    .bts-navbar .bts-container { padding: 0 14px; height: 56px; }
    .bts-logo img { height: 28px; }
    .bts-menu-toggle { width: 36px; height: 36px; }

    /* Hero */
    .bts-hero-slider  { height: 420px; }
    .bts-hero-content { left: 14px; right: 14px; bottom: 44px; }
    .bts-hero-content h1 { font-size: 24px; letter-spacing: -0.5px; }
    .bts-hero-content p  { font-size: 13px; margin-bottom: 16px; }
    .bts-hero-ghost-num  { display: none; }
    .bts-hero-partner-badge { font-size: 10px; padding: 4px 10px; }

    /* Section headers */
    .bts-section-header h2 { font-size: 21px; }
    .bts-section-header p  { font-size: 13.5px; }
    .bts-section-tag       { font-size: 10px; padding: 4px 12px; }

    /* Section spacing */
    .bts-products, .bts-about, .bts-services,
    .bts-faq, .bts-testimonials, .bts-blog,
    .bts-trust, .bts-clients { padding: 40px 0; }

    /* Products */
    .bts-prod-title, .bts-prod-title-line { font-size: 20px; }
    .bts-product-tab    { padding: 8px 14px; font-size: 13px; }
    .bts-product-details h3 { font-size: 20px; }

    /* Trust */
    .bts-trust-grid    { grid-template-columns: 1fr 1fr; gap: 10px; }
    .bts-trust-number  { font-size: 36px; }
    .bts-trust-stat    { padding: 20px 12px 18px; }
    .bts-trust-heading { font-size: 20px; }
    .bts-trust-stat-icon { display: none; }

    /* Clients */
    .bts-clients-heading          { font-size: 19px; }
    .bts-clients-stat-item strong { font-size: 26px; }
    .bts-clients-stat-item span   { font-size: 11px; }

    /* About */
    .bts-about-content h2 { font-size: 22px; }

    /* FAQ */
    .bts-faq-q-text { font-size: 14px; }
    .bts-faq-answer { font-size: 13.5px; }

    /* Blog */
    .bts-blog-img     { height: 160px; }
    .bts-blog-info    { padding: 14px; }
    .bts-blog-info h3 { font-size: 14px; }

    /* Solutions */
    .bts-sol-grid      { gap: 12px; }
    .bts-sol-card-top  { height: 90px; }
    .bts-sol-card-body { padding: 12px 14px 16px; }
    .bts-sol-card-body h3 { font-size: 14px; }

    /* CTA */
    .bts-cta            { padding: 40px 0; }
    .bts-cta-content h2 { font-size: 21px; }
    .bts-cta-btns .bts-btn { width: 100%; justify-content: center; }

    /* Footer */
    .bts-footer-brand-desc { font-size: 13px; }
    .bts-footer-col h4     { font-size: 13px; }
    .bts-footer-col li     { font-size: 13px; }

    /* Contact */
    .bts-contact-form-wrap { padding: 20px 14px; }
    .bts-contact-info      { padding: 24px 14px; }
    .bts-form-btn { width: 100%; justify-content: center; }

    /* Buttons */
    .bts-btn-lg { padding: 12px 20px; font-size: 13.5px; }
    .bts-btn    { font-size: 13px; }
}

/* Responsive — modal */
@media (max-width: 640px) {
    .bts-login-modal-overlay  { padding: 16px; align-items: center; justify-content: center; }
    .bts-login-modal-card     { flex-direction: column; max-width: 420px; width: 100%; min-height: auto; border-radius: 20px; transform: translateY(20px) scale(0.96); }
    .bts-login-modal-overlay.bts-modal-open .bts-login-modal-card { transform: translateY(0) scale(1); }
    .bts-lm-brand             { width: 100%; padding: 20px 24px 16px; min-height: auto; flex-direction: row; align-items: center; gap: 14px; }
    .bts-lm-logo              { height: 44px; margin-bottom: 0; }
    .bts-lm-brand-content     { padding-top: 0; }
    .bts-lm-brand-heading     { font-size: 18px; margin-bottom: 0; }
    .bts-lm-brand-sub         { display: none; }
    .bts-lm-features          { display: none; }
    .bts-lm-ring              { display: none; }
    .bts-lm-form              { padding: 24px 24px 28px; }
    .bts-lm-form-head         { margin-bottom: 20px; }
    .bts-login-modal-title    { font-size: 20px; }
    .bts-login-form           { gap: 14px; }
    .bts-login-submit         { padding: 12px 20px; font-size: 14px; width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
    .bts-login-modal-overlay  { padding: 12px; }
    .bts-login-modal-card     { max-width: 100%; border-radius: 18px; }
    .bts-lm-brand             { padding: 16px 18px 12px; }
    .bts-lm-form              { padding: 20px 18px 24px; }
    .bts-login-modal-title    { font-size: 19px; }
    .bts-login-input-wrap input { font-size: 16px; }
}



/* ============================================
   CHATBOT WIDGET
   ============================================ */
.bts-chat-widget {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9980;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ---- Toggle button ---- */
.bts-chat-toggle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bts-navy) 0%, var(--bts-primary) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    position: relative;
    box-shadow: 0 6px 24px rgba(1, 173, 211, 0.40);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.25s ease;
    flex-shrink: 0;
}

.bts-chat-toggle:hover {
    transform: scale(1.10);
    box-shadow: 0 10px 32px rgba(1, 173, 211, 0.55);
}

.bts-chat-toggle.bts-chat-active { transform: scale(1.05); }

.bts-chat-icon-open,
.bts-chat-icon-close { position: absolute; transition: opacity 0.2s ease, transform 0.2s ease; }

.bts-chat-icon-close { opacity: 0; transform: rotate(-90deg); }

.bts-chat-toggle.bts-chat-active .bts-chat-icon-open  { opacity: 0; transform: rotate(90deg); }
.bts-chat-toggle.bts-chat-active .bts-chat-icon-close { opacity: 1; transform: rotate(0deg); }

.bts-chat-badge {
    position: absolute;
    top: 0; right: 0;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    animation: bts-badge-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bts-badge-pop {
    0%   { transform: scale(0); }
    100% { transform: scale(1); }
}

/* ---- Chat panel ---- */
.bts-chat-panel {
    position: absolute;
    bottom: calc(100% + 16px);
    left: 0;
    width: 340px;
    max-height: 520px;
    background: #fff;
    border-radius: 20px;
    box-shadow:
        0 24px 64px rgba(10, 37, 64, 0.18),
        0 4px 16px rgba(10, 37, 64, 0.10);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    transform-origin: bottom left;
    pointer-events: none;
    transition: opacity 0.25s ease,
                transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(10, 37, 64, 0.08);
}

.bts-chat-panel.bts-chat-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* ---- Header ---- */
.bts-chat-header {
    background: linear-gradient(135deg, #0a2540 0%, #0d3356 100%);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.bts-chat-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.bts-chat-agent {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.bts-chat-agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(1, 173, 211, 0.20);
    border: 2px solid rgba(1, 173, 211, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #01add3;
    font-size: 18px;
    flex-shrink: 0;
}

.bts-chat-agent-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.bts-chat-agent-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255,255,255,0.55);
}

.bts-chat-status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34,197,94,0.30);
    animation: bts-status-pulse 2s ease-in-out infinite;
}

@keyframes bts-status-pulse {
    0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,0.30); }
    50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

.bts-chat-header-close {
    background: rgba(255,255,255,0.10);
    border: none;
    border-radius: 8px;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.70);
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    position: relative; z-index: 1;
    flex-shrink: 0;
}

.bts-chat-header-close:hover {
    background: rgba(255,255,255,0.20);
    color: #fff;
}

/* ---- Messages ---- */
.bts-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scroll-behavior: smooth;
}

.bts-chat-messages::-webkit-scrollbar { width: 4px; }
.bts-chat-messages::-webkit-scrollbar-track { background: transparent; }
.bts-chat-messages::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }

.bts-chat-msg {
    display: flex;
    max-width: 88%;
}

.bts-chat-msg--bot  { align-self: flex-start; }
.bts-chat-msg--user { align-self: flex-end; }

.bts-chat-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.65;
    word-break: break-word;
}

.bts-chat-msg--bot .bts-chat-bubble {
    background: #f1f5f9;
    color: var(--bts-text);
    border-bottom-left-radius: 4px;
}

.bts-chat-msg--user .bts-chat-bubble {
    background: linear-gradient(135deg, var(--bts-primary) 0%, var(--bts-primary-dark) 100%);
    color: #fff;
    border-bottom-right-radius: 4px;
}

/* Typing indicator */
.bts-chat-msg--typing .bts-chat-bubble { display: none; }

.bts-chat-typing {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px;
    background: #f1f5f9;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
}

.bts-chat-typing span {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--bts-primary);
    animation: bts-typing-dot 1.2s ease-in-out infinite;
}
.bts-chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.bts-chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bts-typing-dot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30%            { transform: translateY(-5px); opacity: 1; }
}

/* ---- Quick replies ---- */
.bts-chat-quick-wrap {
    padding: 0 14px 10px;
    flex-shrink: 0;
}

.bts-chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.bts-chat-qr-btn {
    padding: 6px 13px;
    border: 1.5px solid var(--bts-primary);
    border-radius: 20px;
    background: transparent;
    color: var(--bts-primary);
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.bts-chat-qr-btn:hover {
    background: var(--bts-primary);
    color: #fff;
    transform: translateY(-1px);
}

/* ---- Footer / Input ---- */
.bts-chat-footer {
    padding: 10px 14px 12px;
    border-top: 1px solid #f1f5f9;
    flex-shrink: 0;
}

.bts-chat-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 6px 6px 6px 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bts-chat-input-wrap:focus-within {
    border-color: var(--bts-primary);
    box-shadow: 0 0 0 3px rgba(1,173,211,0.12);
    background: #fff;
}

.bts-chat-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 13px;
    font-family: inherit;
    color: var(--bts-text);
    outline: none;
    min-width: 0;
}

.bts-chat-input::placeholder { color: #94a3b8; }

.bts-chat-send {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: var(--bts-primary);
    border: none;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.15s ease;
}

.bts-chat-send:hover {
    background: var(--bts-primary-dark);
    transform: scale(1.05);
}

.bts-chat-powered {
    text-align: center;
    font-size: 10px;
    color: #94a3b8;
    margin: 8px 0 0;
}

.bts-chat-powered strong { color: var(--bts-text-muted); }

/* ---- Responsive ---- */
@media (max-width: 480px) {
    .bts-chat-widget { left: 16px; bottom: 16px; }
    .bts-chat-panel  { width: calc(100vw - 32px); left: 0; }
    .bts-chat-toggle { width: 52px; height: 52px; font-size: 21px; }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.bts-wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9990;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.25s ease;
}

.bts-wa-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    animation: bts-wa-pulse 2.4s ease-out infinite;
    z-index: -1;
}

@keyframes bts-wa-pulse {
    0%   { transform: scale(1);   opacity: 0.55; }
    70%  { transform: scale(1.55); opacity: 0; }
    100% { transform: scale(1.55); opacity: 0; }
}

.bts-wa-icon {
    font-size: 28px;
    line-height: 1;
}

.bts-wa-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: #0a2540;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    padding: 7px 14px;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-50%) translateX(6px);
}

.bts-wa-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #0a2540;
}

.bts-wa-float:hover {
    transform: scale(1.10);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.bts-wa-float:hover .bts-wa-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
    .bts-wa-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .bts-wa-icon { font-size: 24px; }
    .bts-wa-tooltip { display: none; }
}

/* ============================================
   CUSTOM CURSOR — Sleek teal SVG arrow
   ============================================ */
*, *::before, *::after {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M4 2 L20 12 L12 13.5 L8 22 Z' fill='%2301add3' stroke='%23ffffff' stroke-width='1.2' stroke-linejoin='round'/%3E%3C/svg%3E") 4 2, auto !important;
}
a, button, [role="button"], .bts-btn, label, select,
input[type="submit"], input[type="button"], input[type="checkbox"], input[type="radio"] {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M4 2 L20 12 L12 13.5 L8 22 Z' fill='%230192b3' stroke='%23ffffff' stroke-width='1.4' stroke-linejoin='round'/%3E%3Ccircle cx='18' cy='18' r='4' fill='%2301add3' opacity='0.85'/%3E%3C/svg%3E") 4 2, pointer !important;
}
input[type="text"], input[type="email"], input[type="password"],
input[type="number"], input[type="search"], textarea {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Crect x='9' y='1' width='2' height='18' rx='1' fill='%2301add3'/%3E%3Crect x='5' y='1' width='10' height='2' rx='1' fill='%2301add3'/%3E%3Crect x='5' y='17' width='10' height='2' rx='1' fill='%2301add3'/%3E%3C/svg%3E") 10 10, text !important;
}
@media (hover: none) and (pointer: coarse) {
    *, *::before, *::after { cursor: auto !important; }
    a, button, [role="button"], .bts-btn { cursor: pointer !important; }
    input, textarea { cursor: text !important; }
}

/* ── Cursor glow halo ── */
.bts-cursor-halo {
    position: fixed;
    width: 40px; height: 40px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999990;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(1,173,211,0.22) 0%, transparent 70%);
    transition: opacity 0.35s ease, width 0.3s ease, height 0.3s ease;
    will-change: left, top;
}
.bts-cursor-halo.bts-halo-hover {
    width: 64px; height: 64px;
    background: radial-gradient(circle, rgba(1,173,211,0.32) 0%, transparent 70%);
}

/* ── Click ripple ── */
.bts-cursor-ripple {
    position: fixed;
    width: 10px; height: 10px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999989;
    transform: translate(-50%, -50%) scale(1);
    background: transparent;
    border: 2px solid rgba(1,173,211,0.85);
    animation: bts-ripple-out 0.55s cubic-bezier(0.2, 0.6, 0.4, 1) forwards;
}
@keyframes bts-ripple-out {
    0%   { transform: translate(-50%,-50%) scale(1);   opacity: 1; }
    100% { transform: translate(-50%,-50%) scale(5.5); opacity: 0; }
}

/* ── Velocity sparks ── */
.bts-spark {
    position: fixed;
    pointer-events: none;
    z-index: 999988;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: bts-spark-fade 0.55s ease-out forwards;
    will-change: transform, opacity;
}
@keyframes bts-spark-fade {
    0%   { opacity: 1;   transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0;   transform: translate(var(--sx), var(--sy)) scale(0); }
}
