/* ============================================================
   BCMTrac Design System — "Precision Authority"
   Dark-anchored enterprise aesthetic
   Typography: Syne / Playfair Display / Jost
   ============================================================ */

/* --- Custom Properties --- */
:root {
    --bg-primary: #FEFEFE;
    --bg-dark: #0D1626;
    --bg-surface: #0F1E35;
    --teal: #29ABE2;
    --teal-light: #4CCFF5;
    --teal-dark: #003478;
    --amber: #D97A0B;
    --amber-light: #EC8C22;
    --gold: #BC8B0C;
    --gold-light: #D9A61A;
    --text: #18243A;
    --text-muted: #657690;
    --text-light: #CDD7E3;
    --text-on-dark: #E8EDF3;
    --border-light: #E2E8F0;
    --border-dark: #1E2F48;
    --navy: #0D1626;
    --white: #FFFFFF;
    --black: #000000;
    --nav-height: 76px;
    --section-pad-y: 120px;
    --section-pad-y-sm: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Typography Scale --- */
.font-syne { font-family: 'Jost', sans-serif; }
.font-playfair { font-family: 'Jost', sans-serif; }
.font-jost { font-family: 'Jost', sans-serif; }

h1, h2, h3, h4, h5, h6 {
    line-height: 1.15;
    font-weight: 700;
}

/* --- Utility --- */
.container-bcm {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-bcm--wide {
    max-width: 1440px;
}

.container-bcm--narrow {
    max-width: 900px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-bcm {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, border-bottom-color 0.4s ease, backdrop-filter 0.4s ease;
    border-bottom: 1px solid transparent;
}

.nav-bcm.scrolled {
    background: rgba(13, 22, 38, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 40px rgba(0,0,0,0.35);
    border-bottom-color: var(--border-dark);
}

.nav-bcm__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.nav-bcm__logo {
    position: relative;
}
.nav-bcm__logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 60px;
    background: radial-gradient(ellipse 80% 85% at 50% 50%,
        rgba(255,255,255,0.92) 0%,
        rgba(255,255,255,0.65) 28%,
        rgba(255,255,255,0.20) 58%,
        transparent 75%
    );
    border-radius: 6px;
    pointer-events: none;
    z-index: 0;
}
.nav-bcm__logo img {
    height: 55px;
    width: auto;
    transition: height 0.3s ease;
    position: relative;
    z-index: 1;
}

.nav-bcm.scrolled .nav-bcm__logo img {
    height: 45px;
}

.nav-bcm__links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-bcm__link {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-on-dark);
    padding: 8px 14px;
    border-radius: 4px;
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
    white-space: nowrap;
}

.nav-bcm__link:hover,
.nav-bcm__link:focus {
    color: var(--white);
    background: rgba(255,255,255,0.05);
}

.nav-bcm__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.nav-bcm__link:hover::after {
    transform: scaleX(1);
}

/* Dropdown */
.nav-bcm__dropdown {
    position: relative;
}

.nav-bcm__dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    background: var(--bg-surface);
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.nav-bcm__dropdown:hover .nav-bcm__dropdown-menu,
.nav-bcm__dropdown.open .nav-bcm__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-bcm__dropdown-item {
    display: block;
    padding: 10px 20px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-bcm__dropdown-item:hover {
    background: rgba(41,171,226,0.12);
    color: var(--teal-light);
}

.nav-bcm__dropdown-item--amber:hover { color: var(--amber-light); background: rgba(212,114,10,0.1); }
.nav-bcm__dropdown-item--gold:hover { color: var(--gold-light); background: rgba(184,134,11,0.1); }

/* Nav CTA */
.nav-bcm__cta {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    border: 1.5px solid var(--teal);
    padding: 9px 22px;
    border-radius: 50px;
    margin-left: 14px;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.nav-bcm__cta:hover {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(41,171,226,0.26);
}

/* Chevron for dropdowns */
.nav-bcm__chevron {
    display: inline-block;
    margin-left: 4px;
    font-size: 10px;
    transition: transform 0.25s ease;
}

.nav-bcm__dropdown:hover .nav-bcm__chevron {
    transform: rotate(180deg);
}

/* Mobile hamburger */
.nav-bcm__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.nav-bcm__hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-bcm__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-bcm__hamburger.active span:nth-child(2) { opacity: 0; }
.nav-bcm__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-bcm__mobile {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    padding: 32px;
    overflow-y: auto;
    z-index: 999;
}

.nav-bcm__mobile.open {
    display: block;
    animation: fadeSlideDown 0.3s ease forwards;
}

.nav-bcm__mobile .nav-bcm__link {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border-dark);
}

.nav-bcm__mobile .nav-bcm__link::after { display: none; }

.nav-bcm__mobile .nav-bcm__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
}

.nav-bcm__mobile .nav-bcm__cta {
    display: inline-block;
    margin: 24px 0 0 0;
    padding: 12px 28px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--bg-dark);
    overflow: hidden;
    padding: calc(var(--nav-height) + 40px) 32px 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('../images/skyScrapers.jpg') center center / cover no-repeat;
    opacity: 0.22;
    filter: saturate(0.55) brightness(0.85);
}

.hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 256px;
    pointer-events: none;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(10,38,60,0.72) 0%,
        rgba(13,32,50,0.40) 35%,
        rgba(11,55,70,0.30) 58%,
        rgba(13,22,38,0.82) 85%,
        rgba(13,22,38,1) 100%
    );
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 960px;
}

.hero__eyebrow {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero__title {
    font-family: 'Jost', sans-serif;
    font-weight: 900;
    font-size: clamp(2.8rem, 6.5vw, 5.6rem);
    line-height: 1.04;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s ease forwards;
}

.hero__title em {
    font-style: normal;
    color: var(--teal);
}

.hero__sub {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 44px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s ease forwards;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s ease forwards;
}

.hero__line {
    width: 48px;
    height: 1px;
    background: var(--teal);
    margin: 0 auto 20px;
    opacity: 0;
    animation: scaleX 0.6s 0.2s ease forwards;
}

/* Service Panels at hero bottom */
.hero__panels {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 80px;
    width: 100%;
    max-width: 1320px;
    opacity: 0;
    animation: fadeUp 0.8s 1.1s ease forwards;
}

.hero__panel {
    background: var(--bg-surface);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    border-top: 3px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero__panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(41,171,226,0.06), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero__panel:hover::before { opacity: 1; }

.hero__panel:hover {
    transform: translateY(-4px);
}

.hero__panel--teal { border-top-color: var(--teal); }
.hero__panel--amber { border-top-color: var(--amber); }
.hero__panel--gold { border-top-color: var(--gold); }

.hero__panel--amber::before {
    background: linear-gradient(180deg, rgba(212,114,10,0.06), transparent);
}

.hero__panel--gold::before {
    background: linear-gradient(180deg, rgba(184,134,11,0.06), transparent);
}

.hero__panel-number {
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.hero__panel-title {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.hero__panel-text {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-bcm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}

/* Shimmer sweep on hover */
.btn-bcm::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.13), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}
.btn-bcm:hover::before {
    left: 160%;
}

.btn-bcm:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
}

.btn-bcm--primary,
.btn-bcm--teal {
    background: var(--teal);
    color: var(--white);
}

.btn-bcm--primary:hover,
.btn-bcm--teal:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(41,171,226,0.30);
    color: var(--white);
}

.btn-bcm--outline {
    background: #000000 !important;
    color: var(--white) !important;
    border: 1.5px solid rgba(255,255,255,0.50) !important;
}

.btn-bcm--outline:hover {
    border-color: var(--white) !important;
    background: #1a1a1a !important;
    box-shadow: 0 6px 20px rgba(255,255,255,0.08);
    color: var(--white) !important;
}

.btn-bcm--dark {
    background: var(--bg-dark);
    color: var(--white);
}

.btn-bcm--dark:hover {
    background: var(--bg-surface);
    box-shadow: 0 6px 20px rgba(0,0,0,0.20);
    color: var(--white);
}

.btn-bcm--amber {
    background: var(--amber);
    color: var(--white);
}

.btn-bcm--amber:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212,114,10,0.30);
    color: var(--white);
}

.btn-bcm--gold {
    background: var(--gold);
    color: var(--white);
}

.btn-bcm--gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(184,134,11,0.30);
    color: var(--white);
}

/* --- Pill solid variant for service bands --- */
.btn-bcm--pill {
    border-radius: 50px;
    padding: 10px 28px;
    font-size: 12px;
    letter-spacing: 0.1em;
    align-self: flex-start;
    width: fit-content;
}

.btn-bcm--pill-blue {
    background: var(--teal);
    color: var(--white);
    border: none;
}
.btn-bcm--pill-blue:hover {
    background: var(--teal-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41,171,226,0.27);
}

.btn-bcm--pill-amber {
    background: var(--amber);
    color: var(--white);
    border: none;
}
.btn-bcm--pill-amber:hover {
    background: var(--amber-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,114,10,0.27);
}

.btn-bcm--pill-gold {
    background: var(--gold);
    color: var(--white);
    border: none;
}
.btn-bcm--pill-gold:hover {
    background: var(--gold-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184,134,11,0.27);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-light {
    background: var(--bg-primary);
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.section-pad {
    padding: var(--section-pad-y) 0;
}

.section-label {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--teal);
}

.section-heading {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-heading--dark {
    color: var(--text);
}

.section-heading--light {
    color: var(--white);
}

/* ============================================================
   SHOWCASE — Immersive full-bleed auto-rotating panel
   ============================================================ */
.showcase {
    position: relative;
    height: 92vh;
    min-height: 620px;
    max-height: 800px;
    overflow: hidden;
    background: #0D1626;
}
/* Directional parallax — set start position before transition */
.showcase__slide.sc-pre-right {
    transform: scale(1.04) translateX(7%);
    transition: none !important;
}
.showcase__slide.sc-pre-left {
    transform: scale(1.04) translateX(-7%);
    transition: none !important;
}
/* Exit: slide away in the opposite direction */
.showcase__slide.sc-exit-left {
    transform: scale(1.0) translateX(-7%) !important;
    opacity: 0 !important;
    transition: opacity 0.95s ease, transform 0.95s ease !important;
}
.showcase__slide.sc-exit-right {
    transform: scale(1.0) translateX(7%) !important;
    opacity: 0 !important;
    transition: opacity 0.95s ease, transform 0.95s ease !important;
}

.showcase__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.1s ease, transform 6s ease;
}
.showcase__slide.active {
    opacity: 1;
    transform: scale(1.0);
}
.showcase__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13,22,38,0.18) 0%,
        rgba(13,22,38,0.22) 40%,
        rgba(13,22,38,0.60) 72%,
        rgba(13,22,38,0.88) 100%
    );
    pointer-events: none;
}
.showcase__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
    max-width: 680px;
}
.showcase__eyebrow {
    font-size: calc(11px + 0.2rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #5fd4f7;
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
    text-shadow:
        -0.5px -0.5px 0 rgba(255,255,255,0.35),
         0.5px -0.5px 0 rgba(255,255,255,0.35),
        -0.5px  0.5px 0 rgba(255,255,255,0.35),
         0.5px  0.5px 0 rgba(255,255,255,0.35),
        0 1px 8px rgba(0,0,0,0.55);
}
.showcase__eyebrow.vis { opacity: 1; transform: none; }
.showcase__title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin: 0 0 20px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease 0.32s, transform 0.55s ease 0.32s;
}
.showcase__title.vis { opacity: 1; transform: none; }
.showcase__sub {
    font-size: clamp(15px, 1.5vw, 17px);
    color: rgba(255,255,255,0.68);
    line-height: 1.65;
    max-width: 480px;
    margin: 0 0 32px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease 0.44s, transform 0.55s ease 0.44s;
}
.showcase__sub.vis { opacity: 1; transform: none; }
.showcase__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.56s, transform 0.5s ease 0.56s;
}
.showcase__actions.vis { opacity: 1; transform: none; }
.showcase__dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.showcase__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}
.showcase__dot.active {
    background: var(--teal);
    transform: scale(1.35);
}
.showcase__dot:hover { background: rgba(255,255,255,0.6); }
@media (max-width: 768px) {
    .showcase { height: 70vh; }
    .showcase__overlay {
        background: linear-gradient(to bottom, rgba(13,22,38,0.32) 0%, rgba(13,22,38,0.88) 100%);
    }
    .showcase__content { justify-content: flex-end; padding-bottom: 72px; max-width: 100%; }
}

/* ============================================================
   SERVICES — Alternating Full-Width Bands
   ============================================================ */
.services {
    background: var(--bg-dark);
}

.service-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    position: relative;
    overflow: hidden;
}

.service-band__media {
    position: relative;
    overflow: hidden;
}

.service-band__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.service-band:hover .service-band__media img {
    transform: scale(1.03);
}

.service-band__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
    position: relative;
}

.service-band__number {
    font-family: 'Jost', sans-serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    position: absolute;
    right: 48px;
    top: 36px;
    line-height: 1;
    opacity: 0.18;
    color: var(--white);
    pointer-events: none;
    letter-spacing: 0.05em;
}

.service-band__label {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-band__label::before {
    content: '';
    width: 24px;
    height: 1px;
}

/* Teal band */
.service-band--teal { background: var(--bg-surface); }
.service-band--teal .service-band__label { color: var(--teal); }
.service-band--teal .service-band__label::before { background: var(--teal); }
.service-band--teal .service-band__title { color: var(--white); }
.service-band--teal .service-band__text { color: var(--text-light); }

/* Amber band */
.service-band--amber { background: var(--bg-dark); }
.service-band--amber .service-band__label { color: var(--amber); }
.service-band--amber .service-band__label::before { background: var(--amber); }
.service-band--amber .service-band__title { color: var(--white); }
.service-band--amber .service-band__text { color: var(--text-light); }

/* Gold band */
.service-band--gold { background: var(--bg-surface); }
.service-band--gold .service-band__label { color: var(--gold); }
.service-band--gold .service-band__label::before { background: var(--gold); }
.service-band--gold .service-band__title { color: var(--white); }
.service-band--gold .service-band__text { color: var(--text-light); }

.service-band__title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 24px;
}

.service-band__text {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

/* Reverse layout for band 2 */
.service-band--reverse .service-band__content { order: -1; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    background: var(--bg-primary);
    padding: calc(var(--section-pad-y) + 20px) 0;
    position: relative;
}

.about__grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

.about__quote-block {
    position: sticky;
    top: calc(var(--nav-height) + 40px);
}

.about__pullquote {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.4;
    color: var(--text);
    position: relative;
    padding-left: 24px;
    border-left: 3px solid var(--teal);
}

.about__pullquote-attr {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
    padding-left: 24px;
}

.about__story h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 24px;
}

.about__story p {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about__story p:last-child { margin-bottom: 0; }

/* ============================================================
   MILESTONES
   ============================================================ */
.milestones {
    position: relative;
    background: var(--bg-dark);
    padding: var(--section-pad-y) 0;
    overflow: hidden;
}

.milestones__bg {
    position: absolute;
    inset: 0;
    background: url('../images/counter.jpg') center / cover no-repeat;
    opacity: 0.12;
    filter: saturate(0.3);
}

.milestones__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(13,22,38,0.85) 50%, var(--bg-dark) 100%);
}

.milestones__content {
    position: relative;
    z-index: 2;
}

.milestones__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.milestone-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(15,30,53,0.6);
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    backdrop-filter: blur(8px);
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.milestone-card:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
}

.milestone-card__number {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(2.5rem, 4vw, 3.6rem);
    color: var(--white);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.milestone-card__number small {
    font-size: 0.5em;
    font-style: normal;
    color: var(--teal);
}

.milestone-card__label {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.milestones__tagline {
    text-align: center;
    margin-top: 48px;
    font-family: 'Jost', sans-serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    background: var(--bg-dark);
    padding: var(--section-pad-y) 0;
    overflow: hidden;
    position: relative;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 56px;
    padding-top: 9px;
}

.testimonials__quote-mark {
    font-family: 'Jost', sans-serif;
    font-size: 100px;
    line-height: 0.6;
    color: var(--teal);
    opacity: 0.18;
    display: block;
    margin-bottom: 20px;
}

/* Auto-scroll carousel */
.testimonials__carousel {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.testimonials__stage {
    overflow: hidden;
    position: relative;
    min-height: 260px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border-dark);
    border-radius: 32px;
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(60px) scale(0.97);
    transition: opacity 0.55s cubic-bezier(.4,0,.2,1), transform 0.55s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    position: relative;
}

.testimonial-card.leaving {
    opacity: 0;
    transform: translateX(-60px) scale(0.97);
    position: absolute;
}

.testimonial-card__initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(41,171,226,0.15);
    border: 1.5px solid rgba(41,171,226,0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: var(--teal);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.testimonial-card__company {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
}

.testimonial-card__excerpt {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-light);
    flex: 1;
    margin-bottom: 24px;
}

.testimonial-card__author {
    border-top: 1px solid var(--border-dark);
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-card__name {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
}

.testimonial-card__role {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: var(--text-muted);
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonials__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-dark);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.testimonials__dot.active {
    background: var(--teal);
    transform: scale(1.3);
}

/* ============================================================
   PARTNERS — Dark image panels with logo overlay + hover glow
   ============================================================ */
.partners {
    background: var(--bg-dark);
    padding: var(--section-pad-y) 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.partners__header {
    text-align: center;
    margin-bottom: 52px;
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

/* Partner dark-panel card */
.partner-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    border: 1px solid var(--border-dark);
    cursor: default;
}

.partner-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.28) saturate(0.3);
    transform: scale(1.0);
    transition: transform 0.7s ease, filter 0.7s ease;
    will-change: transform;
}
.partner-card:hover .partner-card__bg {
    transform: scale(1.05);
    filter: brightness(0.38) saturate(0.45);
}

.partner-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,22,38,0.2) 0%, rgba(13,22,38,0.55) 100%);
}

/* Subtle centre glow on hover */
.partner-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, transparent 100%);
    transition: background 0.55s ease;
    pointer-events: none;
}
.partner-card:hover .partner-card__glow {
    background: radial-gradient(circle at center, rgba(41,171,226,0.10) 0%, transparent 68%);
}

/* Logo */
.partner-card__logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 24px;
}
.partner-card__logo img {
    max-height: 72px;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.75);
    transition: filter 0.5s ease, transform 0.5s ease;
}
.partner-card:hover .partner-card__logo img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.07);
}

/* Partner name caption */
.partner-card__name {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
    z-index: 2;
    transition: color 0.4s ease;
}
.partner-card:hover .partner-card__name {
    color: rgba(255,255,255,0.62);
}

@media (max-width: 768px) {
    .partners__grid { grid-template-columns: 1fr; max-width: 380px; }
    .partner-card { height: 180px; }
}

/* ============================================================
   FAQ — 3D card grid, 4+4 layout
   ============================================================ */
.faq {
    background: var(--bg-primary);
    padding: var(--section-pad-y) 0;
}

.faq__heading-wrap {
    text-align: center;
    margin-bottom: 52px;
    padding-bottom: 8px;
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.faq__item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 2px 8px rgba(13,22,38,0.06), 0 6px 24px rgba(13,22,38,0.04);
    transform: translateY(0);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    cursor: pointer;
    overflow: hidden;
}

.faq__item:hover {
    border-color: rgba(41,171,226,0.5);
    box-shadow: 0 4px 16px rgba(41,171,226,0.1), 0 12px 40px rgba(13,22,38,0.1);
    transform: translateY(-3px);
}

.faq__item.active {
    border-color: var(--teal);
    box-shadow: 0 0 0 1px var(--teal), 0 8px 32px rgba(41,171,226,0.12);
}

.faq__question {
    width: 100%;
    text-align: left;
    padding: 0;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--text);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    border: none;
    outline: none;
    line-height: 1.45;
}

.faq__question-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--teal);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.faq__item.active .faq__question-icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__answer-inner {
    padding: 14px 0 2px;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
}

.faq__image { display: none; }

/* ============================================================
   CONTACT — Hero header + card layout + map
   ============================================================ */
.contact {
    background: #F2F4F8;
    padding: 0;
}

/* Hero header */
.contact__hero {
    position: relative;
    height: 220px;
    background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=1920&q=70');
    background-size: cover;
    background-position: center 40%;
    display: flex;
    align-items: center;
}
.contact__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,22,38,0.82) 0%, rgba(13,22,38,0.60) 100%);
}
.contact__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.contact__hero-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.contact__hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Card wrapper */
.contact .container-bcm {
    padding-top: 0;
    margin-top: -48px;
    position: relative;
    z-index: 2;
}
.contact__card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.11);
    display: grid;
    grid-template-columns: 320px 1fr;
    overflow: hidden;
    margin-bottom: 0;
}

/* Left panel — dark navy */
.contact__card-left {
    background: var(--navy);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
}
.contact__card-right {
    padding: 48px 44px;
    background: #fff;
}
.contact__card-heading {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
}
.contact__card-left  .contact__card-heading { color: #fff; }
.contact__card-right .contact__card-heading { color: var(--text); }
.contact__card-sub {
    font-size: 13.5px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
    line-height: 1.65;
}

/* Info items */
.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}
.contact__info-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(41,171,226,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 14px;
    flex-shrink: 0;
}
.contact__info-body strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}
.contact__info-body p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin: 0;
}
.contact__info-body a {
    color: rgba(255,255,255,0.75);
    transition: color 0.2s ease;
}
.contact__info-body a:hover { color: var(--teal); }

/* Social row */
.contact__social-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: auto;
    margin-bottom: 12px;
}
.contact__social-row { display: flex; gap: 10px; }
.contact__social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.contact__social-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

/* Light form inputs */
.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.contact__form-group {
    position: relative;
}
.contact__form-group--full { grid-column: 1 / -1; }
.contact__input-error {
    display: none;
    font-size: 11.5px;
    color: #e74c3c;
    margin-top: 4px;
}
.contact__input,
.contact__textarea {
    width: 100%;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    outline: none;
}
.contact__input--light,
.contact__textarea.contact__input--light {
    background: #f5f7fa;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    color: #18243A;
    padding: 11px 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact__input--light:focus,
.contact__textarea.contact__input--light:focus {
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(41,171,226,0.12);
    color: #18243A;
}
.contact__input--light::placeholder,
.contact__textarea.contact__input--light::placeholder { color: #a0aec0; }
input:-webkit-autofill.contact__input--light {
    -webkit-box-shadow: 0 0 0 1000px #f5f7fa inset !important;
    -webkit-text-fill-color: #18243A !important;
}
.contact__textarea.contact__input--light {
    resize: vertical;
    min-height: 120px;
}
.contact__form-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

/* Send button */
.btn-contact-send {
    display: block;
    width: 100%;
    padding: 13px 24px;
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-contact-send:hover {
    background: var(--teal-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(41,171,226,0.22);
}

/* Map */
.contact__map {
    margin-top: 0;
    line-height: 0;
}
.contact__map iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

/* Responsive */
@media (max-width: 860px) {
    .contact__card { grid-template-columns: 1fr; }
    .contact__card-left { padding: 36px 28px; }
    .contact__card-right { padding: 36px 28px; }
    .contact__social-label { margin-top: 24px; }
}
@media (max-width: 520px) {
    .contact__form-row { grid-template-columns: 1fr; }
    .contact__hero { height: 180px; }
    .contact .container-bcm { margin-top: -32px; }
}

/* ============================================================
   EMAIL SUBSCRIPTION STRIP
   ============================================================ */
.sub-strip {
    background: linear-gradient(135deg, #0D1626 0%, #0f2042 55%, #0D1626 100%);
    border-top: 1px solid rgba(41,171,226,0.15);
    border-bottom: 1px solid rgba(41,171,226,0.15);
    padding: 72px 0 68px;
    position: relative;
    overflow: hidden;
}
.sub-strip::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(41,171,226,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.sub-strip__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.sub-strip__eyebrow {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
    display: block;
    margin-bottom: 14px;
}
.sub-strip__title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 12px;
    line-height: 1.2;
}
.sub-strip__sub {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    margin: 0 0 36px;
    line-height: 1.6;
}
.sub-strip__form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto 14px;
}
.sub-strip__input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    padding: 13px 18px;
    font-size: 14px;
    color: var(--white);
    font-family: var(--font-jost);
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.sub-strip__input::placeholder { color: rgba(255,255,255,0.3); }
.sub-strip__input:focus {
    border-color: var(--teal);
    background: rgba(41,171,226,0.07);
}
.sub-strip__btn {
    flex-shrink: 0;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 13px 26px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-jost);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.sub-strip__btn:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41,171,226,0.30);
}
.sub-strip__msg {
    font-size: 13px;
    min-height: 20px;
    transition: opacity 0.3s ease;
}
.sub-strip__msg--ok  { color: #4CCFF5; }
.sub-strip__msg--err { color: #ff7a7a; }
.sub-strip__note {
    font-size: 12px;
    color: rgba(255,255,255,0.48);
    margin-top: 10px;
}
@media (max-width: 520px) {
    .sub-strip__form { flex-direction: column; }
    .sub-strip__btn  { width: 100%; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-bcm {
    background: var(--bg-dark);
    border-top: 2px solid rgba(41,171,226,0.99);
    position: relative;
}

.footer-bcm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(41,171,226,0.5), transparent);
}

.footer-bcm__main {
    padding: 72px 0 52px;
    display: grid;
    grid-template-columns: 230px 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-bcm__brand img {
    height: 44px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 8px rgba(41,171,226,0.18));
}

.footer-bcm__tagline {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 13.5px;
    color: #85A4C2;
    line-height: 1.75;
    margin-bottom: 24px;
}

.footer-bcm__social {
    display: flex;
    gap: 10px;
}

.footer-bcm__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--white);
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
}
.footer-bcm__social-icon--fb { background: #1877F2; }
.footer-bcm__social-icon--li { background: #0A66C2; }
.footer-bcm__social-icon--em { background: #29ABE2; }

.footer-bcm__social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(41,171,226,0.30);
    filter: brightness(1.12);
}

.footer-bcm__col h5 {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-bcm__col a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 13.5px;
    color: #85A4C2;
    padding: 5px 0;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-bcm__col a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bcm__col p {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 13.5px;
    color: #85A4C2;
    line-height: 1.75;
}

/* Support column icon accents */
.footer-bcm__col--support a::before {
    content: '';
    flex-shrink: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.6;
    transition: opacity 0.2s;
}
.footer-bcm__col--support a:hover::before { opacity: 1; }

.footer-bcm__bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 18px 0;
}

.footer-bcm__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bcm__copyright {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 12.5px;
    color: #7D95AA;
    margin-top: 2px;
}

.footer-bcm__bottom-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-bcm__bottom-links a {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 12.5px;
    color: #7D95AA;
    transition: color 0.2s ease;
}

.footer-bcm__bottom-links a:hover {
    color: var(--text-light);
}

.footer-bcm__bottom-links .sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

/* Footer responsive */
@media (max-width: 1200px) {
    .footer-bcm__main {
        grid-template-columns: 200px 1fr 1fr 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 1024px) {
    .footer-bcm__main {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer-bcm__brand {
        grid-column: 1 / -1;
        max-width: 320px;
    }
}

@media (max-width: 640px) {
    .footer-bcm__main {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .footer-bcm__main {
        grid-template-columns: 1fr;
    }
    .footer-bcm__brand { max-width: 100%; }
    .footer-bcm__bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
#cookieConsent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-dark);
    padding: 20px 32px;
    z-index: 9999;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
}

#cookieConsent .text {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 900px;
}

#cookieConsent .text a {
    color: var(--teal);
    text-decoration: underline;
}

.cookieConsentOK {
    display: inline-block;
    margin-top: 12px;
    padding: 9px 24px;
    background: var(--teal);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.cookieConsentOK:hover {
    background: var(--teal-light);
    box-shadow: 0 4px 14px rgba(41,171,226,0.26);
    transform: translateY(-1px);
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-content {
    background: var(--bg-surface);
    border: 1px solid var(--border-dark);
    color: var(--text-on-dark);
    border-radius: 8px;
}

.modal-header {
    border-bottom: 1px solid var(--border-dark);
    background: var(--bg-dark);
    border-radius: 8px 8px 0 0;
    padding: 16px 24px;
}

.modal-header .modal-title {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
}

.modal-body {
    padding: 24px;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: var(--text-light);
}

.modal-footer {
    border-top: 1px solid var(--border-dark);
    padding: 16px 24px;
}

.modal-footer .btn {
    background: var(--teal);
    color: var(--white);
    padding: 9px 24px;
    border-radius: 8px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.modal-footer .btn:hover {
    background: var(--teal-light);
    box-shadow: 0 4px 14px rgba(41,171,226,0.26);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleX {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Scroll reveal utility */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .nav-bcm__links { display: none; }
    .nav-bcm__cta { display: none; }
    .nav-bcm__hamburger { display: flex; }
}

@media (max-width: 1024px) {
    :root {
        --section-pad-y: 80px;
    }

    .hero__panels {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-band {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .service-band__media {
        min-height: 320px;
    }

    .service-band--reverse .service-band__content {
        order: 0;
    }

    .service-band__content {
        padding: 56px 32px;
    }

    .service-band__number {
        font-size: 6rem;
        right: 24px;
        top: 16px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__quote-block {
        position: static;
    }

    .milestones__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-bcm__main {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

}

@media (max-width: 768px) {
    :root {
        --section-pad-y: 64px;
    }

    .hero {
        padding-top: calc(var(--nav-height) + 24px);
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero__actions {
        flex-direction: column;
    }

    .milestones__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .milestone-card {
        padding: 28px 16px;
    }

    .partners__grid {
        gap: 40px;
    }

    .partners__item:not(:last-child)::after {
        display: none;
    }

    .contact__form {
        padding: 32px 24px;
    }

    .contact__form-row {
        grid-template-columns: 1fr;
    }

    .footer-bcm__main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bcm__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .testimonials__carousel {
        max-width: calc(100vw - 48px);
    }
}

@media (max-width: 480px) {
    .milestones__grid {
        grid-template-columns: 1fr;
    }

    .hero__panels {
        gap: 1px;
    }

    .hero__panel {
        padding: 28px 20px;
    }

    .service-band__content {
        padding: 40px 20px;
    }
}

/* ============================================================
   SCROLL-TO-TOP (keep compatible with existing scrollUp plugin)
   ============================================================ */
#scrollUp {
    background: var(--teal);
    color: var(--white);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
    right: 24px;
    bottom: 24px;
    box-shadow: 0 4px 20px rgba(41,171,226,0.30);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#scrollUp:hover {
    background: var(--teal-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(41,171,226,0.4);
}

/* ============================================================
   reCAPTCHA responsive fix
   ============================================================ */
.g-recaptcha {
    transform-origin: left top;
}

@media (max-width: 400px) {
    .g-recaptcha {
        transform: scale(0.85);
    }
}

/* ============================================================
   PARALLAX LAYERS
   ============================================================ */
.parallax-host {
    position: relative;
    overflow: hidden;
}

.parallax-layer {
    will-change: transform;
}

/* Floating accent blocks used in service bands */
.parallax-accent {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

.parallax-accent--teal {
    background: radial-gradient(circle, rgba(41,171,226,0.15) 0%, transparent 70%);
}

.parallax-accent--amber {
    background: radial-gradient(circle, rgba(212,114,10,0.14) 0%, transparent 70%);
}

/* Hero parallax: bg moves slower than scroll */
.hero__bg {
    will-change: transform;
}

/* Section scroll-reveal with parallax offset start */
.reveal-up {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.75s cubic-bezier(.22,.68,0,1.1), transform 0.75s cubic-bezier(.22,.68,0,1.1);
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up--delay-1 { transition-delay: 0.1s; }
.reveal-up--delay-2 { transition-delay: 0.2s; }
.reveal-up--delay-3 { transition-delay: 0.3s; }
.reveal-up--delay-4 { transition-delay: 0.4s; }

/* ============================================================
   CLIENT LOGO TICKER
   ============================================================ */
.ticker-section {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    position: relative;
    top: 1px;
    padding: 28px 0;
    overflow: hidden;
}

.ticker-label {
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.ticker-track {
    display: flex;
    overflow: hidden;
    user-select: none;
    -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%);
}

.ticker-list {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    animation: tickerScroll var(--ticker-duration, 32s) linear infinite;
}

.ticker-track:hover .ticker-list {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 52px;
    white-space: nowrap;
    border-right: 1px solid var(--border-dark);
}

.ticker-item img {
    height: 28px;
    width: auto;
    opacity: 0.45;
    filter: grayscale(1) brightness(1.8);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.ticker-item:hover img {
    opacity: 0.9;
    filter: grayscale(0) brightness(1);
}

.ticker-item--text {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(200,211,224,0.4);
    transition: color 0.3s ease;
}

.ticker-item--text:hover {
    color: rgba(200,211,224,0.85);
}

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   CLIENT LOGO TICKER — image sizing upgrade
   ============================================================ */
.ticker-item img {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.4;
    filter: grayscale(1) brightness(2.2);
    transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}
.ticker-item:hover img {
    opacity: 1;
    filter: grayscale(0) brightness(1);
    transform: scale(1.06);
}
.ticker-item {
    padding: 0 56px;
}

/* ============================================================
   GEOMETRIC SCROLL ANIMATIONS
   ============================================================ */

/* Slide in from left with slight skew */
.geo-left {
    opacity: 0;
    transform: translateX(-60px) skewX(4deg);
    transition: opacity 0.8s cubic-bezier(.22,.68,0,1.05), transform 0.8s cubic-bezier(.22,.68,0,1.05);
}
.geo-left.visible {
    opacity: 1;
    transform: translateX(0) skewX(0deg);
}

/* Slide in from right with slight skew */
.geo-right {
    opacity: 0;
    transform: translateX(60px) skewX(-4deg);
    transition: opacity 0.8s cubic-bezier(.22,.68,0,1.05), transform 0.8s cubic-bezier(.22,.68,0,1.05);
}
.geo-right.visible {
    opacity: 1;
    transform: translateX(0) skewX(0deg);
}

/* Slide in from bottom with scale + rotate */
.geo-up {
    opacity: 0;
    transform: translateY(50px) scale(0.96) rotate(-1deg);
    transition: opacity 0.75s cubic-bezier(.22,.68,0,1.1), transform 0.75s cubic-bezier(.22,.68,0,1.1);
}
.geo-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
}

/* Clip-path reveal: wipe from left */
.geo-wipe {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transition: opacity 0.05s ease, clip-path 0.9s cubic-bezier(.22,.68,0,1.05);
}
.geo-wipe.visible {
    opacity: 1;
    clip-path: inset(0 0% 0 0);
}

/* Image: rise + slight tilt */
.geo-img {
    opacity: 0;
    transform: translateY(40px) rotate(1.5deg) scale(0.97);
    transition: opacity 0.85s cubic-bezier(.22,.68,0,1.1), transform 0.85s cubic-bezier(.22,.68,0,1.1);
    transform-origin: bottom center;
}
.geo-img.visible {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
}

/* Text block: slide up + staggered */
.geo-text {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,.68,0,1.1);
}
.geo-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.geo-delay-1 { transition-delay: 0s; }
.geo-delay-2 { transition-delay: 0s; }
.geo-delay-3 { transition-delay: 0s; }
.geo-delay-4 { transition-delay: 0s; }
.geo-delay-5 { transition-delay: 0.08s; }

/* Service band image: parallax depth wrapper */
.service-band__media {
    overflow: hidden;
    will-change: transform;
}
.service-band__media img {
    will-change: transform;
    transition: transform 6s ease;
}

/* Pricing link in nav stays blue */
a[href="pricing.html"].nav-bcm__link { color: var(--teal) !important; }
a[href="pricing.html"].nav-bcm__link:hover { color: var(--teal-light) !important; }

/* ============================================================
   HOME PRICING PREVIEW SECTION
   ============================================================ */
.home-pricing {
    background: #F0F4F8;
    padding: var(--section-pad-y) 0;
    position: relative;
}

.home-pricing__eyebrow {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    border: 1px solid rgba(41,171,226,0.30);
    border-radius: 2px;
    padding: 5px 14px;
    margin-bottom: 16px;
}

.home-pricing__heading {
    font-family: 'Jost', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.15;
}

.home-pricing__sub {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

.home-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.hpc {
    background: var(--white);
    border: 1px solid rgba(13,22,38,0.1);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    box-shadow: 0 4px 20px rgba(13,22,38,0.06);
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.hpc:hover {
    box-shadow: 0 12px 40px rgba(13,22,38,0.12);
    transform: translateY(-4px);
}

.hpc--featured {
    background: var(--navy);
    border-color: rgba(41,171,226,0.26);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(13,22,38,0.25);
}

.hpc--featured:hover {
    transform: translateY(-16px);
    box-shadow: 0 28px 72px rgba(13,22,38,0.32);
}

.hpc__badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 0 0 6px 6px;
    white-space: nowrap;
}

.hpc__tier {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 6px;
}

.hpc__name {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.hpc--featured .hpc__name { color: var(--white); }

.hpc__tagline {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    color: rgba(13,22,38,0.5);
    margin-bottom: 24px;
    min-height: 36px;
}

.hpc--featured .hpc__tagline { color: rgba(255,255,255,0.48); }

.hpc__price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(13,22,38,0.08);
}

.hpc--featured .hpc__price { border-bottom-color: rgba(255,255,255,0.1); }

.hpc__currency {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(13,22,38,0.45);
    margin-top: 4px;
}

.hpc--featured .hpc__currency { color: rgba(255,255,255,0.4); }

.hpc__amount {
    font-family: 'Jost', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.hpc--featured .hpc__amount { color: var(--white); }

.hpc__period {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    color: rgba(13,22,38,0.4);
}

.hpc--featured .hpc__period { color: rgba(255,255,255,0.35); }

.hpc__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.hpc__feature {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-family: 'Jost', sans-serif;
    font-size: 0.84rem;
    color: rgba(13,22,38,0.72);
    line-height: 1.4;
}

.hpc--featured .hpc__feature { color: rgba(255,255,255,0.7); }

.hpc__feature::before {
    content: '✓';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(41,171,226,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--teal);
    margin-top: 1px;
    line-height: 16px;
    text-align: center;
}

.hpc--featured .hpc__feature::before { background: rgba(41,171,226,0.22); }

.hpc__cta {
    display: block;
    text-align: center;
    padding: 13px 20px;
    font-family: 'Jost', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.22s;
}

.hpc__cta--outline {
    border: 1.5px solid rgba(13,22,38,0.2);
    color: var(--navy);
    background: transparent;
}

.hpc__cta--outline:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.hpc__cta--solid {
    background: var(--teal);
    color: var(--white);
    border: 1.5px solid var(--teal);
    box-shadow: 0 4px 16px rgba(41,171,226,0.28);
}

.hpc__cta--solid:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    box-shadow: 0 6px 24px rgba(0,52,120,0.32);
    transform: translateY(-1px);
}

.home-pricing__footer {
    text-align: center;
    margin-top: 48px;
}

.home-pricing__footer p {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

@media (max-width: 900px) {
    .home-pricing__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    .hpc--featured {
        transform: none;
    }
}

/* ============================================================
   HERO CAROUSEL — Matterport-style full-bleed service rotator
   ============================================================ */
.hero-car {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--bg-dark);
}

/* Each slide */
.hcs {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: calc(var(--nav-height) + 60px) 32px 160px;
    opacity: 0;
    transition: opacity 1.1s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
}
.hcs.active {
    opacity: 1;
    pointer-events: auto;
}

/* Background image per slide */
.hcs__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.24;
    filter: saturate(0.55) brightness(0.85);
    transform: scale(1.06);
    transition: transform 7s ease, opacity 1.1s ease;
    will-change: transform;
}
.hcs.active .hcs__bg {
    transform: scale(1);
}

/* Gradient overlay */
.hcs__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(10,38,60,0.75) 0%,
        rgba(13,22,38,0.42) 38%,
        rgba(11,55,70,0.29) 60%,
        rgba(13,22,38,0.85) 85%,
        rgba(13,22,38,0.97) 100%
    );
    pointer-events: none;
}

/* Grain texture */
.hcs__grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 256px;
    pointer-events: none;
    z-index: 1;
}

/* Slide content */
.hcs__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 960px;
    transform: translateY(16px);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(.22,.68,0,1.1) 0.25s,
                opacity 0.9s ease 0.25s;
}
.hcs.active .hcs__content {
    transform: translateY(0);
    opacity: 1;
}

.hcs__eyebrow {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 28px;
    padding: 5px 16px;
    border: 1px solid rgba(41,171,226,0.30);
    border-radius: 3px;
}
.hcs--amber .hcs__eyebrow { color: var(--amber); border-color: rgba(212,114,10,0.30); }
.hcs--gold .hcs__eyebrow { color: var(--gold-light); border-color: rgba(184,134,11,0.30); }

.hcs__title {
    font-family: 'Jost', sans-serif;
    font-weight: 900;
    font-size: clamp(2.6rem, 6.5vw, 5.4rem);
    line-height: 1.03;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hcs__sub {
    font-family: 'Jost', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.hcs__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Bottom navigation bar — simple dot indicators */
.hero-car__nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 0 24px 28px;
}
.hero-car__nav-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(10,20,36,0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 50px;
    padding: 10px 18px;
}

/* Dot button */
.hcn {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    flex-shrink: 0;
}
.hcn:hover { background: rgba(255,255,255,0.5); transform: scale(1.2); }
.hcn--teal.active  { background: var(--teal);      box-shadow: 0 0 8px rgba(41,171,226,0.7);  transform: scale(1.35); }
.hcn--amber.active { background: var(--amber);     box-shadow: 0 0 8px rgba(217,122,11,0.7);  transform: scale(1.35); }
.hcn--gold.active  { background: var(--gold-light); box-shadow: 0 0 8px rgba(217,166,26,0.7); transform: scale(1.35); }

/* Hide inner text spans — dots only */
.hcn__bar, .hcn__num, .hcn__label { display: none; }

/* Divider between dots — hidden, gaps handle spacing */
.hero-car__nav-divider { display: none; }

@media (max-width: 768px) {
    .hcs { padding-bottom: 80px; }
}
@media (max-width: 500px) {
    .hero-car__nav-inner { gap: 8px; padding: 8px 14px; }
    .hcn { width: 8px; height: 8px; }
}

/* ============================================================
   LOGO POP — subtle drop shadow + glow on nav logo
   ============================================================ */
.nav-bcm__logo img {
    filter: drop-shadow(0 2px 12px rgba(41,171,226,0.22));
    transition: height 0.3s ease, filter 0.3s ease;
}
.nav-bcm__logo:hover img {
    filter: drop-shadow(0 4px 20px rgba(41,171,226,0.45));
}

/* ============================================================
   SITE-WIDE POLISH — 3D depth, FEFEFE surfaces, subtle elevation
   ============================================================ */

/* Pricing cards — FEFEFE instead of pure white for softer feel */
.hpc { background: var(--bg-primary); }

/* Milestone cards — glow shadow on hover */
.milestone-card:hover {
    box-shadow: 0 8px 32px rgba(41,171,226,0.14), 0 2px 8px rgba(0,0,0,0.22);
}

/* About quote-block — glass card treatment */
.about__quote-block {
    background: rgba(41,171,226,0.04);
    border: 1px solid rgba(41,171,226,0.1);
    border-radius: 12px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(13,22,38,0.06);
}

/* Testimonial card — sharper 3D shadow */
.testimonial-card {
    box-shadow: 0 8px 40px rgba(13,22,38,0.22), 0 2px 8px rgba(13,22,38,0.1);
}

/* FAQ items — crisper depth */
.faq__item {
    box-shadow: 0 1px 4px rgba(13,22,38,0.04), 0 4px 20px rgba(13,22,38,0.06);
}
.faq__item:hover {
    box-shadow: 0 4px 24px rgba(41,171,226,0.12), 0 12px 40px rgba(13,22,38,0.09);
}

/* Section dividers — FEFEFE light sections get a subtle inner top shadow */
.about,
.testimonials {
    box-shadow: inset 0 1px 0 rgba(13,22,38,0.05);
}

/* Scroll-reveal base for .reveal-up elements */
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-up.in-view {
    opacity: 1;
    transform: none;
}

/* Contact form surface — FEFEFE card */
.contact__form-wrap {
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(13,22,38,0.1);
}

/* Parallax depth on service-band media — perspective tilt hint */
.service-band__media img {
    will-change: transform;
}

/* ============================================================
   PROFESSIONALISM FIXES — remove AI-generated decorative tells
   ============================================================ */

/* Fix: glowing orb blobs behind service bands — AI wallpaper tell */
.parallax-accent { display: none !important; }

/* Fix: 100px decorative quote mark in testimonials header — AI template tell */
.testimonials__quote-mark { display: none; }

/* Fix: partner card hover glow — cinematic glow on business logos is overcoooked */
.partner-card__glow { display: none !important; }
.partner-card:hover .partner-card__bg {
    transform: scale(1.03);
    filter: brightness(0.5) saturate(0.3);
}

/* Fix: service band responsive number size */
@media (max-width: 1024px) {
    .service-band__number { font-size: clamp(2rem, 3.5vw, 3rem); }
}

/* Fix: partner cards — random Unsplash photos behind logos is a strong AI tell.
   Solid dark surface + logo only = enterprise-standard partner display */
.partner-card__bg { display: none !important; }
.partner-card__overlay { display: none !important; }
.partner-card {
    background: var(--bg-surface);
    border: 1px solid rgba(41,171,226,0.12);
}
.partner-card:hover {
    border-color: rgba(41,171,226,0.28);
    background: var(--bg-surface);
}
.partner-card__logo img {
    filter: grayscale(1) brightness(1.8) !important;
    opacity: 0.65 !important;
}
.partner-card:hover .partner-card__logo img {
    filter: grayscale(0) brightness(1) !important;
    opacity: 1 !important;
}

/* Fix: showcase content anchored to bottom-dark zone for legibility */
.showcase__content {
    justify-content: flex-end !important;
    padding-bottom: 80px;
}
@media (max-width: 768px) {
    .showcase__content { padding-bottom: 72px; }
}

/* ============================================================
   WHITE PAPER TOUCHES — edge highlights on dark surfaces
   ============================================================ */

/* Milestone stat cards — white rim on the top edge */
.milestone-card {
    border-top: 1px solid rgba(255,255,255,0.12) !important;
}

/* Testimonial cards — softer white top edge inside dark section */
.testimonial-card {
    border-top: 1px solid rgba(255,255,255,0.08) !important;
}

/* About quote-block — white editorial left margin line */
.about__quote-block {
    border-left: 3px solid rgba(255,255,255,0.16) !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
}

/* ============================================================
   LOGO — solid white pill (2px top/bot, 4px left/right)
   ============================================================ */
.nav-bcm__logo::before { display: none !important; }
.nav-bcm__logo {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}

/* ============================================================
   NAV LIGHT — turns white after services section
   ============================================================ */
.nav-bcm.nav-light {
    background: rgba(255,255,255,0.97) !important;
    border-bottom-color: rgba(0,0,0,0.08) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
}
.nav-bcm.nav-light .nav-bcm__link { color: #1a1a2e !important; }
.nav-bcm.nav-light .nav-bcm__link:hover { color: var(--teal) !important; }
.nav-bcm.nav-light .nav-bcm__hamburger span { background: #1a1a2e !important; }
.nav-bcm.nav-light .nav-bcm__dropdown-menu { background: #fff !important; }
.nav-bcm.nav-light .nav-bcm__dropdown-item { color: #1a1a2e !important; }

/* ============================================================
   SECTIONS — white after services module 1/2/3
   ============================================================ */
.about { background: #ffffff !important; }
.testimonials {
    background: #ffffff !important;
    border-top: 1px solid #f0f0f0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
}
.testimonials__header h2 { color: #111827 !important; }
.testimonials__header p { color: #4b5563 !important; }
.testimonial-card {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.09) !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07) !important;
}
.testimonial-card__excerpt { color: #374151 !important; }
.testimonial-card__name { color: #111827 !important; }
.testimonial-card__author { border-top-color: rgba(0,0,0,0.07) !important; }
.testimonials__dot { background: rgba(0,0,0,0.15) !important; }
.testimonials__dot.active { background: var(--teal) !important; }
.partners {
    background: #ffffff !important;
    border-top: 1px solid #f0f0f0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
}
.section-heading--light { color: #111827 !important; }
.faq { background: #f9fafb !important; }
.home-pricing { background: #ffffff !important; }

/* ============================================================
   TESTIMONIAL 3-CARD VISIBLE CAROUSEL
   ============================================================ */
.testimonials__carousel { max-width: 960px !important; overflow: hidden !important; padding-bottom: 40px !important; }
.testimonials__stage {
    overflow: visible !important;
    min-height: 300px !important;
    position: relative;
    display: block !important;
}
.testimonial-card {
    position: absolute !important;
    inset: auto !important;
    top: 0 !important;
    width: 60% !important;
    left: 50% !important;
    transform: translateX(-50%) scale(0.88) !important;
    opacity: 0 !important;
    z-index: 0 !important;
    pointer-events: none !important;
    transition: transform 0.65s cubic-bezier(0.4,0,0.2,1), opacity 0.65s ease !important;
}
.testimonial-card.active {
    transform: translateX(-50%) scale(1) !important;
    opacity: 1 !important;
    z-index: 2 !important;
    pointer-events: auto !important;
}
.testimonial-card.card-prev {
    opacity: 0.38 !important;
    z-index: 1 !important;
    transform: translateX(calc(-50% - 82%)) scale(0.88) !important;
    pointer-events: none !important;
}
.testimonial-card.card-next {
    opacity: 0.38 !important;
    z-index: 1 !important;
    transform: translateX(calc(-50% + 82%)) scale(0.88) !important;
    pointer-events: none !important;
}
.testimonial-card.leaving {
    opacity: 0 !important;
    z-index: 0 !important;
    pointer-events: none !important;
}
.testimonials__dots { position: relative; z-index: 10; margin-top: 24px !important; }
.testimonials { padding-bottom: 32px !important; }

/* ============================================================
   SERVICE BAND — owners corp (band-02) +12px on both
   ============================================================ */
.service-band { min-height: 572px !important; }

/* ============================================================
   PARTNER CARD hover scale — both sites
   ============================================================ */
.partner-card__bg { display: block !important; transition: transform 0.5s ease !important; }
.partner-card__overlay { display: block !important; }
.partner-card:hover .partner-card__bg { transform: scale(1.06) !important; }

/* ═══════════════════════════════════════════════════════════
   BCMTrac Phase 3 Patch
   ═══════════════════════════════════════════════════════════ */

/* ── Global: remove <a> underlines ── */
a, a:hover, a:focus, a:active { text-decoration: none !important; }

/* ── Logo 1.18x scale ── */
.nav-bcm__logo img { height: 58px !important; }
.nav-bcm.scrolled .nav-bcm__logo img { height: 48px !important; }

/* ── Cookie consent — professional white bar ── */
#cookieConsent {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(255,255,255,0.90) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-top: 1px solid rgba(0,0,0,0.09) !important;
    box-shadow: 0 -4px 28px rgba(0,0,0,0.07) !important;
    padding: 0 !important;
    z-index: 9999 !important;
}
.cookie__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 40px;
    min-height: 76px;
}
.cookie__text { flex: 1; min-width: 0; }
.cookie__title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 13.5px;
    color: #111827;
    margin: 0 0 3px;
    line-height: 1.3;
}
.cookie__body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 12.5px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}
.cookie__body a { color: var(--teal); }
.cookie__body a:hover { text-decoration: underline !important; }
.cookie__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.cookieConsentDecline {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    cursor: pointer;
    padding: 9px 18px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.14);
    background: transparent;
    display: inline-block;
    transition: color 0.2s ease, border-color 0.2s ease;
    margin-top: 0 !important;
    line-height: 1;
}
.cookieConsentDecline:hover { color: #374151; border-color: rgba(0,0,0,0.28); }
.cookieConsentOK {
    display: inline-block !important;
    padding: 10px 24px !important;
    background: var(--teal) !important;
    color: #fff !important;
    font-family: 'Jost', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    margin-top: 0 !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(41,171,226,0.22) !important;
    transition: background 0.2s ease, box-shadow 0.2s ease !important;
    line-height: 1 !important;
}
.cookieConsentOK:hover {
    background: var(--teal-light) !important;
    box-shadow: 0 4px 16px rgba(41,171,226,0.32) !important;
}

/* ── Sub-strip: white bg, black text ── */
.sub-strip {
    background: #ffffff !important;
    border-top: 1px solid #efefef !important;
    border-bottom: 1px solid #efefef !important;
}
.sub-strip::before { display: none !important; }
.sub-strip__eyebrow { color: var(--teal) !important; }
.sub-strip__title { color: #111827 !important; }
.sub-strip__sub { color: #374151 !important; }
.sub-strip__input {
    background: #f9fafb !important;
    border: 1px solid rgba(0,0,0,0.14) !important;
    color: #111827 !important;
}
.sub-strip__input::placeholder { color: #9ca3af !important; }
.sub-strip__note { color: #6b7280 !important; }
.sub-strip__msg--ok { color: #059669 !important; }
.sub-strip__msg--err { color: #dc2626 !important; }

/* ── Partners: header up 13px, grid up 4px ── */
.partners__header { margin-top: -13px !important; }
.partners__grid { margin-top: -4px !important; }

/* ── Contact hero: +4px height, image up 3px, content up 4px, bottom fade ── */
.contact__hero { height: 224px !important; background-position: center calc(40% - 3px) !important; }
.contact__hero-content { margin-top: -4px !important; position: relative; z-index: 3 !important; }
.contact__hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(242,244,248,1.00) 0%,
        rgba(242,244,248,0.90) 2%,
        rgba(242,244,248,0.80) 4%,
        rgba(242,244,248,0.58) 7%,
        rgba(242,244,248,0.40) 10%,
        rgba(242,244,248,0.17) 15%,
        rgba(242,244,248,0.08) 20%,
        rgba(242,244,248,0.00) 30%
    );
    z-index: 2;
    pointer-events: none;
}

/* ── Contact left panel: teal brand outline ── */
.contact__card-left { border: 1px solid rgba(41,171,226,0.38) !important; }

/* ── Contact form: gap between subject and message, send button 5px margin ── */
.contact__form-group--full + .contact__form-group--full { margin-top: 8px; }
.contact__form-actions { margin-top: 5px !important; }

/* ── Footer: brand left -14px, bottom bar ±14px, col 1px separators ── */
.footer-bcm__brand { margin-left: -14px !important; }
.footer-bcm__copyright { margin-left: -14px !important; }
.footer-bcm__bottom-links { margin-right: -14px !important; }
.footer-bcm__col { border-left: 1px solid rgba(255,255,255,0.07) !important; padding-left: 8px !important; }

/* ── Grey text: lighter on dark, darker on white ── */
.footer-bcm__tagline { color: #A3B8CC !important; }
.footer-bcm__col a { color: #A3B8CC !important; }
.footer-bcm__col p { color: #A3B8CC !important; }
.footer-bcm__copyright { color: #9DAAB8 !important; }
.contact__card-sub { color: rgba(255,255,255,0.72) !important; }
.contact__info-body p { color: rgba(255,255,255,0.72) !important; }
.testimonial-card__role { color: #374151 !important; }
.section-subheading, .partners__subheading, .testimonials__subheading { color: #374151 !important; }

/* ═══════════════════════════════════════════════════════════
   BCMTrac Phase 4 Patch
   ═══════════════════════════════════════════════════════════ */

/* ── Showcase: ticker peeks 2px at bottom ── */
.showcase {
    height: calc(100vh - 2px) !important;
    min-height: calc(100vh - 2px) !important;
    max-height: none !important;
}

/* ── Nav login button: dark-shift→5% transparent band→teal ── */
.nav-bcm__cta {
    background: linear-gradient(180deg, #3dc0f0 0%, #1E9DD6 45%, #1585b8 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 3px 8px rgba(21,133,184,0.30) !important;
    color: #ffffff !important;
    padding: 9px 22px !important;
    border-radius: 49px !important;
}
.nav-bcm__cta:hover {
    background: linear-gradient(180deg, #52ccf5 0%, #29ABE2 45%, #1a96cc 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 5px 12px rgba(21,133,184,0.38) !important;
    color: #ffffff !important;
}

/* ── Nav links: +1px gap between items ── */
.nav-bcm__links { gap: 9px !important; }

/* ── Milestones: white background, dark text ── */
.milestones {
    background: #ffffff !important;
    border-top: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
}
.milestones__bg { display: none !important; }
.milestones__overlay { display: none !important; }
.milestone-card {
    background: #f8fafc !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    backdrop-filter: none !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05) !important;
}
.milestone-card:hover { border-color: var(--teal) !important; }
.milestone-card__number { color: var(--navy) !important; }
.milestone-card__label { color: #4b5563 !important; }
.milestones__tagline { color: #374151 !important; opacity: 1 !important; }

/* ── Section headings on white backgrounds ── */
.section-heading--light { color: #111827 !important; }
.section-label { color: var(--teal) !important; }

/* ── Partners header: up 12px more, h2 up 9px ── */
.partners__header { margin-top: -25px !important; }
.partners__header .section-heading { margin-top: -9px !important; }

/* ── Partner logo: screen blend removes white backgrounds, brightens on dark panel ── */
.partner-card__logo img,
.partner-logo-img {
    mix-blend-mode: screen !important;
    filter: brightness(3.5) saturate(0.6) !important;
    max-height: 60px !important;
    width: auto !important;
    object-fit: contain !important;
}

/* ── Pricing: subtle bg so white cards are distinct ── */
.home-pricing { background: #f7f9fc !important; }
.hpc { background: #ffffff !important; }

/* ── Pricing: cards display correctly on light bg ── */
.hpc__tier { color: var(--teal) !important; }
.hpc__name { color: var(--navy) !important; }
.hpc__tagline { color: rgba(13,22,38,0.55) !important; }
.hpc--featured .hpc__name { color: #ffffff !important; }
.hpc--featured .hpc__tagline { color: rgba(255,255,255,0.55) !important; }

/* ── BCMTrac Phase 5 ── */
/* Footer: brand 11px more left, push right cols 19px via brand padding-right */
.footer-bcm__brand { margin-left: -25px !important; padding-right: 19px !important; }
.footer-bcm__copyright { margin-left: -25px !important; }
.footer-bcm__bottom-links { margin-right: -25px !important; }
/* Social icons: blue outline, light grey, hover blue+white */
.footer-bcm__social-icon { background: #ecf3f8 !important; border: 1.5px solid rgba(41,171,226,0.55) !important; color: #6b7280 !important; }
.footer-bcm__social-icon i { color: #6b7280 !important; }
.footer-bcm__social-icon:hover { background: var(--teal) !important; border-color: var(--teal) !important; color: #fff !important; }
.footer-bcm__social-icon:hover i { color: #fff !important; }
/* Remove pricing background */
.home-pricing { background: transparent !important; }
/* Subscription strip: explicit white */
.sub-strip { background: #ffffff !important; border-top: 1px solid #e5e7eb !important; border-bottom: 1px solid #e5e7eb !important; }
/* Nav links gap */
.nav-bcm__links { gap: 8px !important; }

/* ── Ticker: white background, full-colour logos, blue dividers, shift+extend ── */
.ticker-section { background: #ffffff !important; border-top: 1px solid #e5e7eb !important; border-bottom: 1px solid #e5e7eb !important; margin-top: 1px !important; padding-bottom: 33px !important; position: relative !important; z-index: 5 !important; margin-bottom: -12px !important; }
.ticker-label { color: #4b5563 !important; position: relative !important; top: -1px !important; }
.ticker-item { border-right: 1px solid rgba(41,171,226,0.4) !important; }
.ticker-item img { opacity: 1 !important; filter: none !important; }
.ticker-item:hover img { opacity: 1 !important; filter: none !important; transform: scale(1.06); }
/* ── Module 1: erase top 3px of coloured background ── */
#svc-scheme { box-shadow: inset 0 12px 0 0 #ffffff !important; }
/* ── Testimonial dots: up 17px ── */
.testimonials__dots { position: relative !important; top: -17px !important; }
/* ── Partners: label up 22px, heading up 17px, panels unaffected ── */
.partners__header .section-label { position: relative !important; top: -22px !important; }
.partners__header .section-heading { position: relative !important; top: -17px !important; }
/* ── Pricing card 1 (featured): restore dark navy background ── */
.hpc--featured { background: var(--bg-dark) !important; }
/* ── FAQ heading: up 4px ── */
.faq__heading-wrap { position: relative !important; top: -4px !important; }
/* ── Footer: logo 1.3x scale, columns +19px right ── */
.footer-bcm__brand img { height: 57px !important; }
.footer-bcm__main { grid-template-columns: 275px 1fr 1fr 1fr 1fr !important; }
/* ── Contact: enquiry→textarea gap + social brand outline ── */
.contact__form-group--full + .contact__form-group--full { margin-top: 5px !important; }
.contact__social-btn { border-color: rgba(41,171,226,0.65) !important; color: rgba(41,171,226,0.90) !important; }
/* ── Footer text: 1 shade lighter; col links brand-outlined; bottom bar shorter ── */
.footer-bcm__tagline { color: #A0B9CE !important; }
.footer-bcm__col a { color: #A0B9CE !important; border: none !important; border-radius: 0 !important; padding: 5px 0 !important; }
.footer-bcm__col p { color: #A0B9CE !important; }
.footer-bcm__copyright { color: #96AEBC !important; }
.footer-bcm__bottom-links a { color: #96AEBC !important; }
.footer-bcm__bottom { padding-bottom: 15px !important; }
/* ── White-bg grey text: 1 shade darker ── */
:root { --text-muted: #506278; }
/* ── Footer: copyright inline with links; footer logo matches nav logo ── */
.footer-bcm__copyright { margin-top: 0 !important; }
.footer-bcm__brand img { height: 58px !important; }
/* ── Svc-scheme: bg top 9px lower, content 3px lower ── */
#svc-scheme .service-band__content { padding-top: 83px !important; }
/* ── Nav: 4px shorter; login button -1px side padding ── */
:root { --nav-height: 72px; }

/* ══ Showcase: directional horizontal slide carousel ══ */
/* Override the old scale/opacity fade system */
.showcase__slide {
    opacity: 1 !important;
    transform: translateX(100%); /* default off-screen; JS sets inline per slide */
    transition: none !important;
    z-index: 1 !important;
    will-change: transform;
}
/* First slide visible by default before JS initialises */
.showcase__slide[data-idx="0"] {
    transform: translateX(0);
}
/* Content panels — one per slide, same absolute position, cross-fade */
.showcase__panel {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
    z-index: 3;
}
.showcase__panel.sc-panel-active {
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible;
    transition: opacity 0.4s ease 0.1s, visibility 0s linear;
}
/* Stagger content elements in on panel activation */
.showcase__panel .showcase__eyebrow,
.showcase__panel .showcase__title,
.showcase__panel .showcase__sub,
.showcase__panel .showcase__actions {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.showcase__panel.sc-panel-active .showcase__eyebrow { opacity: 1; transform: none; transition-delay: 0.22s; }
.showcase__panel.sc-panel-active .showcase__title   { opacity: 1; transform: none; transition-delay: 0.36s; }
.showcase__panel.sc-panel-active .showcase__sub     { opacity: 1; transform: none; transition-delay: 0.48s; }
.showcase__panel.sc-panel-active .showcase__actions { opacity: 1; transform: none; transition-delay: 0.60s; }
/* ── Teal: slightly darker to match logo ── */
:root { --teal: #1E9DD6; --teal-light: #29ABE2; }
/* ── About: text darker; padding-bottom -130px to tighten gap to milestones ── */
.about__story p { color: #2a3d52 !important; }
.about__story p strong { color: #1a2c42 !important; }
.about { padding-bottom: 10px !important; }

/* ── Nav: black at top, dark on scroll ── */
.nav-bcm { background: #000000 !important; }
.nav-bcm.scrolled { background: var(--bg-dark) !important; }

/* ── All buttons: subtle top-lit gradient ── */
.btn-bcm--teal,
.btn-bcm--primary {
    background: linear-gradient(180deg, #3dc0f0 0%, #1E9DD6 45%, #1585b8 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 3px 8px rgba(21,133,184,0.30) !important;
}
.btn-bcm--teal:hover,
.btn-bcm--primary:hover {
    background: linear-gradient(180deg, #52ccf5 0%, #29ABE2 45%, #1a96cc 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 5px 12px rgba(21,133,184,0.38) !important;
}
.btn-bcm--amber {
    background: linear-gradient(180deg, #f0961a 0%, #D97A0B 45%, #be6808 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 3px 8px rgba(190,104,8,0.30) !important;
}
.btn-bcm--amber:hover {
    background: linear-gradient(180deg, #f5a530 0%, #EC8C22 45%, #d07a10 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 5px 12px rgba(190,104,8,0.38) !important;
}
.btn-bcm--gold {
    background: linear-gradient(180deg, #d4a020 0%, #BC8B0C 45%, #a07608 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 3px 8px rgba(160,118,8,0.30) !important;
}
.btn-bcm--gold:hover {
    background: linear-gradient(180deg, #e0b030 0%, #D9A61A 45%, #b88a10 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.26), 0 5px 12px rgba(160,118,8,0.38) !important;
}
.btn-bcm--dark {
    background: linear-gradient(180deg, #1e3050 0%, #0D1626 50%, #080f1c 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 3px 8px rgba(0,0,0,0.35) !important;
}
.btn-bcm--dark:hover {
    background: linear-gradient(180deg, #253a60 0%, #162030 50%, #0c1420 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 5px 12px rgba(0,0,0,0.45) !important;
}

/* ── Hero slides: stronger text legibility ── */
.showcase__title {
    text-shadow: 0 2px 18px rgba(0,0,0,0.75), 0 1px 4px rgba(0,0,0,0.90) !important;
}
.showcase__sub {
    text-shadow: 0 1px 10px rgba(0,0,0,0.80), 0 1px 3px rgba(0,0,0,0.85) !important;
    color: rgba(255,255,255,0.92) !important;
}
.showcase__eyebrow {
    background: rgba(8, 26, 62, 0.60) !important;
    color: #d6eaf8 !important;
    padding: 4px 10px !important;
    border-radius: 3px !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.55) !important;
    backdrop-filter: blur(3px) !important;
    -webkit-backdrop-filter: blur(3px) !important;
    display: inline-block !important;
    width: fit-content !important;
}
/* Showcase title+sub: strong text-shadow for legibility over images */
.showcase__title { text-shadow: 0 2px 18px rgba(0,0,0,0.75), 0 1px 4px rgba(0,0,0,0.90) !important; }
.showcase__sub { text-shadow: 0 1px 10px rgba(0,0,0,0.80), 0 1px 3px rgba(0,0,0,0.85) !important; color: rgba(255,255,255,0.92) !important; }

/* ══ BCMTrac Phase 6 Patch ══ */
/* Testimonials: dots 120px below stage (fix — overrides 24px + -17px top) */
.testimonials__dots { margin-top: 120px !important; top: 0 !important; }
/* Contact form: last textarea 6px more gap, send button 4px more */
.contact__form-group--full + .contact__form-group--full { margin-top: 11px !important; }
.contact__form-actions { margin-top: 9px !important; }
/* Contact social: blue bg + white icon on hover */
.contact__social-btn:hover { background: var(--teal) !important; border-color: var(--teal) !important; color: #ffffff !important; }
.contact__social-btn:hover i, .contact__social-btn:hover .fas, .contact__social-btn:hover .fab { color: #ffffff !important; }
/* Footer social: blue bg + white icon on hover */
.footer-bcm__social-icon:hover { background: var(--teal) !important; border-color: var(--teal) !important; color: #ffffff !important; }
.footer-bcm__social-icon:hover i, .footer-bcm__social-icon:hover .fas, .footer-bcm__social-icon:hover .fab { color: #ffffff !important; }
/* Showcase: outline/demo buttons — black gradient, white border+text */
.btn-bcm--outline { background: linear-gradient(180deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.87) 50%, rgba(0,0,0,0.82) 100%) !important; border-color: rgba(255,255,255,0.75) !important; color: #ffffff !important; }
.btn-bcm--outline:hover { background: linear-gradient(180deg, rgba(20,20,20,0.90) 0%, rgba(10,10,10,0.93) 50%, rgba(20,20,20,0.90) 100%) !important; border-color: #ffffff !important; color: #ffffff !important; }
/* Footer: link columns 32px right */
.footer-bcm__col { border-top: 1px solid rgba(255,255,255,0.08) !important; padding-left: 32px !important; }
