/* ==========================================================================
   global.css — Howbridge Theme
   Single shared stylesheet for ALL sections.
   Add section styles at the bottom under clearly labelled headings.
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
      Change these to restyle the entire site.
   -------------------------------------------------------------------------- */
:root {

    /* --- Brand colours --- */
    --hb-dark: #0C211F;
    /* Primary dark (header, dark sections) */
    --hb-dark-2: #152b26;
    /* Slightly lighter dark */
    --hb-light: #FAF9F5;
    /* Off-white background */
    --hb-white: #ffffff;
    --hb-accent: #c8f264;
    /* Lime green accent (buttons, highlights) */
    --hb-accent-hover: #b8e250;
    --dark-green: #2D4E45;

    /* --- Text --- */
    --hb-text-dark: #0C211F;
    --hb-text-light: #ffffff;
    --hb-text-muted: rgba(255, 255, 255, 0.45);
    --hb-text-muted-dk: rgba(13, 32, 28, 0.5);
    /* muted on light bg */

    /* --- Typography --- */
    --hb-font: 'FK Grotesk', sans-serif;
    --hb-font-display: 'FK Screamer', sans-serif;
    --hb-font-deck: 'Feature Deck', Georgia, serif;
    --hb-font-serif: 'Feature Display', Georgia, serif;
    --hb-font-serif-cn: 'Feature Display Condensed', Georgia, serif;

    /* --- Font sizes (fluid) --- */
    --hb-text-160: clamp(80px, calc(80px + 80 * ((100vw - 768px) / 832)), 160px);
    --hb-text-140: clamp(60px, calc(60px + 80 * ((100vw - 768px) / 832)), 140px);
    --hb-text-120: clamp(60px, calc(60px + 60 * ((100vw - 768px) / 832)), 120px);
    --hb-text-110: clamp(60px, calc(60px + 50 * ((100vw - 768px) / 832)), 110px);
    --hb-text-100: clamp(60px, calc(60px + 40 * ((100vw - 768px) / 832)), 100px);
    --hb-text-90: clamp(50px, calc(50px + 40 * ((100vw - 768px) / 832)), 90px);
    --hb-text-86: clamp(40px, calc(40px + 46 * ((100vw - 768px) / 832)), 86px);
    --hb-text-79: clamp(24px, calc(24px + 55 * ((100vw - 768px) / 832)), 79px);
    --hb-text-72: clamp(34px, calc(34px + 38 * ((100vw - 768px) / 832)), 72px);
    --hb-text-62: clamp(32px, calc(32px + 30 * ((100vw - 768px) / 832)), 62px);
    --hb-text-58: clamp(38px, calc(38px + 20 * ((100vw - 768px) / 832)), 58px);
    --hb-text-57: clamp(37px, calc(37px + 20 * ((100vw - 768px) / 832)), 57px);
    --hb-text-55: clamp(32px, calc(32px + 23 * ((100vw - 768px) / 832)), 55px);
    --hb-text-50: clamp(28px, calc(28px + 22 * ((100vw - 768px) / 832)), 50px);
    --hb-text-48: clamp(22px, calc(3.13vw - 2.05px), 48px);
    --hb-text-42: clamp(22px, calc(22px + 20 * ((100vw - 768px) / 832)), 42px);
    --hb-text-40: clamp(20px, calc(20px + 20 * ((100vw - 768px) / 832)), 40px);
    --hb-text-36: clamp(26px, calc(26px + 10 * ((100vw - 768px) / 832)), 36px);
    --hb-text-30: clamp(20px, calc(20px + 10 * ((100vw - 768px) / 832)), 30px);
    --hb-text-28: clamp(16px, calc(16px + 12 * ((100vw - 768px) / 832)), 28px);
    --hb-text-26: clamp(16px, calc(16px + 10 * ((100vw - 768px) / 832)), 26px);
    --hb-text-24: clamp(16px, calc(16px + 8 * ((100vw - 768px) / 832)), 24px);
    --hb-text-21: clamp(16px, calc(16px + 5 * ((100vw - 768px) / 832)), 21px);
    --hb-text-18: clamp(14px, 0.48vw + 10.3px, 18px);
    --hb-text-16: clamp(14px, 0.24vw + 12.15px, 16px);



    /* --- Spacing --- */
    --hb-space-xs: 0.5rem;
    --hb-space-sm: 1rem;
    --hb-space-md: 2rem;
    --hb-space-lg: 4rem;
    --hb-space-xl: 6rem;
    --hb-space-2xl: 10rem;

    /* --- Layout --- */
    --hb-container: 1320px;
    /* max site width */
    --hb-px: clamp(1.25rem, 4vw, 3.5rem);
    /* horizontal page padding */
    --hb-header-h: 72px;
    /* header height — used by sticky offset etc. */

    /* --- Borders / Radius --- */
    --hb-radius-sm: 6px;
    --hb-radius-md: 12px;
    --hb-radius-lg: 20px;
    --hb-radius-pill: 100px;
    --hb-border: 1px solid rgba(255, 255, 255, 0.12);
    --hb-border-dk: 1px solid rgba(13, 32, 28, 0.12);

    /* --- Transitions --- */
    --hb-ease: cubic-bezier(0.65, 0, 0.15, 1);
    --hb-ease-out: cubic-bezier(0.0, 0, 0.2, 1);
    --hb-dur-fast: 0.2s;
    --hb-dur-mid: 0.38s;
    --hb-dur-slow: 0.55s;

    /* --- Z-index ladder --- */
    --hb-z-base: 1;
    --hb-z-overlay: 100;
    --hb-z-header: 200;
    --hb-z-modal: 300;
    --hb-z-toast: 400;
}


/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

   html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--hb-font);
    font-size: var(--hb-fs-base);
    line-height: 1.65;
    color: var(--hb-text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: background-color 0.6s ease;
    background-color: var(--hb-dark);
    transition: background-color 0.9s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--hb-light);
}

body.light {
    background-color: var(--hb-light);
    color: var(--hb-dark);
}

.p30 p,
.p30 {
    font-family: var(--hb-font-deck);
    font-size: var(--hb-text-30);
}

img,
video,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

p {
    margin: 0 0 1em;
    font-size: var(--hb-text-18);
}

ul li {
    font-size: var(--hb-text-18);
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.1;
}

h2 {
    font-size: var(--hb-text-110);
    font-family: var(--hb-font-display);
    letter-spacing: 1.1px;
    line-height: 0.95;
    font-weight: 500;
    opacity: 1;

}

h3 {
    font-size: var(--hb-text-62);
    letter-spacing: 0px;
    font-family: var(--hb-font-display);
    font-weight: 600;
}

p {
    font-size: var(--hb-text-18);
    line-height: 1.7;
    font-family: var(--hb-font);
}
/* --------------------------------------------------------------------------
   3. Layout Utilities
   -------------------------------------------------------------------------- */

.site-main {
    z-index: 1;
    position: relative;
    background-color: var(--hb-dark);
    transition: background-color 0.9s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.single-post .site-main{
    background-color: var(--hb-light);
}
main#primary_single {
    z-index: 2;
    position: relative;
    background-color: var(--hb-light);
}
/* Centered max-width container */
.hb-container {
    width: 100%;
    max-width: var(--hb-container);
    margin-inline: auto;
    padding-inline: var(--hb-px);
}

/* Full-bleed but with side padding */
.hb-wrap {
    width: 100%;
    padding-inline: var(--hb-px);
}

/* Section vertical spacing */
.hb-section {
    padding-block: var(--hb-space-xl);
}

.hb-section--sm {
    padding-block: var(--hb-space-lg);
}

.hb-section--lg {
    padding-block: var(--hb-space-2xl);
}

/* Flex helpers */
.hb-flex {
    display: flex;
    align-items: center;
}

.hb-flex--center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hb-flex--between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hb-flex--col {
    display: flex;
    flex-direction: column;
}

/* Grid helpers */
.hb-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--hb-space-md);
}

.hb-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--hb-space-md);
}

.hb-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--hb-space-md);
}




/* --------------------------------------------------------------------------
   4. Typography Utilities
   -------------------------------------------------------------------------- */

.hb-eyebrow {
    display: inline-block;
    font-size: var(--hb-fs-xs);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.5;
}

.hb-heading-xl {
    font-size: var(--hb-fs-2xl);
    font-weight: 300;
    letter-spacing: -0.03em;
}

.hb-heading-lg {
    font-size: var(--hb-fs-xl);
    font-weight: 300;
    letter-spacing: -0.025em;
}

.hb-heading-md {
    font-size: var(--hb-fs-lg);
    font-weight: 300;
    letter-spacing: -0.02em;
}

.hb-heading-sm {
    font-size: var(--hb-fs-md);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hb-body-lg {
    font-size: var(--hb-fs-md);
    line-height: 1.6;
}

.hb-body {
    font-size: var(--hb-fs-base);
    line-height: 1.65;
}

.hb-body-sm {
    font-size: var(--hb-fs-sm);
    line-height: 1.6;
}

.hb-muted {
    opacity: 0.5;
}

.hb-text-center {
    text-align: center;
}

.hb-text-right {
    text-align: right;
}


/* --------------------------------------------------------------------------
   5. Colour Utilities
   -------------------------------------------------------------------------- */

/* Backgrounds */
.hb-bg-dark {
    background: var(--hb-dark);
    color: var(--hb-text-light);
}

.hb-bg-dark-2 {
    background: var(--hb-dark-2);
    color: var(--hb-text-light);
}

.hb-bg-light {
    background: var(--hb-light);
    color: var(--hb-text-dark);
}

.hb-bg-white {
    background: var(--hb-white);
    color: var(--hb-text-dark);
}

/* Divider */
.hb-divider {
    border: none;
    border-top: var(--hb-border-dk);
    margin: 0;
}

.hb-bg-dark .hb-divider,
.hb-bg-dark-2 .hb-divider {
    border-top-color: rgba(255, 255, 255, 0.1);
}


/* --------------------------------------------------------------------------
   6. Button Utilities
   -------------------------------------------------------------------------- */

.hb-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(10px, calc(0.36vw + 7.2px), 13px) clamp(35px, calc(1.44vw + 23px), 47px);
    border-radius: var(--hb-radius-pill);
    font-family: var(--hb-font);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background var(--hb-dur-fast) var(--hb-ease-out), border-color var(--hb-dur-fast) var(--hb-ease-out), color var(--hb-dur-fast) var(--hb-ease-out), transform var(--hb-dur-fast);
    cursor: pointer;
    white-space: nowrap;
}

.hb-btn:active {
    transform: scale(0.97);
}

/* Solid accent */
.hb-btn--accent {
    background: var(--hb-accent);
    color: var(--hb-text-dark);
    border-color: var(--hb-accent);
}

.hb-btn--accent:hover {
    background: var(--hb-accent-hover);
    border-color: var(--hb-accent-hover);
}

/* Outline on dark bg */
.hb-btn--outline-light {
    background: transparent;
    color: var(--hb-text-light);
    border-color: rgba(255, 255, 255, 1);
}

.hb-btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.65);
}

/* Outline on light bg */
.hb-btn--outline-dark {
    background: transparent;
    color: var(--hb-text-dark);
    border-color: rgba(13, 32, 28, 0.3);
}

.hb-btn--outline-dark:hover {
    background: rgba(13, 32, 28, 0.06);
    border-color: rgba(13, 32, 28, 0.6);
}

/* Ghost text link with arrow */
.hb-btn--ghost {
    padding: 0;
    border: none;
    background: none;
    font-size: var(--hb-fs-base);
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hb-btn--ghost:hover {
    opacity: 0.6;
}

.hb-glass-btn {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

/* --------------------------------------------------------------------------
   7. Card Utility
   -------------------------------------------------------------------------- */

.hb-card {
    background: var(--hb-white);
    border-radius: var(--hb-radius-md);
    border: var(--hb-border-dk);
    padding: var(--hb-space-md);
    overflow: hidden;
}

.hb-bg-dark .hb-card,
.hb-bg-dark-2 .hb-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}


/* --------------------------------------------------------------------------
   8. Tag / Badge Utility
   -------------------------------------------------------------------------- */

.hb-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: var(--hb-radius-pill);
    font-size: var(--hb-fs-xs);
    font-weight: 500;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.1);
    color: var(--hb-text-light);
}

.hb-bg-light .hb-tag,
.hb-bg-white .hb-tag {
    background: rgba(13, 32, 28, 0.08);
    color: var(--hb-text-dark);
}


/* --------------------------------------------------------------------------
   9. Accessibility
   -------------------------------------------------------------------------- */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--hb-accent);
    outline-offset: 3px;
}


/* --------------------------------------------------------------------------
   10. Scroll Animations
   -------------------------------------------------------------------------- */

/* ── Fade-up base state ──────────────────────────────────────────────── */
.hb-anim--fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) var(--hb-anim-delay, 0s),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) var(--hb-anim-delay, 0s);
}

.hb-anim--fade-up.hb-anim--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Text fill on scroll — jamesbeard.org style ──────────────────────── */
/* .hb-anim--text-fill {
    background:           linear-gradient(
        to right,
        var(--hb-text-dark) 0%,
        var(--hb-text-dark) var(--fill-pct, 0%),
        rgba(13, 32, 28, 0.2) var(--fill-pct, 0%),
        rgba(13, 32, 28, 0.2) 100%
    );
    -webkit-background-clip: text;
    background-clip:         text;
    -webkit-text-fill-color: transparent;
    color:                   transparent;
    --fill-pct:              0%;
    transition:              --fill-pct 0.1s linear;
} */

/* ── Character split animation — trueventures style ─────────────────── */
.hb-anim--char {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.4em);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) var(--d, 0s),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) var(--d, 0s);
}

.hb-anim--split-in .hb-anim--char {
    opacity: 1;
    transform: translateY(0);
}

/* ── Footer reveal — jamesbeard.org style ────────────────────────────── */
.hb-footer--reveal {
    position: relative;
    transform: translateY(60px);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.hb-footer--revealed {
    transform: translateY(0);
    opacity: 1;
}

/* ── Services sticky left — digitalimpulse.com style ────────────────── */
.hb-services__col--sticky {
    position: sticky;

    height: fit-content;
    align-self: flex-start;
}

/* ── Legacy keyframes (kept for any direct uses) ─────────────────────── */
@keyframes hb-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes hb-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hb-anim-fade-up {
    animation: hb-fade-up 0.6s var(--hb-ease) both;
}

.hb-anim-fade-in {
    animation: hb-fade-in 0.5s var(--hb-ease-out) both;
}

/* Reduced motion — disable all */
@media (prefers-reduced-motion: reduce) {

    .hb-anim--fade-up,
    .hb-anim--char,
    .hb-anim--text-fill,
    .hb-footer--reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        -webkit-text-fill-color: currentColor;
        background: none;
    }
}


/* ==========================================================================
   SECTION STYLES
   Add each section below under its own clearly labelled block.
   Keep section styles scoped to their BEM block (e.g. .hb-header, .hb-hero)
   ========================================================================== */


/* --------------------------------------------------------------------------
   Section: Header  (.hb-header)
   -------------------------------------------------------------------------- */
.header-light.hb-header {
    background-color: var(--hb-light);
}

.hb-header__logo-wrap {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header-light .hb-header__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--hb-dark);
}

.header-light .hb-header__hamburger span {
    background-color: var(--hb-dark);
}

.header-light .hb-header__toggle {
    color: var(--hb-dark);
}

.bts-section__media {
    clip-path: clip-path: inset(5% 28% round 12px);
}

.hb-header {
    position: sticky;
    top: 0;
    z-index: 99;
    width: 100%;
    background: var(--hb-dark);
    color: var(--hb-text-light);
}

.hb-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--hb-header-h);
    padding: var(--hb-px);
}

/* Logo */
.hb-header__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--hb-text-light);
    flex-shrink: 0;
    transition: opacity var(--hb-dur-fast);
}

.hb-header__logo:hover {
    opacity: 0.75;
}

.hb-header__logo-img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.hb-header__site-name {
    font-size: var(--hb-fs-base);
    font-weight: 400;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* Actions */
.hb-header__actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* CTA — reuses .hb-btn--outline-light */

/* Hamburger toggle — "Menu" text + three bars */
.hb-header__toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--hb-text-light);
    transition: opacity var(--hb-dur-fast);
}

.hb-header__toggle:hover {
    opacity: 0.7;
}

/* "Menu" / "Close" label next to icon */
.hb-header__toggle-label {
    font-family: var(--hb-font);
    font-size: var(--hb-text-16);
    font-weight: 400;
    line-height: 1;
    color: currentColor;
}

/* Three-bar icon wrapper */
.hb-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    flex-shrink: 0;
    border: none;
    background: none;
    padding: 0;
}

.hb-header__hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transform-origin: center;
    transition: transform var(--hb-dur-mid) var(--hb-ease),
        opacity var(--hb-dur-mid) var(--hb-ease),
        width var(--hb-dur-mid) var(--hb-ease);
}

/* X state for the close button hamburger */
.hb-header__hamburger.is-x span:nth-child(1) {
    transform: translateY(7.25px) rotate(45deg);
}

.hb-header__hamburger.is-x span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hb-header__hamburger.is-x span:nth-child(3) {
    transform: translateY(-7.25px) rotate(-45deg);
}

/* Nav overlay */
.hb-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: calc(var(--hb-z-header) + 1);
    background: var(--hb-dark);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--hb-dur-slow) var(--hb-ease),
        visibility 0s linear var(--hb-dur-slow);
}

.hb-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity var(--hb-dur-slow) var(--hb-ease);
}

/* Top bar inside overlay: logo left, close right — mirrors the site header */
.hb-nav-overlay__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    height: var(--hb-header-h);
    padding-inline: var(--hb-px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Close button inside overlay bar */
.hb-nav-overlay__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--hb-font);
    font-size: 16px;
    color: #fff;
    background: transparent;
    padding: 0.55rem 1.4rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    border-radius: 28px;
    opacity: 1;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 2;
}

.hb-nav-overlay__close:hover {
    opacity: 1;
}
.hb-nav-sublist {
    position: absolute;
    left: 50%;
    top: 5.5rem;
    right: 30px;
}
/* Nav content area — left-aligned, starts from top */
.hb-nav-overlay__nav {
    flex: 1;
    display: flex;
    align-items: flex-start;
    /* top-align the list */
    padding-inline: var(--hb-px);
    padding-top: clamp(2rem, 4vw, 3.5rem);
    padding-bottom: var(--hb-space-md);
    overflow-y: auto;
    width: 100%;
}

/* Nav list — left-aligned, constrained width */
.hb-nav-overlay__list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 860px;
}

.hb-nav-overlay__item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--hb-dur-slow) var(--hb-ease),
        transform var(--hb-dur-slow) var(--hb-ease);
    transition-delay: calc(var(--i, 0) * 0.06s);
}

.hb-nav-overlay.is-open .hb-nav-overlay__item {
    opacity: 1;
    transform: translateY(0);
}

.hb-nav-overlay__link {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    padding: 0.85rem 0;
    text-decoration: none;
    color: var(--hb-text-light);
    transition: opacity var(--hb-dur-fast);
}

.hb-nav-overlay__link:hover {
    opacity: 0.6;
}

/* Page name — medium weight, left aligned */
.hb-nav-overlay__link-label {
    font-family: var(--hb-font);
    font-size: clamp(1.125rem, 1.6vw, 1.625rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.2;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 160px;
}

.hb-nav-overlay__link-desc {
    font-family: var(--hb-font);
    font-size: clamp(1.125rem, 1.6vw, 1.625rem);
    font-weight: 400;
    color: var(--dark-green);
    line-height: 1.5;
}

li.hb-nav-sublist__item {
    position: relative;
}
li.hb-nav-sublist__item:before {
    position: absolute;
    content: "";
    background-color: #2D4E45;
    width: 29px;
    height: 1px;
    bottom: 0;
}
.hb-nav-panel {
    height: 100vh;
}

.hb-nav-panel__media {
    position: absolute;
    inset: 0;
    height: 100vh;
    overflow: hidden;
}

.hb-nav-panel__video,
.hb-nav-panel__oembed,
.hb-nav-panel__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Body locked when menu open */
body.hb-nav-open {
    overflow: hidden;
}




/* --------------------------------------------------------------------------
   Section: Hero  (.hb-hero)
   -------------------------------------------------------------------------- */

.hb-hero {
    overflow: hidden;
    padding:
        clamp(80px, calc(80px + 80 * ((100vw - 768px) / 832)), 160px) clamp(20px, calc(20px + 40 * ((100vw - 768px) / 832)), 60px) clamp(120px, calc(120px + 280 * ((100vw - 768px) / 832)), 400px) clamp(20px, calc(20px + 40 * ((100vw - 768px) / 832)), 60px);
    z-index: 1;
    position: relative;
}

/* Stage: relative container. HOW is centred. Words are absolute on sides. */
.hb-hero__stage {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

/* HOW block — centred in the stage */
.hb-hero .hb-hero__how {
    position: relative;
    flex-shrink: 0;
    width: 70%;
    margin: 0 auto;
    /* Kettmeir-style: starts clipped small, reveals on scroll via JS */
    /*clip-path: inset(0 50% 0 50%);
    transition: clip-path 1.2s cubic-bezier(0.76, 0, 0.24, 1);*/
}

/* Revealed state — added by JS when scrolled into view */
/*.hb-hero__how.is-revealed {
    clip-path: inset(0 0% 0 0%);
} */

/* "Howbridge is" — above the HOW block, aligned to its left edge */
.hb-hero .hb-hero__eyebrow {
    font-family: var(--hb-font);
    font-size: var(--hb-text-26);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.29);
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.01em;
    line-height: 1;
}

/*
 * mask-mode: luminance
 * White pixels (letters) = fully visible → video shows through
 * Black pixels (background) = hidden → dark page bg shows
 * --hb-mask-url is set inline by PHP for dynamic image support
 */
.hb-hero .hb-hero__how-inner {
    position: relative;
    width: 100%;
    line-height: 0;

    -webkit-mask-image: var(--hb-mask-url, none);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-mode: luminance;

    mask-image: var(--hb-mask-url, none);
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-mode: luminance;
}

/* Invisible spacer — holds the block height to match the mask image ratio */
.hb-hero .hb-hero__how-spacer {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Vimeo fills the whole inner block — clipped to letters by the mask above */
.hb-hero .hb-hero__video-wrap {
    position: absolute;
    inset: 1px;
    z-index: 0;
    overflow: hidden;
}

.hb-hero .hb-hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78%;
    height: 177.78%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

/* Word columns — absolutely positioned on the stage, vertically centred */
.hb-hero .hb-hero__col {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.hb-hero .hb-hero__col--left {
    left: var(--hb-px);
}

.hb-hero .hb-hero__col--right {
    right: var(--hb-px);
}

/* Individual words — stacked, only .is-active visible */
.hb-hero .hb-hero__word {
    display: block;
    position: absolute;
    top: 0;
    white-space: nowrap;
    font-family: var(--hb-font-serif-cn);
    font-size: var(--hb-text-79);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.79px;
    color: var(--hb-text-light);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.55s cubic-bezier(0.65, 0, 0.15, 1), transform 0.55s cubic-bezier(0.65, 0, 0.15, 1);
}

.hb-hero .hb-hero__col--left .hb-hero__word {
    left: 0;
}

.hb-hero .hb-hero__col--right .hb-hero__word {
    right: 0;
}

.hb-hero .hb-hero__word.is-active {
    opacity: 1;
    transform: translateY(0);
}

.hb-hero .hb-hero__word.is-leaving {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.38s cubic-bezier(0.65, 0, 0.15, 1),
        transform 0.38s cubic-bezier(0.65, 0, 0.15, 1);
}

.col-right .hb-about__heading {
    padding-top: 0;
    margin-top: 130px;
}


/* --------------------------------------------------------------------------
   Section: About  (.hb-about)
   -------------------------------------------------------------------------- */
/* ============================================================
   ABOUT / OW SECTION — DESKTOP
   ============================================================ */
.hb-about {
    position: relative;
    width: 100%;
    min-height: 865px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vid_container {
    max-width: 2030px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.video-wrap--desktop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-wrap--desktop iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

.mask-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 1px);
    z-index: 1;
    pointer-events: none;
}

.mask-overlay svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hb-about g#o-letter {
    transform: translate(60px, 0) scale(1.3);
}

.hb-about g#w-letter {
    transform: translate(1340px, 0) scale(1.3);
}

/* Desktop grid */
.hero-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    grid-template-rows: 1fr;
    padding: 80px 30px;
    gap: 0 48px;
    max-width: 1730px;
    margin: 0 auto;
    min-height: 750px;
}

.col-left {
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.col-center {
    align-self: center;
}

.col-center p:last-child {
    margin-bottom: 0;
}

.col-right {
    text-align: right;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* CTAs */
.hb-about__ctas {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    transition: all 0.4s ease 0s;
}

.hb_cta_primary {
    padding: 19px 60px;
    border: 1px solid #fff;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    font-size: var(--hb-text-16);
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
    transition: all 0.4s ease 0s;
}

.light .hb_cta_primary {
    border: 1px solid var(--hb-text-dark);
    color: var(--hb-text-dark);
    transition: all 0.4s ease 0s;
}

.hb_cta_primary:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
}

.light .hb-about__cta-secondary {
    color: var(--hb-text-dark);
    
}


.hb-about__cta-secondary:hover {
    opacity: 0.7;
    transition: all 0.4s ease 0s;

}

/* Mobile OW block: hidden on desktop */
.mob-ow-block {
    display: none;
}

.hb-about .col-center p {
    line-height: 1.6;
    color: #fff;
    margin-bottom: 26px;
    font-weight: 300;
}

.light .hb-about .col-center p {
    color: var(--hb-text-dark);
}

.hb-about {
    color: var(--hb-text-light);
    overflow: hidden;
    position: relative;
    padding-bottom: clamp(150px, calc(150px + 150 * ((100vw - 768px) / 832)), 300px);

}

/* ── Background video — fills entire section ─────────────────────── */
.hb-about__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--hb-dark);
    width: max(100%, 177.78vh);
    height: max(100%, 56.25vw);
}

.hb-about__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

/* ── OW decorative SVG overlay — sits between video and content ──── */
.hb-about__ow-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;

}

.hb-about__ow-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── 3-col content grid — on top of everything ──────────────────── */
.hb-about__inner {
    position: relative;
    z-index: 2;
    min-height: 80vh;
    display: flex;
}

.hb-about__col {
    position: relative;

}

/* Col 1 — heading bottom-left, blob image top */
.hb-about__col--left {
    flex: 0 0 25%;
    text-align: center;
    justify-content: center;
}

.hb-about__col--center {
    flex: 0 0 45%;
    flex-direction: column;
    max-width: 615px;
    margin: 0 auto;

}

.hb-about__col--right {
    flex: 0 0 30%;
    align-content: center;
}

.hb-about__col--right .hb-about__heading {
    padding: 95px 25px 0 0;
}

.hb-about__blob {
    position: absolute;
    top: clamp(1rem, 3vw, 2.5rem);
    left: clamp(1rem, 3vw, 2.5rem);
    width: clamp(180px, 22vw, 340px);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.9;
    z-index: 1;
}

.hb-about__blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hb-about__heading {
    position: relative;
    z-index: 2;
    font-family: var(--hb-font-display);
    font-size: var(--hb-text-110);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -1.1px;
    text-transform: uppercase;
    color: var(--hb-text-light);
    padding-top: 30px;
}

.hb-about__body {
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 4.04rem;
    font-family: var(--hb-font-deck);
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.875rem);
    font-weight: 300;
}

.hb-about__body p {
    margin: 0 0 1.25em;
}

.hb-about__body p:last-child {
    margin-bottom: 0;
}

.hb-about__ctas {
    display: flex;
    align-items: center;
    gap: 4.0625rem;
    flex-wrap: wrap;
}

.hb-about__cta-secondary {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    font-size: var(--hb-text-16);
    font-family: var(--hb-font);
}

.hb-about__cta-secondary:hover {
    color: #fff;
}

.hb-about__overlay-text {
    text-align: right;
    max-width: 75%;
    margin-left: auto;
}




/* --------------------------------------------------------------------------
   Section: Services  (.hb-services)
   "What's Slowing Your Growth?" — 3-col layout
   Left heading top-left, body centre, right heading bottom-right
   -------------------------------------------------------------------------- */

.hb-services {
    /* background: var(--hb-light); */
    color: var(--hb-text-dark);
}
.page-id-18 .hb-services {
 background: var(--hb-light); 

}

.hb-services--dark {
    background: var(--hb-dark);
    color: var(--hb-text-light);
}

.hb-services__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    /*min-height:            clamp(400px, 50vw, 640px);*/
}

.hb-services__col {
    display: flex;
    position: relative;
}

/* Left — heading anchored top-left */
.hb-services__col--left {
    align-items: flex-start;
    margin-top: -35px;
    z-index: 2;
}

/* Centre — body vertically centred */
.hb-services__col--center {
    flex-direction: column;
    justify-content: center;
    padding: 12rem clamp(0rem, 0vw, 0rem);
}

/* Right — heading anchored bottom-right */
.hb-services__col--right {
    align-items: flex-start;
    justify-content: flex-end;
    padding: clamp(2rem, 8vw, 8rem) 20px clamp(2rem, 4vw, 4rem) clamp(1.5rem, 2.5vw, 3rem);
}

/* Display headings */
.hb-services__heading {
    font-family: var(--hb-font-display);
    font-size: var(--hb-text-110);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--hb-light);
    margin: 0;
   

}

.light .hb-services__heading {
    color: var(--dark-green);
}

.hb-services--dark .hb-services__heading {
    color: var(--hb-text-light);
}

.hb-services__heading--right {
    text-align: right;
}

/* Body text */
.hb-services__body {
    font-family: var(--hb-font-serif);
    font-weight: 300;
    line-height: 1.5;
    color: var(--hb-light);
    max-width: 690px;
}

.light .hb-services__body {
    color: var(--hb-text-dark);
}

.hb-services--dark .hb-services__body {
    color: rgba(255, 255, 255, 0.85);
}

.hb-services__body p {
    margin: 0 0 1.25em;
}

.hb-services__body p:last-child {
    margin-bottom: 0;
}




/* --------------------------------------------------------------------------
   Section: Work — Filterable Cards  (.hb-work)
   -------------------------------------------------------------------------- */

.wn-section {
   /* background: var(--hb-light, #f5f3ee); */
    color: var(--hb-text-dark, #0d201c);
    overflow: hidden;
    padding: clamp(20px, calc(20px + 20 * ((100vw - 768px) / 832)), 40px) 0 clamp(150px, calc(150px + 150 * ((100vw - 768px) / 832)), 300px);
}

/* ── Filters ── */
.wn-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 0 var(--hb-px, clamp(1.25rem, 4vw, 3.5rem)) clamp(3rem, 5vw, 5rem);
}

.wn-filter {
    background: none;
    border: none;
    padding: 0.5rem 0;
    margin-right: 2.7rem;
    font-family: var(--hb-font, sans-serif);
    font-size: var(--hb-text-18);
    font-weight: 400;
    color: var(--hb-text-dark);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.wn-filter::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0C211F;
    transition: width 0.25s ease;
}

.wn-filter:hover {
    opacity: 0.7;
}

.wn-filter.is-active {
    opacity: 1;
}

.wn-filter.is-active::after {
    width: 100%;
}

/* ── Slider ── */
.wn-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.wn-track {
    display: flex;
    gap: 22px;
    will-change: transform;
    padding: 20px 0;
}

/* ── Card ── */
.wn-card {
    flex: 0 0 clamp(280px, 24vw, 420px);
    height: clamp(350px, 34vw, 520px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    border: 1px solid rgba(45, 78, 69, 0.3);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s ease 0s;
    user-select: none;
}

.wn-card:hover {
   transform: scale(1.03);
   transition: all 0.4s ease 0s;
}
.wn-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* IMPORTANT */
    border-radius: 15px;
    transition:
        opacity 0.5s cubic-bezier(0.65, 0, 0.15, 1),
        transform 0.5s cubic-bezier(0.65, 0, 0.15, 1);
}

.wn-card:hover img{
    border-color: transparent;
    transform: scale(1.05);
    transition: height 0.3s ease, border-color 0.3s;
}

.wn-card[data-hidden="true"] {
    display: none;
}

/* Card image */
.wn-card__img {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.65, 0, 0.15, 1);
}

.wn-card:hover .wn-card__img {
    opacity: 1;
}

.wn-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}


.wn-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0) 55%);
}

/* Card text */
.wn-card__body {
    position: relative;
    z-index: 1;
    padding: clamp(1rem, 2vw, 2rem);
    margin-top: auto;
}

.wn-card__text {
    font-family: var(--hb-font-display, sans-serif);
    font-size: var(--hb-text-62);
    font-weight: 700;
    line-height: 0.92;
    text-transform: uppercase;
    color: var(--dark-green);
    opacity: 0.41;
    margin: 0;
    transition: color 0.4s, opacity 0.4s;
}

.wn-card:hover .wn-card__text {
    color: #fff;
    opacity: 1;
}

/* ═══════════════════════════════════════════
   POPUP — matches XD spec
═══════════════════════════════════════════ */
.wn-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.wn-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.wn-popup__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.wn-popup__box {
    position: relative;
    width: 90vw;
    max-width: 1414px;
    max-height: 90vh;
    background: #f5f3ee;
    border-radius: 16px;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 95vh;
    display: flex;
    top: 35px;
}

.wn-popup.is-open .wn-popup__box {
    transform: translateY(0) scale(1);
}

/* Close button */
.wn-popup__x {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #1a1a1a;
    transition: background 0.2s, transform 0.2s;
}

.wn-popup__x:hover {
    background: #fff;
    transform: scale(1.1);
}

/* Grid layout */
.wn-popup__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

/* ── Left: image panel ── */
.wn-popup__left {
    position: relative;
    overflow: hidden;
    height: 100%;
    flex: 0 0 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.wn-popup__left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.wn-popup__left-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
    border-bottom-right-radius: 15px;
    height: 50%;
}

.wn-popup__left-overlay h2 {
    font-family: var(--hb-font-display, sans-serif);
    font-size: var(--hb-text-110);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 1.1px;
    margin: 0;
}

/* ── Right: content panel ── */
.wn-popup__right {
    padding: 75px 100px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #fff;
    flex: 0 0 50%;
    height: 100%;
}

/* Popup title — dark green, bold uppercase */
.wn-popup__title {
    font-family: var(--hb-font-display);
    font-size: var(--hb-text-62);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--dark-green);
    margin: 0;
    letter-spacing: 0;
}

/* Description */
.wn-popup__desc {
    font-size: var(--hb-text-16);
    line-height: 1.6;
    color: var(--hb-text-dark);
}

.wn-popup__desc p:first-child {
    margin-top: 0;
}

.wn-popup__desc p:last-child {
    margin-bottom: 0;
}

/* Key Impact card */
.wn-popup__impact {
    background: #F8F6F0;
    border-radius: 20px;
    padding: 22px 45px;
    max-width: 455px;
}

.wn-popup__impact-label {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #2D4E45;
    margin: 0 0 22px;
    display: inline-block;
    /* padding-bottom: 6px; */
    /* border-bottom: 3px solid #2d5a2d; */
    font-family: var(--hb-font-display);
    position: relative;
}

.wn-popup__impact-label::before {
    position: absolute;
    content: "";
    background-image: url('/wp-content/uploads/2026/03/key_impact.svg');
    bottom: 0;
    width: calc(100% + 20px);
    height: 100%;
    background-repeat: no-repeat;
    left: -10px;
    top: calc(100% + 4px);
}

.wn-popup__impact-desc {
    font-size: var(--hb-text-16);
    margin: 12px 0 0;
    line-height: 1.55;
}

.wn-popup__stat {
    margin-top: 16px;
}

.wn-popup__num {
    display: block;
    font-family: var(--hb-font-serif-cn);
    font-size: var(--hb-text-120);
    font-weight: 300;
    color: #071C22;
    line-height: 1;
}

.wn-popup__stxt {
    display: block;
    font-size: var(--hb-text-28);
    font-weight: 300;
    color: #0C272F;
    margin-top: 4px;
    font-family: var(--hb-font-deck);
}

/* CTAs */
.wn-popup__ctas {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 10px;
    padding-top: 8px;
}

.wn-popup__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--hb-text-16);
    font-weight: 400;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
}

.wn-popup__btn--pri {
    padding: 13px 30px;
    background: transparent;
    color: #0C211F;
    border: 1.5px solid #0C211F;
    border-radius: 50px;
}

.wn-popup__btn--pri:hover {
    background: #0C211F;
    color: #f5f3ee;
}

.wn-popup__btn--sec {
    padding: 13px 4px;
    background: transparent;
    color: #0C211F;
    border: none;

    border-radius: 0;
}

.wn-popup__btn--sec:hover {
    opacity: 0.65;
}


/* --------------------------------------------------------------------------
   Section: Client Sucess  (.client_success)
   -------------------------------------------------------------------------- */

.client_success .hb-services__col {
    /* padding-top: 0; */
    /* padding-bottom: 0; */
    flex: 0 0 25%;
}

.client_success .hb-services__col.hb-services__col--center {
    flex: 0 0 50%;
    padding-top: 0;
}

.client_success {
    padding-top: clamp(8rem, 12.24vw, 14.6875rem);
    padding-bottom: clamp(3.5rem, 12.24vw, 7rem);
}

.client_success .hb-services__body,
.client_success .hb-services__body p {
    font-family: var(--hb-font);
    font-size: var(--hb-text-18);
    font-weight: 400;
    line-height: 1.8;
    max-width: 610px;
    margin-left: auto;
    margin-right: auto;
}

.client_success .hb-services__col {
    display: flex;
    position: relative;
}

.client_success .hb-services__col--right {
    padding: clamp(2rem, 4vw, 4rem) 20px clamp(2rem, 4vw, 4rem) clamp(1.5rem, 2.5vw, 3rem);
}



/* --------------------------------------------------------------------------
   Section: Testimonials — Video Slider  (.hb-test)
   -------------------------------------------------------------------------- */

.hb-test {
    /*background: var(--hb-light);*/
    color: var(--hb-text-dark);
    overflow: hidden;
    position: relative;
    padding: clamp(20px, calc(20px + 10 * ((100vw - 768px) / 832)), 30px) 0 clamp(180px, calc(180px - 50 * ((100vw - 768px) / 832)), 130px) 0;
}

/* Clips horizontal overflow only — NOT vertical */
.hb-test__track-wrap {

    width: 100%;
    overflow: hidden;
}

.hb-test--dark {
    background: var(--hb-dark);
    color: var(--hb-text-light);
}

/* ── Track ───────────────────────────────────────────────────────────── */
.hb-test__track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    overflow: visible;
    cursor: grab;
    user-select: none;
    will-change: transform;
    gap: 15px;
    padding: 0;
}

.hb-test__track:active {
    cursor: grabbing;
}
.hb-test__track {
  display: flex;
 flex-wrap: nowrap;
}
.hb-test__track {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    perspective: 1000px;
}

.hb-test__card,
.hb-test__media,
.hb-test__media iframe,
.hb-test__media img {
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    pointer-events: none;
}

.hb-test__media
{
    pointer-events: all;
}
/*
.hb-test__track:hover {
  animation-play-state: paused;
}
    
@keyframes hb-marquee {
  from {
    transform: translateX(0);
  }
  to {
     transform: translateX(calc(-50% - 12.5px));
  }
}*/
/* ── Card ────────────────────────────────────────────────────────────── */
.hb-test__card {
    position: relative;
    flex: 0 0 40%;
    overflow: visible;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;

}

.hb-test__card:hover,
.hb-test__card.is-hovered {
    /* no size change — panel expands below in flow */
}

/* ── Media area ──────────────────────────────────────────────────────── */
.hb-test__media {
    position: relative;
    flex-shrink: 0;
    height: clamp(300px, 33vw, 580px);
    overflow: hidden;
    border-radius: 10px;
}

.hb-test__media.image_slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hb-test__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.15, 1);
}

/*.hb-test__card:hover .hb-test__thumb,
.hb-test__card.is-hovered .hb-test__thumb {
    transform: scale(1.04);
}
 */
/* Category tag — top left, matches design ~40px bold */
.hb-test__category {
    position: absolute;
    top: 2vw;
    left: 2vw;
    font-family: var(--hb-font-display);
    font-size: var(--hb-text-58);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #ffffff;
    max-width: 300px;
}

/* Play button */
.hb-test__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s, opacity 0.2s;
    z-index: 2;
}

.hb-test__play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* ── Quote panel — below video, expands downward on hover ─────────── */
.hb-test__panel {
    flex-shrink: 0;
    background: #2D4E45;
    padding: 27px 45px 0;
    max-height: 30px;
    overflow: hidden;
    transition: max-height 0.55s cubic-bezier(0.65, 0, 0.15, 1), padding 0.55s cubic-bezier(0.65, 0, 0.15, 1);
    border-radius: 10px;
    margin-top: -13px;
}

.hb-test__card:hover .hb-test__panel,
.hb-test__card.is-hovered .hb-test__panel {
    max-height: 100%;
    padding: 55px 45px;
}

.hb-test__quote {
    font-family: var(--hb-font-deck);
    font-size: var(--hb-text-36);
    font-weight: 300;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 1rem;
    font-style: normal;
}

.hb-test__author {
    font-family: var(--hb-font);
    font-size: var(--hb-text-16);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0;
    margin: 0;
    line-height: 1.6;
    max-width: 230px;
}

/* ── Lightbox ────────────────────────────────────────────────────────── */
.hb-test__lightbox {
    position: fixed;
    inset: 0;
    z-index: var(--hb-z-modal);
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0s linear 0.35s;
}

.hb-test__lightbox.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s;
}

.hb-test__lightbox-inner {
    position: relative;
    width: min(90vw, 960px);
    aspect-ratio: 16 / 9;
}

.hb-test__lightbox-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.hb-test__lightbox-close:hover {
    opacity: 1;
}

.hb-test__lightbox-video {
    width: 100%;
    height: 100%;
}

.hb-test__lightbox-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}


/* --------------------------------------------------------------------------
   Section: Blog Feed  (.hb-blog)
   -------------------------------------------------------------------------- */
.hb-blog__filters {
    display: flex !important;
    gap: 32px;
    margin-bottom: 24px;
}
.hb-blog__filter {
    background: none;
    border: none;
    padding: 0 0 8px;
    border-bottom: 2px solid;
    cursor: pointer;
    font-weight: 700;
    font-size: var(--hb-text-36);
    font-family: var(--hb-font-display);
    letter-spacing: 0;
    width: 32%;
    text-align: left;
    color: var(--hb-text-dark);
}
.hb-blog__filter.is-active {
    border-bottom: 2px solid var(--hb-text-dark);
}

.hb-blog__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.hb-blog__grid.is-loading { opacity: .5; pointer-events: none; transition: opacity .2s ease; }
.hb-blog__loadmore-wrap { text-align: center; margin-top: 24px; }
.hb-blog {
   /* background: var(--hb-light); */
    padding: clamp(4rem, 8vw, 9rem) var(--hb-px);
}

/* Green box wraps heading + cards */
.hb-blog__box {
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 4rem);
}

.hb-blog__empty {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hb-blog__placeholder-text {
    font-family: var(--hb-font-display);
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

.hb-blog__header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hb-blog__heading {
    font-family: var(--hb-font-display);
    font-size: var(--hb-text-110);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    line-height: 0.95;
    margin: 0;
    color: var(--dark-green);
    text-align: center;
    width: 100%;
}

.hb-blog__view-all {
    font-family: var(--hb-font);
    font-size: var(--hb-fs-sm);
    color: var(--dark-green);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    white-space: nowrap;
    border: 1px solid var(--dark-green);
}

.hb-blog__view-all:hover {
    color: #fff;
    background-color: var(--dark-green);
}
.btn-wrap {
    text-align: center;
}
.hb-blog__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hb-blog__card {
    flex: 0 0 calc(50% - 1rem);
    min-width: 240px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.25s, border-color 0.25s;
    position: relative;
}
/*
:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}
*/
.hb-blog__card-img {
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    height: clamp(300px, calc(300px + 280 * ((100vw - 768px) / 832)), 580px);
}

.hb-blog__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.15, 1);
}

.hb-blog__card:hover .hb-blog__card-img img {
    transform: scale(1.04);
}

.hb-blog__card-img-fallback {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
}

.hb-blog__card-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem 1.5rem;
    height: 100%;
    position: absolute;
}

.hb-blog__card-cat {
    font-size: var(--hb-text-18);
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    flex: 1;
    position: relative;
    padding-left: 20px;
}
.hb-blog__card-cat:before {
    position: absolute;
    content: "";
    background-color: #fff;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: 0;
    top: 9px;
}
.hb-blog__card-img:before {
    position: absolute;
    content: "";
    background-color: rgba(0,0,0,0.5);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}
.hb-blog__card-title {
    font-family: var(--hb-font-deck);
    font-size: var(--hb-text-40);
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0;
    max-width: 450px;
}
.hb-blog__card-author {
    font-size: var( --hb-text-18);
}
.hb-blog__header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.hb-blog__col{
    display:flex;
    position:relative;
}

.hb-blog__col--left{
    align-items:flex-start;
    margin-top:-35px;
    z-index:2;
}

.hb-blog__col--right{
    align-items:flex-end;
    justify-content:flex-end;
}

.hb-blog__heading{
    margin:0;
}

.hb-blog__heading--right{
    text-align:right;
}
/*.hb-blog__card-excerpt {
    font-size: var(--hb-fs-sm);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.hb-blog__card-date {
    font-size: var(--hb-fs-xs);
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.5rem;
}

/

/* --------------------------------------------------------------------------
   Section: CTA Banner  (.hb-cta)
   -------------------------------------------------------------------------- */

.hb-cta {
    background: var(--hb-light);
    color: var(--hb-text-light);
    overflow: hidden;
    padding: clamp(4rem, 8vw, 5rem) var(--hb-px);
}

.hb-cta__inner {
    display: flex;
    align-items: center;
    width: 100%;
    padding: clamp(3rem, 6vw, 6.5rem) 0;
    background: var(--hb-cta-bg, #2D4E45);
}

.hb-cta__side {
    flex: 1 1 0;
    overflow: hidden;
    display: flex;
}

.hb-cta__side--right {
    justify-content: flex-end;
}

.hb-cta__bleed-text {
    font-family: var(--hb-font-display);
    font-size: var(--hb-text-110);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--hb-text-light);
    white-space: nowrap;
    display: block;
}

.hb-cta__side--left .hb-cta__bleed-text {
    transform: translateX(-60%);
}

.hb-cta__side--right .hb-cta__bleed-text {
    transform: translateX(60%);
}

.hb-cta__centre {
    flex: 0 0 clamp(280px, 50%, 650px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 clamp(1.5rem, 3vw, 3rem);
    gap: 3rem;
    justify-content: center;
}

.hb-cta__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.hb-cta__body {
    color: #fff;
    margin: 0;
    max-width: 550px;
    text-align: center;
}

.hb-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
    background: #0d201c;
    color: #ffffff;
    font-family: var(--hb-font-display);
    font-size: var(--hb-text-36);
    font-weight: 700;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.2s, transform 0.15s;
    text-align: center;
}

.hb-cta__btn:hover {
    background: #1a3530;
}

.hb-cta__btn:active {
    transform: scale(0.98);
}


/* --------------------------------------------------------------------------
   Section: Footer  (.hb-footer)
   -------------------------------------------------------------------------- */

.hb-footer {
    background: var(--hb-dark);
    color: var(--hb-text-light);
    padding: clamp(3rem, 6vw, 5rem) var(--hb-px) 0;
    position: sticky;
    bottom: 0;
}

/* ── Main row: left (heading + logo) + right (form) ─────────────────── */
.hb-footer__main {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(3rem, 6vw, 6rem);
    padding-bottom: clamp(3rem, 5vw, 4rem);
}

/* Left column */
.hb-footer__left {
    flex: 1 1 clamp(260px, 35%, 480px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
}

/* Large display heading */
.hb-footer__heading {
    font-family: var(--hb-font-display);
    font-weight: 500;
    line-height: 0.88;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--dark-green);
    font-size: var(--hb-text-140);
}

/* Logo */
.hb-footer__logo-wrap {
    margin-top: auto;
}

.hb-footer__logo-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--hb-text-light);
    font-family: var(--hb-font);
    font-size: 1rem;
}

.hb-footer__logo-link img {
    height: 36px;
    width: auto;
}

/* Right column — form */
.hb-footer__right {
    flex: 1 1 clamp(280px, 50%, 640px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 775px;
}

.hb-footer__form-tagline {
    font-family: var(--hb-font);
    color: #fff;
    margin: 0;
}

/* ── Form ────────────────────────────────────────────────────────────── */
.hb-footer__form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hb-footer__form-row {
    display: flex;
    gap: 0.75rem;
}

.hb-footer__form-row .hb-footer__input {
    flex: 1 1 0;
}

.hb-footer__input {
    width: 100%;
    background: transparent;
    border: 1px solid var(--dark-green);
    border-radius: 0px;
    padding: 0.875rem 1rem;
    font-family: var(--hb-font);
    font-size: 13px;
    color: #E6ECD7;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.hb-footer__input::placeholder {
    color: #E6ECD7;
}

.hb-footer__input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.hb-footer__input--full {
    width: 100%;
}

.hb-footer__textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 260px;
}

.hb-footer__submit {
    align-self: flex-start;
    padding: 1.13rem 1.4rem;
    background: var(--dark-green);
    border: 0;
    border-radius: 0;
    font-family: var(--hb-font);
    font-size: var(--hb-fs-sm);
    color: #E6ECD7;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    letter-spacing: 0.02em;
    font-size: 13px;
}

.hb-footer__submit:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
}

/* ── Bottom bar ──────────────────────────────────────────────────────── */
.hb-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.25rem 0 3rem;
}

.hb-footer__bottom-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 1.5rem;
}

.hb-footer__copyright {
    font-size: 13px;
    color: #2D4E45;
}

.hb-footer__bottom-link {
    font-size: 13px;
    color: #2D4E45;
    text-decoration: none;
    transition: color 0.4s;

}

.line {
    padding: 0 15px;
}

.hb-footer__bottom-link:hover {
    color: #fff;
    transition: color 0.4s;
}

.hb-footer__bottom-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Social icons */
.hb-footer__social {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.hb-footer__social-link {
    display: flex;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.hb-footer__social-link:hover {
    color: #fff;
}

/* --------------------------------------------------------------------------
   Section: Marquee — Auto-scroll Strip  (.hb-marquee)
   -------------------------------------------------------------------------- */

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

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

.hb-marquee {
    overflow: hidden;
    padding: clamp(1.5rem, 2.5vw, 2.5rem) 0;
    position: relative;
}

.hb-marquee--light {
    background: var(--hb-light);
    border-top: 1px solid rgba(13, 32, 28, 0.08);
    border-bottom: 1px solid rgba(13, 32, 28, 0.08);
}

.hb-marquee--dark {
    background: var(--hb-dark);
}

.hb-marquee--accent {
    background: var(--hb-accent);
}

.hb-marquee::before,
.hb-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(60px, 8vw, 140px);
    z-index: 2;
    pointer-events: none;
}

.hb-marquee--light::before,
.hb-marquee--light::after {
    background: linear-gradient(to right, var(--hb-light), transparent);
}

.hb-marquee--dark::before,
.hb-marquee--dark::after {
    background: linear-gradient(to right, var(--hb-dark), transparent);
}

.hb-marquee--accent::before,
.hb-marquee--accent::after {
    background: linear-gradient(to right, var(--hb-accent), transparent);
}

.hb-marquee::before {
    left: 0;
}

.hb-marquee::after {
    right: 0;
    transform: scaleX(-1);
}

.hb-marquee__track {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    width: max-content;
    animation: hb-marquee-scroll var(--marquee-speed, 30s) linear infinite;
    will-change: transform;
}

.hb-marquee:hover .hb-marquee__track {
    animation-play-state: paused;
}

.hb-marquee__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.hb-marquee__img {
    height: clamp(40px, 5vw, 80px);
    width: auto;
    max-width: clamp(100px, 15vw, 220px);
    object-fit: contain;
    display: block;
    opacity: 0.7;
    filter: grayscale(0.3);
    transition: opacity 0.2s, filter 0.2s;
}

.hb-marquee__item:hover .hb-marquee__img {
    opacity: 1;
    filter: grayscale(0);
}

.hb-marquee--dark .hb-marquee__img {
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.hb-marquee--dark .hb-marquee__item:hover .hb-marquee__img {
    opacity: 1;
}

.hb-marquee__label {
    font-family: var(--hb-font-display);
    font-size: clamp(1.25rem, 2.5vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    white-space: nowrap;
    color: var(--hb-text-dark);
    opacity: 0.25;
    transition: opacity 0.2s;
}

.hb-marquee--dark .hb-marquee__label {
    color: var(--hb-text-light);
}

.hb-marquee--accent .hb-marquee__label {
    color: var(--hb-dark);
}

.hb-marquee__item:hover .hb-marquee__label {
    opacity: 0.7;
}

.hb-marquee__item:not(:last-child)::after {
    content: '·';
    margin-left: clamp(2rem, 5vw, 5rem);
    opacity: 0.25;
    font-size: 1.5rem;
    color: currentColor;
}

@media (prefers-reduced-motion: reduce) {
    .hb-marquee__track {
        animation: none;
    }
}

.home_cs.client_success .hb-services__col.hb-services__col--center {
    padding-bottom: 0;
}

.home_cs .hb-services__col--left {
    margin-top: 0;
}

.home_cs.client_success .hb-services__col--right {
    padding-bottom: 0;
}

.home_cs {
    margin-top: -30px;
}

.light .mask-overlay .bg-rect {
    fill: var(--hb-light);
    transition: background-color 0.9s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.9s cubic-bezier(0.4, 0, 0.2, 1),
        fill 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.mask-overlay .bg-rect {
    fill: var(--hb-dark);
    transition: background-color 0.9s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.9s cubic-bezier(0.4, 0, 0.2, 1),
        fill 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

#primary.light {
    background-color: var(--hb-light);
    transition: background-color 0.9s cubic-bezier(0.4, 0, 0.2, 1), color 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
 
.page-id-17 .site-main  {
    background-color: var(--hb-light); 
}

.home .hb-services__body p {
    color: var(--hb-text-light);
}

.home .light .hb-services__body p {
    color: var(--hb-text-dark);
}

.light .home .hb-services__body p {
    color: var(--hb-light);
}

/********About US*****************/
.about_hero {
    padding: clamp(70px, calc(70px + 100 * ((100vw - 768px) / 832)), 170px) 0;
}

.hb-services.about_hero .hb-services__body p {
    font-size: var(--hb-text-18);
    font-family: var(--hb-font);

}

.page-id-16 .hb-services.about_hero .hb-services__body p {
    color: #fff;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
}

.about_hero .hb-services__inner {
    display: flex;
    justify-content: space-between;
}

.about_hero .hb-services__col--center {
    padding: 0;
}

.about_hero .hb-services__col--right {
    padding: 0;
    align-items: flex-end;
    justify-content: flex-end;
}

.about_hero .hb-services__body {
    font-family: var(--hb-font);
    max-width: 510px;
    line-height: 1.7;
}

.about_hero .hb-services__col--left {
    padding: 0;
    margin-top: 0;
}

.about_hero .hb-services__heading {
    max-width: 100%;
    letter-spacing: 1.4px;
    font-size: var(--hb-text-140);
}

/*****Slider**********/
.hb-test__media {
    position: relative;
    overflow: hidden;
    /* clips the scaled iframe */
}

.hb-test__inline-video {
    position: absolute;
    inset: 0;
    background: #000;
    overflow: hidden;
}

/* Cover trick for iframes — scales to fill like object-fit:cover */
.hb-test__inline-video iframe, .video_slider iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 177.78%;
    /* 100/9*16 — ensures 16:9 video fills tall containers */
    min-height: 56.25%;
    /* 100/16*9 — ensures 16:9 video fills wide containers */
    transform: translate(-50%, -50%);
    border: 0;
}

.hb-test__video-overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 2;
}

.hb-test__video-overlay.is-paused::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Ccircle cx='24' cy='24' r='24' fill='rgba(0,0,0,0.4)'/%3E%3Crect x='14' y='13' width='7' height='22' rx='2' fill='white'/%3E%3Crect x='27' y='13' width='7' height='22' rx='2' fill='white'/%3E%3C/svg%3E") center/48px no-repeat;
}

.about_testimonial_slider .hb-test__card:hover,
.hb-test__card.is-hovered {
    transform-origin: center center;
    z-index: 2;
}


.about_testimonial_slider .hb-test__media {
    height: clamp(280px, -46.92px + 42.07vw, 485px);
}

.about_testimonial_slider .hb-test__card {
    flex: 0 0 clamp(280px, -8.77px + 36.79vw, 500px);
}

.about_testimonial_slider .hb-test__card {
    transition: height 0.3s ease, transform 0.3s ease;
    transform-origin: center center;
}
.about_testimonial_slider .hb-test__card:hover {
    transform: scale(1.05);
    transition: height 0.3s ease, transform 0.3s ease;
}
.about_testimonial_slider {
    padding: clamp(50px, calc(6.01vw + 3.85px), 100px) 0 clamp(75px, calc(24.04vw - 109.6px), 275px);
}

.about_testimonial_slider .hb-test__track {
    gap: 25px;
    padding: 20px 0;
}

/****partnership******/
.prt-section {
    color: #fff;
    overflow: hidden;
    padding: clamp(100px, calc(22.24vw - 70.8px), 285px) 0 clamp(100px, calc(12.02vw + 7.7px), 200px);
}

.prt-section.process_partnership_section {
   color: var(--hb-text-light);
}

.light .prt-section.process_partnership_section {
   color: var(--hb-text-dark);
}

.prt-col--left,
.prt-col--right {
    overflow: visible;
}

.prt-col--left .prt-col__heading {
    top: 60px;
    left: -20px;
    padding-left: 0;
}

.prt-col__headingbig {
	font-size: clamp(80px, calc(20.43vw - 76.9px), 250px);
	font-family: var(--hb-font-display);
	padding-bottom: clamp(80px, calc(17.43vw - 54px), 225px);
	letter-spacing: 0;
    color:var(--dark-green);
}

.process_partnership_section .prt-body p {
    font-family: var(--hb-font-deck);
    font-size: var(--hb-text-30);
}
.prt-section [data-split-left],
.prt-section [data-split-right],
.prt-section [data-split-centre] {
    opacity: 1 !important;
}

.prt-col__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.prt-inner {
    display: flex;
    align-items: stretch;
    min-height: 650px;
    flex-wrap: wrap;
}

.prt-col {
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.08s linear, opacity 0.08s linear;
    will-change: transform, opacity;
}

.prt-col--left {
    flex: 0 0 25%;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
}

.prt-col--center {
    flex: 1;
    justify-content: flex-end;
    padding: 60px 56px 0 56px;
    max-width: 632px;
    margin: 0 auto;
    gap: 40px;
}


.prt-col--right {
    flex: 0 0 25%;
    justify-content: flex-start;
    align-items: flex-end;
}

.prt-col__img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.prt-col__heading {
    position: absolute;
    text-transform: uppercase;
    margin: 0;
    z-index: 2;
}

.prt-col--left .prt-col__heading {
    top: 60px;
    left: 0;
    padding-left: 80px;
}

.prt-col__heading--right {
    bottom: 60px;
    right: 0;
    text-align: right;
    padding-right: 80px;
}

.prt-body p {
    margin: 0 0 20px;
}

.prt-body p:last-child {
    margin-bottom: 0;
}

.prt-btn {
    align-self: flex-start;
    margin-top: 10px;
}

/****Growing****/
.grw-section {
    color: var(--hb-light);
}
.light .grw-section {
    color: var(--hb-dark);
}

.light .grw-section.process_growing_stories {
    color: var(--hb-dark);
}

.light .grw-section.process_growing_stories .green_heading {
    color: var(--dark-green);
}

.grw-intro {
    font-size: var(--hb-text-48);
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 60px;
    font-family: var(--hb-font-serif-cn);
    max-width: 1100px;
    letter-spacing: 0.48px;
}

.grw-item__trigger,
.grw-item__heading {
    cursor: pointer;
    font-family: var(--hb-font-serif-cn);
    font-size: clamp(30px, calc(3.37vw + 4.1px), 58px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 55px 60px;
    background: none;
    border: none;
    color: var(--hb-light);
}

/*.light .grw-item__trigger,
.light .grw-item__heading {
color: var(--hb-dark);
}
*/
.grw-section.process_growing_stories .grw-item__trigger {
    color: var(--hb-light);
}

.light .grw-section.process_growing_stories .grw-item__trigger {
    color: var(--hb-dark);
}

.grw-item__trigger:hover {
    color: var(--dark-green);
    transition: all 0.4s ease 0s;
}

.grw-item__heading {
    padding: 0 0;
}

.grw-item {
    border-bottom: 1px solid var(--dark-green);
}

.grw-inner {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 15px;
}

.grw-accordion {
    display: flex;
    flex-direction: column;
}

.grw-section {
    padding: clamp(70px, calc(13.22vw - 31.6px), 180px) 0 clamp(75px, calc(24.04vw - 109.6px), 275px) 0;
}

.grw-item.is-open .grw-item__trigger {
    opacity: 1;
    pointer-events: auto;
}

.grw-item.is-open .grw-item__trigger {
    padding-bottom: 24px;
}

.grw-item.is-open .grw-item__trigger {
    display: none;
}

.grw-item__body {
    color: #fff;
    max-width: 320px;
}

.grw-item__stat-label {
    font-family: var(--hb-font-display, sans-serif);
    font-size: var(--hb-text-48);
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 8px;
}

.grw-item__card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    border-radius: 30px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 60px;
}

.grw-item__stat-number {
    font-family: var(--hb-font-serif-cn, Georgia, serif);
    font-size: var(--hb-text-110);
    font-weight: 300;
    color: #fff;
    line-height: 0.9;
}
.grw-item__stat-number span, .gs-card__stat-num span, .wn-popup__num span, .per{
    font-family: 'Feature Display';
}
.grw-item__stat-caption {
    font-size: 21px;
    color: #fff;
    margin-top: 20px;
    font-family: var(--hb-font-deck);
}

.grw-item__prefix {
    flex-shrink: 0;
}

.grw-item__label {
    flex-shrink: 0;
    text-align: right;
}


.grw-item__panel {
    max-height: 600px;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.65, 0, 0.15, 1);
}

.grw-item:not(.is-open) .grw-item__panel {
    max-height: 0;
}

.grw-item__panel-inner {
    padding: 0 0 40px;
}

.grw-item__card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 420px;
}

.grw-item__stat {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.grw-item__dot {
    position: absolute;
    top: 54px;
    right: 32px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.8;
    color: var(--dark-green);
    text-align: center;
    line-height: 2.2;
    font-weight: 900;
    cursor: pointer;
}

.grw-item.is-open {
    border-bottom: 0;
    margin-top: 20px;
}

.process_growing_stories .grw-intro {
    font-size: var(--hb-text-18);
    font-family: var(--hb-font);
    max-width: 610px;
    letter-spacing: 0;
    padding-top: 65px;
}

/******Team*********/

.tm-section {
    padding: clamp(100px, -153.85px + 33.05vw, 375px) clamp(15px, -26.54px + 5.41vw, 60px) clamp(70px, calc(9.62vw - 3.9px), 150px);
}

.tm-heading {
    font-family: var(--hb-font-serif-cn);
    font-size: clamp(48px, 17.18px + 4.01vw, 72px);
    font-weight: 300;
    /* color: var(--hb-text-dark, #0d201c); */
    letter-spacing: 0.72px;
    padding-bottom: 20px;
}
.tm-body {
    max-width: 900px;
    padding-bottom: 60px;
}
.tm-card {
    flex: 0 0 32%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tm-card:hover {
    transform: translateY(-4px);
}

.tm-card__img img {
    display: block;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
    width: 100%;
    border-radius: 10px;
}

.tm-card:hover .tm-card__img img {
    filter: grayscale(0%);

}

.tm-card__info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 35px 25px 60px 0px;
    gap: 12px;
}

.tm-card__name {
    font-family: var(--hb-font-serif, Georgia, serif);
    font-weight: 300;
    /*color: #0C272F;*/
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0;
    font-size: var(--hb-text-36);
}

.tm-card__role {
    font-family: var(--hb-font, sans-serif);
    font-size: 16px;
    /*color: #0C272F;*/
    margin: 4px 0 0;
    line-height: 1.4;
}

.tm-card__li {
    flex-shrink: 0;
    transition: opacity 0.2s;
    margin-top: 2px;
}

.light .tm-card__li {
    color: var(--dark-green);
}

.tm-section {
    color: var(--hb-light);
}

.light .tm-section {
    color: var(--hb-text-dark);
}

.tm-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.tm-card {
    flex: 0 0 32%;
}

.tm-card__li:hover {
    opacity: 0.6;
}

/***Team popup***/

/* ── Popup: sticky right panel (Athletics-style) ── */
/*.tm-section .tm-popup {
	position: fixed;
	inset: 0 0 0 auto;
	width: 100%;
	height: 100vh;
	transform: translateX(100%);
	transition: all 0.5s ease 0s;
	z-index: 99;
	overflow: hidden;
	right: 0;
	max-width: 625px;
    visibility: hidden; 
}
.tm-section .tm-popup.is-open {
    transform: translateX(0);
    pointer-events: auto;        
    visibility: visible;
    transition: all 0.5s ease 0s;
}

.tm-popup.is-open .tm-popup__bg {
    pointer-events: auto;  
    transition: opacity .38s cubic-bezier(.4,0,.2,1);
}

.tm-section .tm-popup__x {
    position: sticky;
    top: 1rem;
    float: right;
    margin: 1rem 1rem 0 0;
    z-index: 10;
}

.tm-section .tm-popup__name {
    font-family: var(--hb-font-display, sans-serif);
    font-size: var(--hb-text-62);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-green);
}

.tm-section .tm-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.tm-section .tm-popup__box {
    position: relative;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    top: 70px;
}

.tm-section .tm-popup.is-open .tm-popup__box {
    transform: translateY(0) scale(1);
}

.tm-section .tm-popup__x {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    color: #1a1a1a;
    transition: background 0.2s, transform 0.2s;
}

.tm-section .tm-popup__x:hover {
    background: #fff;
    transform: scale(1.1);
}


.tm-section .tm-popup__layout {
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
}


.tm-section .tm-popup__left {
    flex: 0 0 50%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #d5d3cd;
    position: sticky;
    top: 0;
    height: 100%;
}


.tm-section .tm-popup__right {
    flex: 0 0 50%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding:
  clamp(25px, calc(25px + 50 * ((100vw - 768px) / 832)), 75px)
  clamp(25px, calc(25px + 40 * ((100vw - 768px) / 832)), 65px)
  clamp(100px, calc(100px + 75 * ((100vw - 768px) / 832)), 175px);
}

.tm-section .tm-popup__role {
    font-family: var(--hb-font, sans-serif);
    font-size: var(--hb-text-18);
    font-weight: 700;
    color: var(--hb-dark);
    margin: 0;
}

.tm-section .tm-popup__bio {
    color: var(--hb-dark);
    margin-top: 8px;
}

.tm-section .tm-popup__bio p:first-child {
    margin-top: 0;
}

.tm-section .tm-popup__bio p:last-child {
    margin-bottom: 0;
}

.tm-section .tm-popup__li-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2D4E45;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 12px;
    transition: opacity 0.2s;
}

.tm-section .tm-popup__li-link:hover {
    opacity: 0.6;
}
*/
/***Team popup***/
.tm-popup__name {
    font-family: var(--hb-font-display, sans-serif);
    font-size: clamp(38px, 15.82px + 2.88vw, 62px);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-green);
}

.tm-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.tm-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.tm-popup__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.tm-popup__box {
    position: relative;
    width: 90vw;
    max-width: 1415px;
    height: 80vh;
    max-height: 956px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
}

.tm-popup.is-open .tm-popup__box {
    transform: translateY(0) scale(1);
}

.tm-popup__x {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    color: #1a1a1a;
    transition: background 0.2s, transform 0.2s;
}

.tm-popup__x:hover {
    background: #fff;
    transform: scale(1.1);
}


.tm-popup__layout {
    display: flex;
    width: 100%;
    height: 100%;
}


.tm-popup__left {
    flex: 0 0 50%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #d5d3cd;
    position: sticky;
    top: 0;
    height: 100%;
}


.tm-popup__right {
    flex: 0 0 50%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: clamp(25px, -44.23px + 9.01vw, 100px);
}

.tm-popup__role {
    font-family: var(--hb-font, sans-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--hb-dark);
    margin: 0;
}

.tm-popup__bio {
    color: var(--hb-dark);
    margin-top: 8px;
}

.tm-popup__bio p:first-child {
    margin-top: 0;
}

.tm-popup__bio p:last-child {
    margin-bottom: 0;
}

.tm-popup__li-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2D4E45;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 12px;
    transition: opacity 0.2s;
}

.tm-popup__li-link:hover {
    opacity: 0.6;
}

/******Video card vc******/
.vc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1295px;
    margin: 0 auto;
    padding-bottom: 90px;
}

.vc-section {
    overflow: hidden;
    padding: 60px 20px clamp(80px, 61.54px + 2.4vw, 100px);
}

.vc-top__left .vc-top__heading {
    position: relative;
    top: -65px;
}

.vc-top__heading--right {
    text-align: right;
    padding-top: 45px;
}

.vc-top__body {
    color: var(--hb-text-dark, #0d201c);
    max-width: 530px;
}

.vc-top__heading {
    font-family: var(--hb-font-display, sans-serif);
    text-transform: uppercase;
    color: #2D4E45;
    margin: 0;
}

.vc-card__caption {
    font-family: var(--hb-font-serif-cn);
    font-weight: 300;
    color: #fff;
    margin: 0;
    flex: 1;
    letter-spacing: 0.36px;
    line-height: 1.3;
    font-size: clamp(22px, 9.06px + 1.68vw, 36px);
}

.vc-card {
    flex: 0 0 clamp(280px, 30vw, 680px);
    border-radius: 12px;

    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    user-select: none;
    max-height: 690px;
    transition: all 0.4s ease 0s;
}


.vc-card__play {
    width: 80px;
    height: 80px;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 55px;
    background: var(--hb-text-dark, #0d201c);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.vc-card__play:hover {
    transform: scale(1.05);
}

.vc-card__play svg {
    width: clamp(40px, calc(2.5vw + 20px), 80px);
    height: clamp(40px, calc(2.5vw + 20px), 80px);
}

.vc-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 33px 40px;
    background: #2D4E45;
    margin-top: -6px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.vc-card:hover {
    transform: translateY(40px)
}

.vc-card:hover .vc-card__bottom {
    background: var(--hb-text-dark, #0d201c);
}

.vc-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: clamp(15px, 2vw, 33px) clamp(15px, 3vw, 40px);
    background: var(--dark-green);
    margin-top: -6px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: -1;
}

.vc-track {
    display: flex;
    gap: 30px;
    will-change: transform;
    cursor: grab;
    user-select: none;
}

.vc-track:active {
    cursor: grabbing;
}

.vc-top__left {
    flex: 0 0 50%;
    max-width: 550px;
}

.vc-top__right {
    flex: 0 0 40%;
    text-align: right;
}

/* ── Slider ── */
.vc-slider {
    overflow: visible;
    position: relative;
    width: 100%;
    padding: 0 var(--hb-px, clamp(1.25rem, 4vw, 3.5rem));
}

.vc-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.15, 1);
    border-radius: 10px;
}

/* ══════════════════════════════════════
   Lightbox
   ══════════════════════════════════════ */
.vc-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0s linear 0.35s;
}

.vc-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s;
}

.vc-lightbox__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
}

.vc-lightbox__inner {
    position: relative;
    width: min(90vw, 960px);
    aspect-ratio: 16 / 9;
}

.vc-lightbox__close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.vc-lightbox__close:hover {
    opacity: 1;
}

.vc-lightbox__video {
    width: 100%;
    height: 100%;
}

.vc-lightbox__video iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/******ROI****/
.roi_black .roi-stats,
.roi_black {
    color: #fff;
}

.roi_black .roi-card .roi-wrap,
.roi_black .roi-intro {
    color: #fff;
}

.light .roi_black .roi-card .roi-wrap,
.light .roi_black .roi-intro {
    color: var(--hb-text-dark);
}

.roi_black .roi-card .roi-wrap {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.roi-section {
    overflow: hidden;
    padding: clamp(100px, calc(10vw + 20px), 300px) 0 clamp(75px, calc(6vw + 15px), 175px) 0;
}

/* ── Intro ── */
.roi-intro {
    font-family: var(--hb-font-serif-cn);
    font-size: clamp(30px, 3vw, 48px);
    font-weight: 300;
    color: var(--hb-text-dark, #0d201c);
    padding: 0 clamp(25px, 5vw, 80px);
    line-height: 1.3;
    letter-spacing: 0.48px;
    margin-bottom: 10px;
}

/* ── Marquee ── */
.roi-marquee {
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 60px;
}

.roi-marquee__track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: roi-scroll 20s linear infinite;
    will-change: transform;
}
/*
.roi-marquee:hover .roi-marquee__track {
    animation-play-state: paused;
}
*/
.roi-marquee__item {
    font-family: var(--hb-font-display);
    font-size: clamp(56px, 8vw, 140px);
    font-weight: 700;
    color: #2D4E45;
    white-space: nowrap;
    line-height: 1;
    letter-spacing: 0;
    flex-shrink: 0;
    font-style: italic;
}

@keyframes roi-scroll {
    0% {
        transform: translateX(0);
    }

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

/* ── Stats grid (flex 2x2) ── */
.roi-stats {
    display: flex;
    flex-wrap: wrap;
    padding: 0 15px;
    gap: 0;
    max-width: 1700px;
    margin: 0 auto;
}

.roi-card {
    padding: 55px 30px;
    flex: 0 0 50%;
}

.roi-card .roi-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid rgba(12, 33, 31, 0.3);
    padding-bottom: 30px;
    gap: 15px;
    color: var(--hb-dark);
}

/* Remove bottom border on last row */
.roi-card:nth-last-child(-n+2) {
    border-bottom: none;
}

/* Left: label + description */
.roi-card__left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.roi-card__label {
    font-family: var(--hb-font-display, sans-serif);
    font-size: clamp(30px, 3vw, 48px);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-green);
}

.roi-card__desc {
    font-family: var(--hb-font, sans-serif);
    font-size: 16px;
}

/* Right: number + caption */
.roi-card__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.roi-card__number {
    font-family: var(--hb-font-serif-cn, Georgia, serif);
    font-weight: 300;
    line-height: 1;
    font-size: clamp(51px, 6vw, 108px);
}

.roi-card__caption {
    font-family: var(--hb-font-deck);
    font-size: 21px;
}

/*****Simple CTA*******/
.ctas-section {
    padding: clamp(80px, 10vw, 185px) 20px clamp(70px, calc(9.62vw - 3.9px), 150px) 20px;
}

.ctas-inner {
    display: flex;
    flex-direction: column;
    max-width: 792px;
    margin: 0 auto;
    gap: 100px;
}

.ctas-heading {
    font-family: var(--hb-font-display, sans-serif);
    font-size: var(--hb-text-110);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--hb-text-light);
}

.light .ctas-heading {
    color: var(--dark-green);
}
.single-growth-story .ctas-heading {
    color: var(--dark-green);
}
.ctas-heading__line {
    display: block;
}

.ctas-heading__line--left {
    text-align: left;
}

.ctas-heading__line--right {
    text-align: right;
}

/* ── Button — extends .hb-btn ── */
.hb-btn--dark {
    background: var(--dark-green);
    color: #fff;
    border: 2px solid var(--dark-green);

    padding:
        clamp(6px, 0.8vw, 8px) clamp(20px, 3vw, 44px);

    font-family: var(--hb-font-display, sans-serif);
    font-size: clamp(18px, 2.2vw, 36px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.36px;
    border-radius: 0;
    text-decoration: none;
}

.hb-btn--dark:hover {
    background: #1a3530;
    border-color: #1a3530;
}

.ctas-btn-wrap {
    display: flex;
    justify-content: center;
}

/*****Our growth******/
.real-growth {
    padding-bottom: 0;
}
.growth_story_hero {
    background: var(--hb-light);
}

.page-id-2957 .c4-section-mid:not(.is-visible) {
    opacity: 1;
    visibility: visible;
    overflow: hidden;
}
/****Our Method***/
.c4-intro__left,
.c4-intro__right,
.svg-c4-badge-img,
.c4-badge-img,
.c4-badge-text{
    will-change: transform, opacity;
}
.core4 {
    overflow: hidden;
}
iframe.c4-card__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: calc(100% * 16 / 9);
    min-height: calc(100% * 9 / 16);
    transform: translate(-50%, -50%);
    border: none;
    display: block;
    z-index: 0;
    pointer-events: none;
}
.page-id-17 .our-method-hero {
    padding-bottom: 65px;
}

/*****Growth story single****/

.ssn-section {
    position: sticky;
    top: 112px;
    z-index: 999;
    transition: transform 0.4s ease, opacity 0.4s ease;
    background: var(--hb-text-dark);
}

.stc-body p,
.sd-item {
    color: var(--hb-text-dark);
}

.postid-1370 .ctas-heading {
    color: var(--dark-green);
}

.heading46 {
    font-size: clamp(28px, calc(28px + 16 * ((100vw - 678px) / 922)), 46px);
    font-weight: 300;
    color: #1C2B1A;
    margin: 0;
    line-height: 1.2;
    font-family: var(--hb-font-deck);
}

.stc-left {
    flex: 0 0 37%;
}

.stc-body {
    max-width: 790px;
}

.stc-right {
    flex: 0 0 55%;
}

.stc-section {
    padding: clamp(60px, 8vw, 140px) 0;
}

.stc-wrap {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 60px);
    display: flex;
    gap: clamp(30px, 5vw, 80px);
    align-items: flex-start;
    flex-wrap: wrap;
}

.stc-body p:last-child {
    margin-bottom: 0;
}

.sd-right {
    display: flex;
}

.sd-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vw, 14px);
}

.sd-item {
    position: relative;
    margin-bottom: 0;
    line-height: 1;
    padding-left: 15px;
}

.sd-item::before {
    content: '-';
    position: absolute;
    left: 0;
}

.cq-section.cq-section-single {
    padding: clamp(80px, calc(80px + 90 * ((100vw - 768px) / 832)), 170px) 0;
}

.cq-footer {
    margin-top: 80px;
}

.sm-section.sm_video {
    padding: clamp(75px, calc(75px + 100 * ((100vw - 768px) / 832)), 175px) 15px;
}

.sm-fpo {
    position: absolute;
    bottom: clamp(12px, 2vw, 24px);
    left: clamp(12px, 2vw, 24px);
    font-size: 54px;
    font-weight: 300;
    color: #FF2000;
    letter-spacing: 0;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    font-family: var(--hb-font-deck);
}

.svq-section {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, calc(30px + 50 * ((100vw - 678px) / 922)), 80px);
}

.svq-glass__quote p {
    font-family: var(--hb-font-deck);
    font-size: clamp(20px, calc(20px + 16 * ((100vw - 768px) / 832)), 36px);
}

.svq-glass__author {
    font-size: clamp(13px, calc(13px + 3 * ((100vw - 678px) / 922)), 16px);
    margin: clamp(20px, 2vw, 30px) 0 0;
    color: rgb(255, 255, 255);
}

.svq-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.svq-media img {
    width: 100%;
    height: 848px;
    object-fit: cover;
    display: block;
}

.svq-glass__logo img {
    filter: brightness(0) invert(1);
    max-width: 150px;
    height: unset !important;
}

.svq-glass {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 45%;
    z-index: 2;
    background: rgba(0, 0, 0, .3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(25px, calc(25px + 75 * ((100vw - 768px) / 832)), 100px) clamp(25px, calc(25px + 50 * ((100vw - 768px) / 832)), 75px);
    color: #fff;
    border-radius: 12px;
}

.svq-watch {
    position: absolute;
    bottom: clamp(20px, calc(20px + 80 * ((100vw - 768px) / 832)), 100px);
    right: clamp(20px, calc(20px + 80 * ((100vw - 768px) / 832)), 100px);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    padding: 13px 36px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: background .3s;
}

.svq-glass__logo {
    margin-top: clamp(30px, calc(30px + 50 * ((100vw - 768px) / 832)), 80px);
}

.svq-eyebrow {
    text-align: center;
    color: #1C2B1A;
}

.svq-play svg {
    width: clamp(22px, calc(22px + 46 * ((100vw - 768px) / 832)), 68px);
    height: clamp(22px, calc(22px + 30 * ((100vw - 768px) / 832)), 52px);
}

.svq-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: rgba(0, 0, 0, .5);
    border: none;
    border-radius: 50%;
    width: clamp(50px, calc(50px + 50 * ((100vw - 768px) / 832)), 100px);
    height: clamp(50px, calc(50px + 50 * ((100vw - 768px) / 832)), 100px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
}

.svq-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.svq-watch:hover {
    background: rgba(255, 255, 255, .25);
}

.svq-watch svg {
    width: 22px;
    height: 22px;
}

.stc-section {
    position: relative;
    z-index: 3;
}

.si-slide__tag {
    font-size: clamp(28px, calc(28px + 30 * ((100vw - 678px) / 922)), 58px);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 clamp(12px, 2vw, 24px);
    font-family: var(--hb-font-display);
    line-height: 1;
}

.si-slide__desc {
    font-size: var(--hb-text-30);
    font-weight: 300;
    line-height: 1.5;
    margin: 0 0 auto;
    color: #fff;
    font-family: var(--hb-font-deck);
}

.si-slide__glass {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 45%;
    z-index: 2;
    backdrop-filter: blur(30px) brightness(0.67);
    -webkit-backdrop-filter: blur(30px) brightness(0.67);
    background: transparent;
    border-radius: clamp(10px, 1vw, 16px) 0 0 clamp(10px, 1vw, 16px);
    padding: clamp(24px, 3vw, 48px);
    display: flex;
    flex-direction: column;
    color: #fff;
    opacity: 0;
    transform: translateX(0px);
    transition: opacity 0.45s ease 0.15s, transform 0.45s ease 0.15s;
    pointer-events: none;
}

.si-slide.is-active {
    flex: 0 0 90%;
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    filter: none;
}

.si-slide {
    flex: 0 0 22%;
    opacity: 0.5;
    transition: all 0.5s ease;
    border-radius: 16px;
    overflow: hidden;
}

.si-slide:not(.is-active) {
    opacity: 0.5;
    filter: brightness(0.75);

}

.si-slide:not(.is-active):hover {
    opacity: 0.85;
    filter: brightness(0.9);

}

#solution {
    padding-bottom: 230px;
}

.svo-cta {
    margin-top: clamp(40px, 5vw, 80px);
    text-align: center;
}

.svo-cta__btn {
    display: inline-block;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 999px;
    padding: clamp(12px, 1vw, 16px) clamp(30px, 3.5vw, 56px);
    text-decoration: none;
    transition: background .3s;
}

.svo-cta__btn:hover {
    background: rgba(255, 255, 255, .1);
}

/******Solution page css*****/
.solution_hero .hb-services__body p,
.page-id-13 .solution_hero .hb-services__body p {
    font-size: var(--hb-text-30);
    font-family: var(--hb-font-deck);
}
.about_hero.solution_hero .hb-services__col--right {
	padding-top: 70px;
	align-items: flex-start;
}

.about_hero.solution_hero .hb-services__body {
    max-width: 1040px;
}

.light .svo-cta__btn.cta_black {
    color: #0C272F;
    border: 1px solid #0C272F;
}

.svo-cta__btn.cta_black {
    color: #fff;
    border: 1px solid #fff;
}

.svo-cta__btn.cta_black:hover {
    background-color: var(--dark-green);
    color: #fff;
    border-color: var(--dark-green);
}

.gs-section.light_gs,
.light_gs .gs-slider-wrap {
    background-color: var(--hb-light);
}
.landing_gs_slider .gs-slider-wrap {
    background-color: transparent ;
}
/**************Industry BTS***********/

.btsc-section {
    padding:
        clamp(70px, calc(70px + 55 * ((100vw - 768px) / 832)), 125px) 20px clamp(70px, calc(70px + 95 * ((100vw - 768px) / 832)), 165px);
    background: linear-gradient(to right, rgba(56, 45, 56, 0.6), rgba(56, 45, 56, 0.25), rgba(56, 45, 56, 0.6));
    backdrop-filter: blur(40px);
    margin: 0 20px;
    border-radius: 12px;
    z-index: 2;
    position: relative;
    overflow: hidden;
}

.btsc-section .hb-btn {
    margin: 70px auto 0;
    padding-left: 85px;
    padding-right: 85px;
    text-transform: capitalize;
}

.align_center {
    text-align: center;
}

.btsc-section .btsc-section__inner {
    display: flex;
    gap: 20px;
    /*align-items: center;*/
    justify-content: space-between;
}

.btsc-section .btsc-section__col--right {
    position: relative;
    top: 100px;
}

.btsc-section .btsc-section__col--center {
    padding-top: clamp(45px, calc(12.02vw - 47.3px), 145px);
}

.btsc-section .btsc-section__body {
    max-width: 900px;
    margin: 0 auto;
}

.btsm-section__init-grid.sh-top {
    padding: 0;
}

.btsm-is-fixed .btsm-section__media-inner {
    aspect-ratio: 16 / 9;
    width: 100%;
    position: fixed;
    left: 0;
}

.btsm-scroll-space {
    background: var(--hb-light);
    overflow-x: hidden;
}

/* ── Challenges Top Section ── */
.cs-section.industry_cs-section {
    padding-top: clamp(80px, calc(24.04vw - 104.62px), 280px);
    
}

.cs-section {
    position: relative;
    z-index: 2;
    padding: clamp(70px, calc(12.02vw - 22.3px), 170px) 0 0;
}

.cs-top {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 clamp(20px, calc(20px + 40 * ((100vw - 678px) / 922)), 60px);
    padding-bottom: clamp(40px, calc(40px + 40 * ((100vw - 678px) / 922)), 80px);
}

.cs-top__heading {
    color: var(--hb-text-dark, #1C2B1A);
    margin: 0 0 clamp(20px, calc(20px + 20 * ((100vw - 678px) / 922)), 40px);
    max-width: 900px;
}

.cs-top__body {
    font-family: var(--hb-font, sans-serif);
    font-size: clamp(16px, calc(16px + 2 * ((100vw - 678px) / 922)), 18px);
    line-height: 1.7;
    max-width: 510px;
    color: var(--hb-text-dark, #1C2B1A);
    margin: 0;
}

.cs-section.industry_cs-section .wn-slider {
    padding-top: clamp(35px, calc(12.02vw - 57.3px), 135px);
    padding-bottom: clamp(70px, calc(36.06vw - 206.9px), 370px);
}

.cs-top__body p {
    margin: 0 0 1em;
}

.cs-top__body p:last-child {
    margin-bottom: 0;
}

/* ── Slider (reuses wn- classes from work_new) ── */
.cs-section .wn-slider {
    padding-bottom: clamp(60px, calc(60px + 60 * ((100vw - 678px) / 922)), 120px);
}

/*********Growth story client section***************/
.cl-section {
    padding: clamp(160px, calc(160px + 200 * ((100vw - 768px) / 832)), 360px) clamp(20px, calc(20px + 60 * ((100vw - 768px) / 832)), 80px) clamp(80px, calc(80px + 120 * ((100vw - 768px) / 832)), 200px)
}



/* ── Header ── */
.cl-section .cl-header {
    margin-bottom: clamp(40px, 5vw, 80px);
}

.cl-section .cl-header__heading {
    font-size: var(--hb-text-48);
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 clamp(8px, 1vw, 16px);
    line-height: 1.15;
    font-family: var(--hb-font-serif-cn);
    letter-spacing: 0px;
}

.cl-section .cl-header__body {
    font-size: var(--hb-text-16);
    color: #fff;
}

.cl-section .cl-header__body p {
    margin: 0;
}

/* ── 2-column grid ── */
.cl-section .cl-grid {
    display: flex;
    gap: clamp(30px, 4vw, 80px);
}

.cl-section .cl-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Client row ── */
.cl-section .cl-item {
    position: relative;
    padding: 10px 0;
    cursor: pointer;
}


.cl-section .cl-item__name {
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
    transition: opacity .4s ease;
}

.cl-section .cl-item:hover .cl-item__name {
    opacity: .7;
}

/* ═══════ Tooltip Card ═══════ */
.cl-section .cl-tooltip {
    position: absolute;
    bottom: 100%;
    left: 0;
    transform: translateX(0%) translateY(10px);
    z-index: 10;
    max-width: clamp(500px, 33vw, 635px);
    width: 100%;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;

}

.cl-section .cl-item:hover .cl-tooltip {
    opacity: 1;
    visibility: visible;
    transition: opacity .25s ease, transform .25s ease;
}

/* Tooltip left: dark bg with logo + meta */
.cl-section .cl-tooltip__info {
    flex: 1 1 55%;
    background: #111111;
    padding: clamp(20px, 2.5vw, 32px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(16px, 2vw, 24px);
    border-radius: 12px;
}

.cl-section .cl-tooltip__logo {
    max-height: clamp(40px, 4vw, 60px);
    width: auto;
    display: block;
    object-fit: contain;
}

.cl-section .cl-tooltip__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cl-section .cl-tooltip__meta-line {
    color: rgba(255, 255, 255, .7);
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* Tooltip right: photo */
.cl-section .cl-tooltip__photo {
    /*flex: 0 0 45%;*/
    overflow: hidden;
    border-radius: 12px;
}

.cl-section .cl-tooltip__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Tooltip positioning: if near bottom, show above; fallback ── */
.cl-section .cl-col:last-child .cl-tooltip {
    left: 0;
    transform: translateX(0) translateY(10px);
}

.cl-section .cl-col:last-child .cl-item:hover .cl-tooltip {
    transform: translateX(0) translateY(0);
}

/*******Client quote*******/
.cq-section {

    padding: clamp(20px, calc(20px + 20 * ((100vw - 678px) / 922)), 40px);
}

.cq-card {


    padding: clamp(30px, calc(30px + 50 * ((100vw - 678px) / 922)), 80px);
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* ── Eyebrow ── */
.cq-eyebrow {
    text-align: center;
    margin: 0 0 clamp(16px, calc(16px + 14 * ((100vw - 678px) / 922)), 30px);
    font-size: clamp(14px, calc(14px + 4 * ((100vw - 678px) / 922)), 18px);
    font-weight: 400;
    color: var(--hb-text-light);
    letter-spacing: 0.02em;
}

.light .cq-eyebrow {
    color: var(--hb-text-dark);
}

.cq-line {
    display: block;
    width: 50px;
    height: 2px;
    background: #1C2B1A;
    margin: clamp(12px, calc(12px + 8 * ((100vw - 678px) / 922)), 20px) auto clamp(30px, calc(30px + 30 * ((100vw - 678px) / 922)), 60px);
}



/* ── Main layout ── */
.cq-inner {
    display: flex;
    align-items: flex-start;
    gap: clamp(20px, calc(20px + 20 * ((100vw - 678px) / 922)), 40px);
    position: relative;
}

/* ── Left image ── */
.cq-col--left {
    flex: 0 0 auto;
    width: clamp(160px, calc(160px + 100 * ((100vw - 678px) / 922)), 260px);
    align-self: flex-start;
}

.cq-col--left img {
    width: 100%;
    height: auto;
    border-radius: clamp(8px, calc(8px + 4 * ((100vw - 678px) / 922)), 12px);
    display: block;
    will-change: transform;
}

/* ── Center content ── */
.cq-col--center {
    flex: 1 1 auto;
    display: flex;
   flex-direction: column; 
    margin: 0 auto;
}
.section-split-hero .cq-col--center { 
flex-direction: row;
}
.cq-quote p {
    font-size: var(--hb-text-30);
    font-weight: 400;
    line-height: 1.45;
    color: color:var(--hb-text-light);
    margin: 0 0 clamp(30px, calc(30px + 30 * ((100vw - 678px) / 922)), 60px);
    font-family: var(--hb-font-deck);

}

.light .cq-quote p {
    color: var(--hb-text-dark);
}

.cq-quote p {
    margin: 0 0 1em;
}

.cq-quote p:last-child {
    margin-bottom: 0;
}

/* ── Footer: author + logo ── */
.cq-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;

}

.cq-author__name {
    font-size: clamp(14px, calc(14px + 2 * ((100vw - 678px) / 922)), 16px);
    font-weight: 400;
    color: var(--hb-text-light);
    ;
    margin: 0 0 2px;
    line-height: 1.3;
}

.cq-author__title {
    font-size: clamp(13px, calc(13px + 1 * ((100vw - 678px) / 922)), 14px);
    font-weight: 400;
    color: var(--hb-text-light);
    ;
    margin: 0;
    line-height: 1.3;

}

.light .cq-author__title,
.light .cq-author__name {
    color: var(--hb-text-dark);
}

.cq-logo {
    flex: 0 0 auto;
}

.cq-logo img {
    max-height: clamp(40px, calc(40px + 20 * ((100vw - 678px) / 922)), 60px);
    width: auto;
    display: block;
}

/* ── Right image ── */
.cq-col--right {
    flex: 0 0 auto;
    width: clamp(180px, calc(180px + 120 * ((100vw - 678px) / 922)), 300px);
    align-self: flex-start;
    margin-top: clamp(-60px, calc(-60px + (-20 + 60) * ((100vw - 678px) / 922)), -20px);
}

.cq-col--right img {
    width: 100%;
    height: auto;
    border-radius: clamp(8px, calc(8px + 4 * ((100vw - 678px) / 922)), 12px);
    display: block;
    will-change: transform;
}

/* ── Section ── */
.cls-section {
    
    padding: clamp(60px, calc(60px + 60 * ((100vw - 678px) / 922)), 120px) 0;
    overflow: hidden;
}

/* ── Top: Heading + Body ── */
.cls-top {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 clamp(20px, calc(20px + 40 * ((100vw - 678px) / 922)), 60px);
    padding-bottom: clamp(40px, calc(40px + 40 * ((100vw - 678px) / 922)), 80px);
}

.cls-top__heading {
    font-family: var(--hb-font-serif-cn);
    font-size: clamp(32px, calc(32px + 16 * ((100vw - 678px) / 922)), 48px);
    font-weight: 400;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 clamp(12px, calc(12px + 8 * ((100vw - 678px) / 922)), 20px);
    max-width: 600px;
    letter-spacing: 0.48px;
}

.cls-top__body {
    font-family: var(--hb-font, sans-serif);
    font-size: clamp(14px, calc(14px + 2 * ((100vw - 678px) / 922)), 16px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 450px;
    margin: 0;
}

.cls-top__body p {
    margin: 0 0 0.8em;
}

.cls-top__body p:last-child {
    margin-bottom: 0;
}

/* ── Slider ── */
.cls-slider {
    position: relative;
    overflow: hidden;
    cursor: grab;
}

.cls-slider:active {
    cursor: grabbing;
}

.cls-track {
    display: flex;
    gap: clamp(16px, calc(16px + 8 * ((100vw - 678px) / 922)), 24px);
    will-change: transform;
    align-items: flex-start;
}

/* ── Card ── */
.cls-card {
    flex: 0 0 auto;
    width: clamp(280px, calc(280px + 180 * ((100vw - 678px) / 922)), 460px);
    border-radius: clamp(12px, calc(12px + 4 * ((100vw - 678px) / 922)), 16px);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cls-card:hover {
    transform: translateY(-4px);
}

/* Stagger: alternate cards offset down */
.cls-card--offset {
    margin-top: clamp(20px, calc(20px + 20 * ((100vw - 678px) / 922)), 40px);
}

/* ── Card Image ── */
.cls-card__img {
	width: 100%;
	overflow: hidden;
	max-height: 530px;
}

.cls-card__img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cls-card:hover .cls-card__img img {
   /* transform: scale(1.03); */
   
}

/* ── Card Panel (always visible) ── */
.cls-card__panel {
    background-color: var(--dark-green);
    padding:
        clamp(20px, calc(1.80vw + 6.17px), 35px)
        /* top */
        clamp(20px, calc(1.80vw + 6.17px), 35px)
        /* right */
        clamp(20px, calc(3.60vw - 7.65px), 50px)
        /* bottom */
        clamp(20px, calc(1.80vw + 6.17px), 35px);
    /* left */
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cls-card__cat {
    display: block;
    font-family: var(--hb-font, sans-serif);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    text-transform: none;
    letter-spacing: 0.02em;
}

.cls-card__title {
    font-family: var(--hb-font-serif-cn);
    font-size: clamp(26px, calc(26px + 10 * ((100vw - 678px) / 922)), 36px);
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.cls-card__desc {
    font-family: var(--hb-font, sans-serif);
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 1);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cls-card__logo {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content:center;
}
.cls-card__img {
    position: relative;
}
.cls-card__logo img {
    display: block;
    max-width: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
    position: absolute;
    bottom: 45px;
}
.wn-popup__left-overlay .cls-card__logo img {
    max-width: 350px;
}
/* ── Popup Logo ── */
.wn-popup__logo {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.wn-popup__logo img {
    display: block;
    max-width: 160px;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
}
.cls-card__img:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    background: transparent linear-gradient(180deg, #FFFFFF 0%, #0C211FAD 100%) 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
}

.growth_story_hero.our-method-hero .hb-services__col--left h2 {
  font-size: var(--hb-text-140);
}
/********Growth story hero*********/
.growth_story_hero .hb-services__col--left h2 {
    position: relative;
    top: 50px;
    line-height: 0.96;
    font-size: var(--hb-text-110);
}

.growth_story_hero .hb-services__col--right h2 {
    position: relative;
    top: 190px;
}

.growth_story_hero.about_hero .hb-services__body {
    max-width: 590px;
}

/*********Growth story listing****************/
.gl-section {
    padding: clamp(40px, 5vw, 80px) 0 0;
    background-color: var(--hb-light);
}

/* ── Filters ── */
.gl-section .gl-filters {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 clamp(20px, calc(20px + 60 * ((100vw - 768px) / 832)), 80px) clamp(40px, calc(40px + 60 * ((100vw - 768px) / 832)), 100px);
}

.gl-section .gl-filters__label {
    font-size: var(--hb-text-16);
    color: var(--hb-dark);
    margin: 0 0 clamp(12px, 1.5vw, 20px);
    font-weight: 400;
}

.gl-section .gl-filters__row {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, calc(20px + 18 * ((100vw - 768px) / 832)), 38px);
}

.gl-section .gl-filter-wrap {
    flex: 1 1 300px;
    position: relative;
}

.gl-section .gl-filter-wrap select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    border-radius: 999px;
    background: #c5c4c0;
    color: #fff;
    padding: clamp(14px, 1.5vw, 18px) clamp(20px, 2.5vw, 30px);
    padding-right: 56px;
    font-size: var(--hb-text-16);
    font-weight: 400;
    cursor: pointer;
    outline: none;
    font-family: var(--hb-font, sans-serif);
}

.gl-section .gl-filter-wrap::after {
    content: '+';
    position: absolute;
    right: clamp(16px, 2vw, 24px);
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
    pointer-events: none;
}

/* ── Grid ── */
.gl-grid {
    max-width: 1920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;

}

/* ── Card ── */
.gl-card {
    position: relative;
    overflow: hidden;
    background: #0C211F;
    aspect-ratio: 1 / 1;
}

/*.gl-card:before {
    position: absolute;
    content: "";
    background: rgba(12, 39, 47, 0);
    background: linear-gradient(-179deg,
            rgba(12, 39, 47, 0) 0.00%,
            #0c211f 100.00%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 4;
}
*/
.gl-card.is-hidden {
    display: none;
}

/* ── Card Media — fills the full card ── */
.gl-card__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* When video is playing, the iframe covers the entire card like object-fit:cover */
.gl-card > iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    /* 16:9 cover trick — whichever dimension is smaller gets scaled up */
    width: 100%;
    height: 100%;
    min-width: calc(100% * 16 / 9);
    min-height: calc(100% * 9 / 16);
    transform: translate(-50%, -50%);
    border: none;
    display: block;
    z-index: 3;
    pointer-events: none;
    /* clicks pass through to card for pause */
}

.gl-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

/* Hide thumbnail once video is playing or paused */
.gl-card--playing .gl-card__img,
.gl-card--paused .gl-card__img {
    display: none;
}

/* Whole card is clickable for video */
.gl-section .gl-card--video {
    cursor: pointer;
}

.gl-section .gl-card:not(.gl-card--playing):hover .gl-card__img {
    transform: scale(1.03);
}

/* Overlay tag — taxonomy name, top left */
.gl-section .gl-card__tag {
    position: absolute;
    top: clamp(20px, calc(20px + 25 * ((100vw - 768px) / 832)), 45px);
    left: clamp(20px, calc(20px + 40 * ((100vw - 768px) / 832)), 60px);
    z-index: 6;
    font-size: var(--hb-text-58);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    max-width: 300px;
    font-family: var(--hb-font-display);
}

/* Footer gradient bar */
.gl-section .gl-card__footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background: linear-gradient(to top, rgba(0, 0, 0, .55) 0%, transparent 100%);
    gap: 16px;
    pointer-events: none;
    padding: clamp(20px, calc(20px + 40 * ((100vw - 768px) / 832)), 60px);
}

.gl-section .gl-card__title {
    font-weight: 300;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    max-width: 70%;
    font-family: var(--hb-font-serif-cn);
    letter-spacing: 0px;
    font-size: var(--hb-text-42);
}

.gl-section .gl-card__btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #3A3632;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: clamp(10px, 1vw, 14px) clamp(20px, 2.5vw, 32px);
    font-size: var(--hb-text-16);
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
    transition: background .3s ease;
    font-family: var(--hb-font, sans-serif);
    text-decoration: none;
    pointer-events: all;
}

.gl-card__btn:hover {
    background: #1C2B1A;
}

/* ── No results ── */
.gl-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: rgba(28, 43, 26, .5);
    font-size: 18px;
    display: none;
}

/* ── Section ── */
.gs-section {
    position: relative;
    overflow: hidden;
}

/* ── Gradient Top ── */
.gs-gradient {
    padding: clamp(100px, calc(100px + 200 * ((100vw - 678px) / 922)), 300px) 0 clamp(40px, calc(40px + 40 * ((100vw - 678px) / 922)), 80px);
}

.gs-header {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 clamp(20px, calc(20px + 60 * ((100vw - 678px) / 922)), 80px);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.gs-header__left {
    flex: 1 1 auto;
}

.gs-header__heading {
    font-size: var(--hb-text-140);
    color: var(--hb-text-light);
    margin: 0 0 clamp(12px, calc(12px + 8 * ((100vw - 678px) / 922)), 20px);
    text-align: left;
}

.light .gs-header__heading {color: var(--hb-text-dark);}

.gs-header__body {
    font-size: clamp(18px, calc(18px + 12 * ((100vw - 678px) / 922)), 30px);
    line-height: 1.5;
    color: var(--hb-text-light);
    max-width: 650px;
    margin: 0;
    text-align: left;
}

.light .gs-header__body {color: var(--hb-text-dark);}

.gs-header__body p {
    margin: 0 0 0.8em;
}

.gs-header__body p:last-child {
    margin-bottom: 0;
}

.gs-header__right-heading {
    font-size: var(--hb-text-140);
    color: var(--hb-text-light);
    margin: 0;
    text-align: right;
    flex: 0 0 auto;
}

.light .gs-header__right-heading { color: var(--hb-text-dark);}

/* ── Slider ── */
.gs-slider-wrap {
    background-color: #0C211F;
    padding-bottom: clamp(40px, calc(40px + 60 * ((100vw - 678px) / 922)), 100px);
}
.our_method .gs-slider-wrap {
    background-color: unset;
    
}
.gs-slider {
    position: relative;
    overflow: hidden;
    cursor: default;
}

.gs-track {
    display: flex;
    gap: clamp(16px, calc(16px + 8 * ((100vw - 678px) / 922)), 24px);
    will-change: transform;
    padding: 0;
    align-items: center;
    padding:0 !important;
}

/* ── Card: 1490×864 at 1600vw ── */
.gs-card {
    flex: 0 0 auto;
    width: clamp(340px, calc(340px + 1150 * ((100vw - 678px) / 922)), 1490px);
    height: clamp(440px, calc(440px + 260 * ((100vw - 678px) / 922)), 700px);
    border-radius: clamp(10px, calc(10px + 6 * ((100vw - 678px) / 922)), 16px);
    overflow: hidden;
    position: relative;
}

.gs-card__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gs-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gs-card__iframe {
    border: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

.gs-card__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: opacity 0.8s ease;
}

.is-poster-hidden .gs-card__poster {opacity: 0;pointer-events: none;}

.gs-card.is-video-ready .gs-card__poster {
    opacity: 0;
    pointer-events: none;
}
/* ── Glass Panel ──
   Figma: #382D38, blur 30, brightness -20 (0.8), fill opacity 0%
   border-radius: 10px */
.gs-card__glass {
    position: absolute;
    top: clamp(16px, calc(16px + 24 * ((100vw - 678px) / 922)), 40px);
    left: clamp(16px, calc(16px + 24 * ((100vw - 678px) / 922)), 40px);
    bottom: clamp(16px, calc(16px + 24 * ((100vw - 678px) / 922)), 40px);
    width: clamp(220px, calc(220px + 336 * ((100vw - 678px) / 922)), 556px);

    backdrop-filter: blur(30px) brightness(0.8);
    -webkit-backdrop-filter: blur(30px) brightness(0.8);
    border-radius: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: clamp(20px, calc(20px + 20 * ((100vw - 678px) / 922)), 40px);
    color: #ffffff;
}

.gs-card__logo {
    margin-bottom: 20px;
}

.gs-card__logo img {
    max-width: clamp(
        120px,
        calc(120px + 100 * ((100vw - 678px) / 922)),
        220px
    );
    display: block;
}

.gs-card__quote {
    font-size: var(--hb-text-26);
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 auto;
    color: #ffffff;
    font-family: var(--hb-font-deck);
}

.gs-card__author {
    font-size: clamp(13px, calc(13px + 3 * ((100vw - 678px) / 922)), 16px);
    font-weight: 400;
    line-height: 1.8;
    margin: clamp(20px, calc(20px + 10 * ((100vw - 678px) / 922)), 30px) 0 0;
    color: #ffffff;
}

.gs-card__stat {
    margin-top: 25px;
}

.gs-card__stat-num {
    font-size: var(--hb-text-86);
    font-weight: 300;
    line-height: 0.85;
    display: block;
    color: #ffffff;
    font-family: var(--hb-font-serif-cn);
}

.gs-card__stat-text {
    font-size: var(--hb-text-28);
    font-weight: 300;
    line-height: 1.2;
    display: block;
    margin-top: clamp(6px, calc(6px + 6 * ((100vw - 678px) / 922)), 12px);
    color: #ffffff;
    font-family: var(--hb-font-deck);
}

/* ── Overlay Text ──*/

.gs-card__overlay-text {
	position: absolute;
	z-index: 1;
	right: clamp(30px, calc(30px + 70 * ((100vw - 678px) / 922)), 100px);
	top: 50%;
	font-size: clamp(32px, calc(32px + 40 * ((100vw - 678px) / 922)), 72px);
	font-weight: 900;
	text-transform: uppercase;
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
	white-space: nowrap;
	pointer-events: none;
	letter-spacing: -0.02em;
	line-height: 1;
	-webkit-backdrop-filter: blur(30px) brightness(1.34);
	padding: clamp(8px, calc(8px + 8 * ((100vw - 678px) / 922)), 16px) clamp(12px, calc(12px + 12 * ((100vw - 678px) / 922)), 24px);
	font-family: var(--hb-font-display);
	transform: translate(0%, -50%);
    background-color: transparent;
}

/* ── CTA ── */
.gs-cta {
	max-width: 1920px;
	margin: 0 auto;
	padding: 40px 58px 0px;
}

.gs-cta__btn {
    display: inline-block;
    border-radius: 999px;
    padding: clamp(12px, calc(12px + 4 * ((100vw - 678px) / 922)), 16px) clamp(28px, calc(28px + 20 * ((100vw - 678px) / 922)), 48px);
    font-size: clamp(14px, calc(14px + 2 * ((100vw - 678px) / 922)), 16px);
    font-weight: 400;
    text-decoration: none;
    transition: background 0.3s ease;
    border: 1.5px solid rgba(12, 33, 31, 0.70);
    color: var(--hb-dark);
}

.gs-cta__btn:hover {
    background: var(--hb-dark);
    color: var(--hb-light);
    border-color: var(--hb-dark);
}

.industry_gs_section .gs-cta__btn {
    color: var(--hb-text-light);
    border: 1px solid #fff;
}

.industry_gs_section .gs-cta__btn:hover {
    background: rgba(245, 240, 232, 0.08);
    border-color: rgba(245, 240, 232, 0.5);
}

.gs-inner {
    padding-bottom: 35px;
}

.gs-header__body {
    padding-bottom: 20px;
}

.industry_gs_section.gs-section {
    padding-top: 130px;
}

.sh-section {
    padding: clamp(60px, 6vw, 120px) 0 0;
}

.sh-section {
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 1;
}

.sh-section.is-released {
    position: relative;
    height: auto;
}

.sh-wrap {
    max-width: 1920px;
    margin: 0 auto;
}

.sh-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(20px, 4vw, 60px);
    margin-bottom: 0px;
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
    padding: 0 clamp(16px, 4vw, 60px);
}

.sh-top__heading {
    flex: 0 0 auto;
    max-width: 50%;
    font-size: var(--hb-text-110);
    color: #ffffff;
    margin: 0;
    font-family: var(--hb-font-display);
    letter-spacing: 1.4px;
    line-height: 0.97;
    text-transform: uppercase;
    font-weight: 500;
    padding-left: 35px;
    margin-bottom: -55px;
}

.sh-top__desc {
    flex: 1 1 300px;
    font-size: clamp(16px, calc(16px + 2 * ((100vw - 678px) / 922)), 18px);
    color: rgba(255, 255, 255, 1);
    line-height: 1.6;
    max-width: 500px;
    margin-top: -90px;
    align-self: center;
}

.sh-top__desc p {
    margin: 0;
}

.sh-section .sh-media {
    position: relative;
    width: 90%;
    margin: 0 auto;
    border-radius: 0px;
    overflow: hidden;
    top: 80px !important;

}

.sh-section.sh-is-fixed .sh-media,
.sh-section.sh-is-after .sh-media {
    aspect-ratio: 16/9;
    width: 100%;
}

.sh-section.sh-is-fixed .sh-media,
.sh-section.sh-is-after .sh-media,
.btsm-section.btsm-is-fixed .btsm-section__media-inner,
.btsm-section.btsm-is-after .btsm-section__media-inner {
    position: fixed !important;
}

.btsm-section.btsm-is-fixed .btsm-section__media-inner,
.btsm-section.btsm-is-after .btsm-section__media-inner {
    position: fixed !important;
    top: 0;
    width: calc(100% - 40px);
    margin: 0 20px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
}

.btsm-section.sh-section .sh-media {
    position: static;

}

.btsm-section .hb-btn {
    position: fixed;
    bottom: 99px;
    left: 50%;
    z-index: 6;
    transform: translate(-50%);
}

.sh-section.sh-is-after .sh-media.is-released,
.btsm-section.btsm-is-after .is-released.btsm-section__media-inner {
    position: relative !important;
}

.sh-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sh-media iframe {
    border: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

.sh-media__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: opacity .8s ease;
}

.sh-section.is-poster-hidden .sh-media__poster {
    opacity: 0;
    pointer-events: none;
}

.si-section {
    overflow: hidden;
    padding: 0;
}

.si-header {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 60px) clamp(30px, 3vw, 50px);
}

.si-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.si-viewport:active {
    cursor: grabbing;
}

.si-track {
    display: flex;
    align-items: stretch;
    will-change: transform;
}

.si-track.is-animated {
    transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}

.si-slide {
    flex: 0 0 auto;
    position: relative;
    border-radius: clamp(10px, 1vw, 16px);
    overflow: hidden;
    margin-right: clamp(8px, 1vw, 16px);
    height: clamp(420px, 50vw, 750px);
    cursor: pointer;
    transition: width 0.65s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.5s ease,
        filter 0.5s ease,
        transform 0.5s ease;
}

/* BG image */
.si-slide__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.si-slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}

.si-slide.is-active .si-slide__img {
    transform: scale(1.05);
}

/* Glass panel */


.si-slide.is-active .si-slide__glass {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.si-slide__del-label {
    font-size: 16px;
    margin: clamp(16px, 2vw, 28px) 0 6px;
}

.si-slide__del-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.si-slide__del-list li {
    font-size: 16px;
    padding: 2px 0 2px 14px;
    position: relative;
    line-height: 1.4;
}

.si-slide__del-list li::before {
    content: '-';
    position: absolute;
    left: 0;
}

.si-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.25);
    border-radius: inherit;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.si-slide.is-active::after {
    opacity: 0;
}

.si-viewport {
    overflow: hidden;
    padding: 0 5%;
}

/* Track starts from the left, no centering */
.si-viewport {
    overflow: hidden;
    width: 100%;
}

.si-track {
    display: flex;
    gap: 12px;
    /* must match GAP in JS */
    align-items: stretch;
    will-change: transform;
    cursor: grab;
    user-select: none;
}

.si-track.dragging {
    cursor: grabbing;
}

.si-slide {
    flex-shrink: 0;
    /* your height */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.si-slide.is-active {
    cursor: default;
}

.sm-wrap {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

/* ── Grid ── */
.sm-grid {
    display: flex;
    gap: clamp(12px, 1.5vw, 24px);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.sm-grid--full .sm-item {
    flex: 0 0 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.sm-grid--two .sm-item {
    flex: 1 1 calc(50% - 12px);
    max-width: 50%;
}

.sm-grid--three .sm-item {
    flex: 1 1 calc(33.33% - 16px);
    max-width: 33.33%;
}

.sm-grid--gallery .sm-item {
    flex: 1 1 auto;
}

/* ── Image ── */
.sm-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ── Video wrapper (16:9) ── */
.sm-video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.sm-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ── Thumbnail overlay ── */
.sm-video-thumb {
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.sm-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.sm-video-thumb__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.25s ease;
}

.sm-video-thumb:hover .sm-video-thumb__play {
    background: rgba(0, 0, 0, 0.4);
}

.sm-video-thumb__play svg {
    width: clamp(48px, 6vw, 80px);
    height: clamp(48px, 6vw, 80px);
    transition: transform 0.2s ease;
}

.sm-video-thumb:hover .sm-video-thumb__play svg {
    transform: scale(1.1);
}

.sm-video-thumb.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.ssn-section.ssn-unstuck {
    position: relative;
}

.ssn-wrap {
    max-width: 1920px;
    margin: 0 auto;
    padding: clamp(14px, 1.5vw, 20px) clamp(16px, 4vw, 60px);
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 85px;
}

.ssn-title {
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 40%;
    font-family: var(--hb-font-deck);
    font-size: clamp(16px, calc(16px + 8 * ((100vw - 678px) / 922)), 24px);
    flex: 0 0 40%;
}

.ssn-links {
    display: flex;
    gap: clamp(45px, calc(45px + 40 * ((100vw - 768px) / 832)), 85px);
    align-items: center;
    flex-wrap: wrap;
}

.ssn-link {
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
}

.ssn-link:hover,
.ssn-link.is-active {
    color: #ffffff;
}

.ssn-section.is-released {
    position: relative;
    transform: translateY(0);
}

.svo-section {
    position: relative;
    overflow: hidden;
    min-height: clamp(500px, 60vw, 900px);
    display: flex;
    align-items: center;
    z-index: 2;
}

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

.svo-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svo-bg iframe {
    border: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

.svo-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(56, 45, 56, 0.25);
    backdrop-filter: blur(30px) brightness(0.7);
    -webkit-backdrop-filter: blur(30px) brightness(0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.svo-content {
    position: relative;
    z-index: 2;
    max-width: 1920px;
    margin: 0 auto;
    padding: clamp(80px, 8vw, 160px) clamp(16px, 4vw, 60px) clamp(60px, 6vw, 90px);
    width: 100%;
}

.svo-eyebrow {
    color: rgba(255, 255, 255, 1);
    margin: 0 0 clamp(16px, 2vw, 30px);
    font-weight: 400;
}

.svo-body p {
    color: #ffffff;
    max-width: 850px;
    font-size: var(--hb-text-30);
    font-family: var(--hb-font-deck);
}

.svo-body {
    padding-bottom: clamp(50px, calc(50px + 50 * ((100vw - 768px) / 832)), 100px);
}

.svo-body p:last-child {
    margin-bottom: 0;
}

.svo-stats {
    display: flex;
    gap: clamp(30px, 5vw, 80px);
    margin-top: 45px;
    flex-wrap: wrap;
}

.svo-stat {
    flex: 1 0 auto;
}

.svo-stat__num {
    display: block;
    font-size: clamp(60px, calc(60px + 60 * ((100vw - 678px) / 922)), 120px);
    font-weight: 300;
    line-height: .9;
    color: #ffffff;
    font-family: var(--hb-font-serif-cn);
}

.svo-stat__text {
    display: block;
    font-weight: 300;
    line-height: 1.3;
    color: rgba(255, 255, 255, 1);
    margin-top: clamp(8px, 1vw, 16px);
    max-width: 350px;
    font-size: var(--hb-text-28);
    font-family: var(--hb-font-deck);
}

.svq-lb {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility 0s .35s;
}

.svq-lb.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity .35s;
}

.svq-lb__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .9);
}

.svq-lb__inner {
    position: relative;
    width: min(90vw, 1100px);
    aspect-ratio: 16/9;
}

.svq-lb__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    opacity: .7;
}

.svq-lb__close:hover {
    opacity: 1;
}

.svq-lb__video {
    width: 100%;
    height: 100%;
}

.svq-lb__video iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ══════════════════════════════════════
   Video Scale — Kettmeir clip-path
   with scroll lock (sticky)
   ══════════════════════════════════════ */

.vs-scroll-space {
    height: 200vh;
    position: relative;
}

.vs-section {
    position: sticky;
    top: 100px;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.vs-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.vs-media {
    position: relative;
    width: 100%;
    height: 70vh;
    max-height: 600px;
    cursor: pointer;
    clip-path: inset(8% 42% round 20px);
    will-change: clip-path;
    overflow: hidden;
    border-radius: 20px;
}

.vs-media__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 100% 20%;
}

/* Play button */
.vs-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: none;
    border-radius: 55px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    padding: 0;
    z-index: 2;
    transition: transform 0.2s;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.vs-play svg {
    width: 80px;
    height: 80px;
}

/* CTA */
.vs-cta {
    text-align: center;
}

.vs-cta__link {
    font-family: var(--hb-font, sans-serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--hb-text-dark, #0d201c);
    text-decoration: none;
    border-bottom: 1.5px solid var(--hb-text-dark, #0d201c);
    padding-bottom: 4px;
    transition: opacity 0.2s;
}

.vs-cta__link:hover {
    opacity: 0.6;
}

/* Lightbox */
.vs-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0s linear 0.35s;
}

.vs-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s;
}

.vs-lightbox__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
}

.vs-lightbox__inner {
    position: relative;
    width: min(90vw, 960px);
    aspect-ratio: 16 / 9;
}

.vs-lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.vs-lightbox__close:hover {
    opacity: 1;
}

.vs-lightbox__video {
    width: 100%;
    height: 100%;
}

.vs-lightbox__video iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}


.section-split-hero {
    padding:
        clamp(80px, calc(80px + (215 - 80) * ((100vw - 768px) / (1600 - 768))), 215px) clamp(20px, calc(20px + (80 - 20) * ((100vw - 768px) / (1600 - 768))), 80px);
}

.section-how-we-do-it {
    position: relative;
    overflow: hidden;
    padding: clamp(235px, calc(235px + 215 * ((100vw - 768px) / 832)), 450px) 0 clamp(135px, calc(135px + 100 * ((100vw - 768px) / 832)), 235px) 0;
   /* background: var(--hb-text-dark); */
}

.section-how-we-do-it .hwdi__label {
    font-family: var(--hb-font-display);
    font-size: var(--hb-text-48);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--hb-white);
    margin: 0;
    letter-spacing: 0.01em;
}

.light .section-how-we-do-it .hwdi__label,
.light .section-how-we-do-it .hwdi__desc {
    color: var(--hb-dark);
}

.section-how-we-do-it .hwdi__num {
    display: block;
    font-family: var(--hb-font-display);
    font-style: italic;
    font-size: 40px;
    color: #F6F8AC;
    margin-bottom: 10px;
    line-height: 1;
    font-weight: 900;
}

.section-how-we-do-it .hwdi__top-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: clamp(120px, calc(120px + (355 - 120) * ((100vw - 768px) / (1600 - 768))), 355px);
    background: linear-gradient(to bottom, var(--hb-light) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* ── Decorative words ───────────────── */


.section-how-we-do-it .hwdi__deco--left {
    left: clamp(20px, 3vw, 48px);
}

.section-how-we-do-it .hwdi__deco--right {
    right: clamp(20px, 3vw, 48px);
}

.hwdi__track::after {
    filter: url(#hwdi-chalk);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

/* ── Inner content ───────────────── */
.section-how-we-do-it .hwdi__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: clamp(60px, 8vw, 120px);
    padding-inline: clamp(24px, 3.8vw, 200px);
}

/* Description */
.section-how-we-do-it .hwdi__desc {
    max-width: 800px;
    text-align: center;
    font-family: var(--hb-font-serif);
    font-size: var(--hb-text-30);
    line-height: 1.6;
    color: #fff;
    margin: 0;
    opacity: 0;
     transform: translateY(20px);

}

.section-how-we-do-it .hwdi__desc.is-visible {
    opacity: 1;
    transform: translateY(0);
}
a.smooth_link {
    text-decoration: none;
}
.section-how-we-do-it .hwdi__cols {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

/* Left and right columns — shrink to content width */
.section-how-we-do-it .hwdi__col--left,
.section-how-we-do-it .hwdi__col--right {
    flex: 0 0 auto;
}

/* Centre column — takes all remaining space */
.section-how-we-do-it .hwdi__col--center {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    padding-inline: clamp(16px, 3vw, 48px);
}

.section-how-we-do-it .hwdi__cols h2 {
    color: var(--dark-green);
}

/* ── Timeline ───────────────── */
.section-how-we-do-it .hwdi__timeline {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-inline: clamp(24px, 4vw, 72px);
    margin-top: clamp(80px, 12vw, 180px);
}

/* Track */
.section-how-we-do-it .hwdi__track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--hwdi-cols, 4), 1fr);
    /* fallback */
    padding-bottom: 32px;
}

/* Line animation */
.section-how-we-do-it .hwdi__track::after {
    content: '';
    position: absolute;
    left: -50px;
    width: 0;
    height: 19px;
    transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    background: url(/wp-content/uploads/2026/04/line-full.png) no-repeat bottom;
    bottom: -12px;
    background-size: 100%;
}

.section-how-we-do-it .hwdi__track.is-visible::after {
    width: 100%;
}

/* Items */
.section-how-we-do-it .hwdi__item {
    position: relative;
    padding-right: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.section-how-we-do-it .hwdi__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tick line */
.section-how-we-do-it .hwdi__item::after {
    content: '';
    position: absolute;
    bottom: -32px;
    left: 0;
    width: 18px;
    height: 100%;
    transition: height 0.4s ease 0.9s;
}

.section-how-we-do-it .hwdi__item:first-child::after {
    background: url(/wp-content/uploads/2026/04/line-1.png) no-repeat bottom;
    bottom: -45px;
    background-size: contain;
    height: 60px;
}

.section-how-we-do-it .hwdi__item:nth-child(2)::after {
    background: url(/wp-content/uploads/2026/04/line-2.png) no-repeat bottom;
    bottom: -50px;
    background-size: contain;
    width: 12px;
    height: 80px;
}

.section-how-we-do-it .hwdi__item:nth-child(3)::after {
    background: url(/wp-content/uploads/2026/04/line-3.png) no-repeat bottom;
    bottom: -52px;
    background-size: contain;
    width: 18px;
    height: 99px;
}

.section-how-we-do-it .hwdi__item:last-child::after {
    background: url(/wp-content/uploads/2026/04/line-4.png) no-repeat bottom;
    bottom: -52px;
    background-size: contain;
    width: 19px;
    height: 85px;
}

/*
.section-how-we-do-it .hwdi__item.is-visible::after {
    height: 76px;
}*/

/* ── Decorative animations ───────────────── */
.section-how-we-do-it .hwdi__deco--left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.section-how-we-do-it .hwdi__deco--right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.section-how-we-do-it .hwdi__deco.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.hwdi__chalk-svg {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

/* ── Timeline outer wrapper ──────────────────────────────────────────── */


/* ── Track ───────────────────────────────────────────────────────────── */
.hwdi__track {
    position: relative;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0 0 56px 0;
}

/* ── Horizontal chalk line ───────────────────────────────────────────── */
.hwdi__track::after {
    content: '';
    position: absolute;
    bottom: 28px;
    left: -1%;
    width: 102%;
    height: 3px;
    background: var(--hb-accent);
    border-radius: 2px;
    filter: url(#hwdi-chalk);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.hwdi__track.is-visible::after {
    transform: scaleX(1);
}

/* ── Individual items ────────────────────────────────────────────────── */
.hwdi__item {
    flex: 1;
    position: relative;
    padding-right: 12px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hwdi__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ── Tick marks ──────────────────────────────────────────────────────── */
.hwdi__tick {
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 3px;
    height: 48px;
    background: var(--hb-accent);
    border-radius: 1px;
    filter: url(#hwdi-chalk);
    transform: scaleY(0);
    transform-origin: center center;
    transition: transform 0.35s ease 1.05s;
}

.hwdi__item.is-visible .hwdi__tick {
    transform: scaleY(1);
}

/* Stagger tick delay */


/* ── Number ───────────────────────────────────────────────────────────── */
.hwdi__num {
    display: block;
    font-family: var(--hb-font-display);
    font-style: italic;
    font-size: clamp(18px, 1.6vw, 28px);
    font-weight: 700;
    color: var(--hb-accent);
    line-height: 1;
    margin-bottom: 10px;
}

/* ── Label ────────────────────────────────────────────────────────────── */
.hwdi__label {
    font-family: var(--hb-font-display);
    font-size: clamp(20px, calc(1.5vw + 8px), 48px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--hb-white);
    margin: 0;
}

/* ── Stepped content heights ─────────────────────────────────────────────
   Item 1 = baseline. Each subsequent item shifts content up by 40px more.
   .hwdi__tick is position:absolute so it stays on the line regardless.
────────────────────────────────────────────────────────────────────────── */
.hwdi__item:first-child .hwdi__num,
.hwdi__item:first-child .hwdi__label {
    transform: translateY(-60px);
}

.hwdi__item:nth-child(2) .hwdi__num,
.hwdi__item:nth-child(2) .hwdi__label {
    transform: translateY(-80px);
}

.hwdi__item:nth-child(3) .hwdi__num,
.hwdi__item:nth-child(3) .hwdi__label {
    transform: translateY(-100px);
}

.hwdi__item:nth-child(4) .hwdi__num,
.hwdi__item:nth-child(4) .hwdi__label {
    transform: translateY(-120px);
}

/* If you have 5+ items, continue the pattern: -160px, -200px etc. */
.hwdi__item:nth-child(5) .hwdi__num,
.hwdi__item:nth-child(5) .hwdi__label {
    transform: translateY(-140px);
}



.section-split-hero {
    position: relative;

    overflow: hidden;
    min-height: clamp(560px, 90vh, 960px);
}

/* ── 3-column grid ───────────────────────────────────────────────────────── */
.section-split-hero .sh-grid {
    display: grid;
    grid-template-columns: 22fr 50fr 28fr;
    min-height: inherit;
    align-items: stretch;
}

/* ─────────────────────────────────────────────────────────────────────────
   MEDIA PANELS
───────────────────────────────────────────────────────────────────────── */
.section-split-hero .sh-media {
    position: relative;
    overflow: hidden;

}

.section-split-hero .sh-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 10px;
    ;
}

.section-split-hero .sh-media-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.78%;
    height: 100%;
    min-width: 100%;
    min-height: 56.25%;
    border: none;
    pointer-events: none;
}

/* Left fade */
.section-split-hero .sh-media--left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, transparent, <?php echo esc_attr($bg); ?>);
    pointer-events: none;
    z-index: 1;
}

/* Right fade */
.section-split-hero .sh-media--right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(to left, transparent, <?php echo esc_attr($bg); ?>);
    pointer-events: none;
    z-index: 1;
}

/* Animation */
.section-split-hero .sh-media {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.section-split-hero .sh-media--left.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.section-split-hero .sh-media--right.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

/* ─────────────────────────────────────────────────────────────────────────
   CONTENT
───────────────────────────────────────────────────────────────────────── */
.section-split-hero .sh-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(60px, 8vw, 120px) clamp(24px, 3vw, 48px);
    position: relative;
    z-index: 2;
}

/* Heading */
.section-split-hero .sh-heading {
    font-family: var(--hb-font-display);
    font-size: clamp(52px, calc(5vw + 20px), 120px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: var(--hb-dark);
    margin: 0;
    transform: translateY(55%);
    opacity: 0;
    transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
        opacity 0.5s ease 0.1s;
}

.section-split-hero .sh-heading.is-visible {
    transform: translateY(0);
    opacity: 1;
}

/* Body */
.section-split-hero .sh-body {
    margin-top: clamp(32px, 4vw, 56px);
    max-width: 520px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

.section-split-hero .sh-body.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-split-hero .sh-body p {
    font-family: var(--hb-font);
    line-height: 1.72;
    color: var(--hb-text-dark);
    margin: 0 0 1.1em;
}

.section-split-hero .sh-body p:last-child {
    margin-bottom: 0;
}

/* CTA */
.section-split-hero .sh-cta {
    display: inline-flex;
    align-self: flex-start;
    margin-top: clamp(24px, 3vw, 40px);
    border: 1.5px solid rgba(12, 33, 31, 0.65);
    border-radius: 100px;
    padding: 12px 32px;
    font-family: var(--hb-font);
    font-size: 15px;
    font-weight: 500;
    color: var(--hb-dark);
    text-decoration: none;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease 0.65s, transform 0.6s ease 0.65s,
        background 0.22s, color 0.22s, border-color 0.22s;
}

.section-split-hero .sh-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-split-hero .sh-cta:hover {
    background: var(--hb-dark);
    color: var(--hb-light);
    border-color: var(--hb-dark);
}

/* Stage text */
.sd-title-stage {
    position: relative;
    height: 1.1em;
    font-family: var(--hb-font-display);
    font-size: var(--hb-text-140);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--hb-text-dark);
    line-height: 1;
}

.sd-final,
.sd-ghost {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
}

.sd-ghost[data-layer="1"] {
    opacity: .48;
    transform: translateY(-55px);
}

.sd-ghost[data-layer="2"] {
    opacity: .25;
    transform: translateY(-110px);
}

.sd-ghost[data-layer="3"] {
    opacity: .12;
    transform: translateY(-165px);
}

.sd-final {
    opacity: 1;
}


.section-split-hero .cq-inner-cq-section {
    height: 100% !important;
    align-items: stretch !important;
}



/* Parent div - needs explicit height, not just min-height */
.section-split-hero .cq-col--left,
.section-split-hero .cq-col--right {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 10px !important;
    padding: 0 !important;
    will-change: transform;
    transition: transform 0.1s linear;
    flex-basis: clamp(180px, 23.5%, 330px);
    width: clamp(180px, 23.5%, 330px);
    
    /* KEY: aspect-ratio instead of fixed height */
    aspect-ratio: 9 / 16;      /* portrait ratio — adjust to match your video */
    height: auto !important;   /* let aspect-ratio drive height */
    min-height: unset !important;
}

.section-split-hero .cq-col--left iframe.sh-media-video,
.section-split-hero .cq-col--right iframe.sh-media-video,
.section-split-hero .sh-media--left iframe.sh-media-video,
.section-split-hero .sh-media--right iframe.sh-media-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    border: none !important;
    border-radius: 10px !important;
    pointer-events: none !important;
}


/* ── Images fill their column ────────────────────────────────────────────── */
.section-split-hero .cq-col--left img,
.section-split-hero .cq-col--right img,
.section-split-hero .sh-media--left img,
.section-split-hero .sh-media--right img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.section-split-hero #hero {
	/*overflow: hidden;*/
	position: relative;
	text-align: center;
   
}
 
.section-split-hero .row {
    overflow: hidden;
    position: relative;
}

.section-split-hero .txt {
    display: block;
    white-space: nowrap;
    font-size: var(--hb-text-160);
    line-height: 1;
    color: var(--hb-dark);
    font-family: var(--hb-font-display);
    will-change: transform;
    transition: transform 0.08s linear;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-split-hero .row-clipped .txt {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%);
}

.section-split-hero .row0 {
    height: 25px;
    margin-bottom: 5px;
}

.section-split-hero .row1 {
    height: 29px;
    margin-bottom: 5px;
}

.section-split-hero .row2 {
    height: 43px;
    margin-bottom: 5px;
}

.section-split-hero .row3 {
    height: auto;
      
}


/* ── Flex container ── */
.section-split-hero .cq-inner {
    display: flex;
    align-items: stretch;
    width: 100%;

}

/* ── Shared col base ── */
.section-split-hero .cq-col {
    flex-shrink: 1;
    flex-grow: 0;
}

/* ── Left: 330px → ~23.5% of 1400px container ── */
/*.section-split-hero .cq-col--left {
    flex-basis: clamp(180px, 23.5%, 330px);
    width: clamp(180px, 23.5%, 330px);
    border-radius: 10px;
    position: relative !important;
    overflow: hidden !important;
    min-height: 318px;
    padding: 0 !important;
    will-change: transform;
    transition: transform 0.1s linear;
    
    height: clamp(318px, 30vw, 450px); 
}
*/
/* ── Center: takes all remaining space ── */
.section-split-hero .cq-col--center {
    flex: 1 1 0%;
    max-width: unset;

}

/* ── Right: 450px → ~32% of 1400px container ── */
.section-split-hero .cq-col--right {
    flex-basis: clamp(220px, 32%, 450px);
    width: clamp(220px, 32%, 450px);
    margin-left: -10%;
    z-index: -1;
    border-radius: 10px;
}

/* ─── Scoped to this section ────────────────────────────────────────────── */


/* ── Each row ────────────────────────────────────────────────────────────── */
.section-service-video .sv-row {
    display: grid;
    grid-template-columns: 55fr 45fr;
    min-height: clamp(560px, 75vh, 900px);
    padding: 50px 0;
}

.section-service-video {
    padding: clamp(80px, calc(80px + (200 - 80) * ((100vw - 768px) / (1600 - 768))), 200px) 0;
}
.section-split-hero .cq-col--left {
    flex: 0 0 20%;
    width: 20%;
    position: absolute !important;
    left: 0;
}
.section-split-hero .cq-col--center {
    flex: 0 0 50%;
    margin: 0 auto;
}
.section-split-hero .cq-col--right {
    flex: 0 0 25%;
    width: 25%;
   
}
/* ─────────────────────────────────────────────────────
   LEFT: Content panel
───────────────────────────────────────────────────── */
.section-service-video .sv-content {
    padding: clamp(52px, 6vw, 96px) clamp(32px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.light .sv-content p {
    color: var(--hb-text-dark);
}

.sv-content p {
    color: var(--hb-light);
}

/* Number oval ─────────── */
.section-service-video .sv-num-wrap {
    position: relative;
    width: clamp(90px, 10vw, 141px);
    height: clamp(75px, 8vw, 119px);
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    left: -50px;
    bottom: -50px;
}

.sv-num-wrap:before {
    position: absolute;
    content: "";
    background-image: url(/wp-content/uploads/2026/04/circle.svg);
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.section-service-video .sv-num-wrap.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.sv-num-wrap svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.section-service-video .sv-num-digit {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hb-font-display);
    font-style: italic;
    font-size: 57px;
    font-weight: 900;
    color: var(--dark-green);
    line-height: 1;
}

/* Title ─────────── */
.section-service-video .sv-title {
    font-family: var(--hb-font-display);
    font-size: clamp(32px, calc(2.4vw + 16px), 60px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--hb-light);
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.12s, transform 0.6s ease 0.12s;
}

.light .section-service-video .sv-title {
    color: var(--hb-dark);
}

.section-service-video .sv-title.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Description ─────────── */
.section-service-video .sv-desc {
    font-family: var(--hb-font);
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.7;
    margin: 0;
    max-width: 640px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.22s, transform 0.6s ease 0.22s;
}

.section-service-video .sv-desc.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-service-video .sv-desc p {
    margin: 0 0 0.75em;
}

.section-service-video .sv-desc p:last-child {
    margin-bottom: 0;
}

/* 2-col service list ─────────── */
.section-service-video .sv-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease 0.32s, transform 0.6s ease 0.32s;
}

.section-service-video .sv-services.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-service-video .sv-services li {
    color: var(--hb-light);
    line-height: 1.45;
}

.light .section-service-video .sv-services li {
    color: rgba(12, 33, 31, 0.5);
}

/* CTA pill button ─────────── */
.section-service-video .sv-cta {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    border: 1.5px solid var(--hb-light);
    border-radius: 100px;
    padding: 12px 32px;
    font-family: var(--hb-font);
    font-size: 15px;
    font-weight: 500;
    color: var(--hb-light);
    text-decoration: none;
    margin-top: 4px;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
    opacity: 0;
    transform: translateY(14px);
    transition-property: opacity, transform, background, color, border-color;
    transition-duration: 0.6s, 0.6s, 0.22s, 0.22s, 0.22s;
    transition-delay: 0.42s, 0.42s, 0s, 0s, 0s;
}

.light .section-service-video .sv-cta {
    border: 1.5px solid rgba(12, 33, 31, 0.70);
    color: var(--hb-dark);
}

.section-service-video .sv-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-service-video .sv-cta:hover {
    background: var(--hb-dark);
    color: var(--hb-light);
    border-color: var(--hb-dark);
}

/* ─────────────────────────────────────────────────────
   RIGHT: Video panel
───────────────────────────────────────────────────── */
.section-service-video .sv-video-wrap {
	position: relative;
	overflow: hidden;
	background: var(--hb-dark);
	border-radius: 12px;
	opacity: 0;
	 transform: translateY(50px);
     transition-property: opacity, transform, background, color, border-color;
    transition-duration: 0.6s, 0.6s, 0.22s, 0.22s, 0.22s;
    transition-delay: 0.42s, 0.42s, 0s, 0s, 0s;
}
.section-service-video .sv-video-wrap.is-visible {
    opacity: 1;
    transform: translateY(0);
     transition-property: opacity, transform, background, color, border-color;
    transition-duration: 0.6s, 0.6s, 0.22s, 0.22s, 0.22s;
    transition-delay: 0.42s, 0.42s, 0s, 0s, 0s;
}
/* Autoplay background iframe — oversized to remove letterbox */
.section-service-video .sv-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 16:9 → fill parent which could be any ratio */
    width: 177.78%;
    /* 16/9 * 100% */
    height: 100%;
    min-width: 100%;
    min-height: 56.25%;
    /* 9/16 * 100% */
    border: none;
    pointer-events: none;
}

/* Fallback poster */
.section-service-video .sv-video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Subtle darkening gradient — helps quote read clearly */
.section-service-video .sv-video-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.06) 0%,
            rgba(0, 0, 0, 0.10) 50%,
            rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Play button — semi-transparent grey circle */
.section-service-video .sv-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    border-radius: 50%;
    border: none;
    background: rgba(120, 120, 120, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s ease, transform 0.22s ease;
    width: clamp(50px, calc(50px + 50 * ((100vw - 768px) / 832)), 100px);
    height: clamp(50px, calc(50px + 50 * ((100vw - 768px) / 832)), 100px);
}

.section-service-video .sv-play:hover {
    background: rgba(140, 140, 140, 0.70);
    transform: translate(-50%, -50%) scale(1.10);
}

.section-service-video .sv-play svg {
    fill: #fff;
    margin-left: 4px;
    width: clamp(22px, calc(22px + 46 * ((100vw - 768px) / 832)), 68px);
    height: clamp(22px, calc(22px + 30 * ((100vw - 768px) / 832)), 52px);
}

/* Quote overlay — frosted glass at bottom */
.section-service-video .sv-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: clamp(25px, calc(25px + 45 * ((100vw - 768px) / 832)), 70px);
    background: rgba(100, 110, 108, 0.60);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    margin: 0;
    border-radius: 12px;
}

.section-service-video .sv-quote__text {
    font-family: var(--hb-font-deck);
    font-size: var(--hb-text-30);
    line-height: 1.45;
    color: #fff;
    margin: 0 0 18px;
    max-width: 605px;
}

.section-service-video .sv-quote__author,
.section-service-video .sv-quote__role {
    font-size: var(--hb-text-16);
    color: #fff;
    margin: 0;
    font-style: normal;
}

.bts-section__media {
    width: 100%;
    left: 0;
    right: 0;
}

.bts-section {
    overflow: hidden;
    /* prevent any bleed during animation */
}

.phs-section {
    padding: 
        clamp(80px, calc(41.47vw - 238.5px), 425px)
       0
        clamp(50px, calc(6.01vw + 3.85px), 100px)
        0;
}

.phs-section .phs-intro {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    max-width: 782px;
    gap: 30px;
    padding-left: clamp(20px, calc(22.84vw - 155.3px), 210px);
}

.phs-section .phs-content_wrap {
    display: flex;
    gap: 48px;
    align-items: center;
    min-height: 430px;
}

.phs-section .phs-num_wrap {
	display: flex;
	align-items: center;
	position: relative;
	top: -160px;
    left:20px;
}

.phs-section .phs-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 62%;
    gap: clamp(24px, 4vw, 48px);
}

.phs-section .phs-step__media {
    position: relative;
    flex: 0 0 55%;
    border-radius: 12px;
    overflow: hidden;
}

.phs-section .phs-step__media img {
    width: 100%;
    height: clamp(300px, calc(300px + (330 * (100vw - 768px) / 832)), 630px);
    max-height: 630px;
    object-fit: cover;
    display: block;
    border: 0;
    overflow: hidden;
}

.phs-section .phs-step__content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.phs-section .phs-step__overlay-text {
    position: absolute;
    display: flex;
    align-items: flex-end;
    padding: 0px 65px 0;
    font-family: var(--hb-font-display);
    font-size: var(--hb-text-86);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    letter-spacing: 0.86px;
    bottom: 0;
}
.phs-step__title {
    font-family: var(--hb-font-serif);
    font-size: var(--hb-text-48);
    font-weight: 400;
    color: var(--phs-title);
    margin: 0;
    line-height: 1.15;
}

.phs-sticky-wrap {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* cards centred vertically */
    overflow: hidden;
}

.phs-track {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(48px, calc(48px + (127 - 48) * ((100vw - 768px) / (1600 - 768))), 127px);
    padding-right: clamp(32px, 6vw, 100px);
    flex-shrink: 0;
    padding-top:130px;
}
.phs-dot-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-shrink: 0;
    padding: clamp(20px, 2.5vh, 36px) clamp(32px, 6vw, 100px);
    min-width: max-content;
    will-change: transform;
}

.phs-dot-line {
    flex: 0 0 var(--phs-panel-w); /* same width as a card panel — lines up dot under next card */
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.phs-section > .phs-bottom-pad {
    height: clamp(80px, 10vh, 140px);
}
.phs-step {
    flex: 0 0 85vw; 
}
.space {
    display: block;
    height: 25px;
    background-color: var(--hb-light);
    z-index: 2;
    position: relative;
}
.phs-step-dot {
    width: 141px;
    height: 119px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hb-font-display);
    font-style: italic;
    font-size: clamp(28px, 4vw, 57px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.phs-step-dot::before {
	position: absolute;
	content: "";
	background-image: url(/wp-content/uploads/2026/04/white_round.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: clamp(60px, 9vw, 142px);
	height: clamp(50px, 7.5vw, 119px);
}

.phs-progress-line {
    height: 3px;
    margin: 0 -1px;
}

.phs-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    pointer-events: none;
    z-index: 10;
    justify-content: space-between;
}

.hb-header {
    transition: transform 0.3s ease-in-out;
}

.hb-header.header--hidden { 
    transform: translateY(-100%);
}
body.single-post .hb-header.header--visible {
    position: sticky;
    background-color: var(--hb-dark);
    transition: transform 0.3s ease-in-out;
}
.ssn-section {
    transition: top 0.3s ease-in-out;
    /* smooth shift with header */
}

.ssn-section.ssn--no-header {
    top: 0 !important;
}

/* ── Backdrop ── */
.tm-popup,
.vs-lightbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-popup__bg,
.vc-lightbox__bg {
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: opacity 0.35s ease, backdrop-filter 0.35s ease;
}

.tm-popup.is-open .tm-popup__bg,
.vc-lightbox.is-open .vc-lightbox__bg {
    opacity: 1;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* ── Team Popup — Scale In ── */
.tm-popup__box {
    opacity: 0;
    transform: scale(0.5);
    transform-origin: center center;
    transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, opacity;
}

.tm-popup.is-open .tm-popup__box {
    opacity: 1;
    transform: scale(1);
}

/* ── Close Button ── */
.tm-popup__x,
.vs-lightbox__x {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.tm-popup__x:hover,
.vs-lightbox__x:hover {
    transform: rotate(90deg) scale(1.1);
    opacity: 0.7;
}

/* ── Video Lightbox — Slide Zoom from Left ── */
/* ── Both Video Lightboxes — Slide Zoom from Left ── */
.vc-lightbox,
.vs-lightbox {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.vc-lightbox.is-open,
.vs-lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}

.vc-lightbox__inner,
.vs-lightbox__inner {
    opacity: 0;
    transform: translateX(-120px) scale(0.75);
    transform-origin: left center;
    transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, opacity;
}

.vc-lightbox.is-open .vc-lightbox__inner,
.vs-lightbox.is-open .vs-lightbox__inner {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Video fade in after box animation */
.vc-lightbox__inner iframe,
.vc-lightbox__inner video,
.vs-lightbox__inner iframe,
.vs-lightbox__inner video {
    opacity: 0;
    transition: opacity 0.4s ease 0.4s;
}

.vc-lightbox.is-open .vc-lightbox__inner iframe,
.vc-lightbox.is-open .vc-lightbox__inner video,
.vs-lightbox.is-open .vs-lightbox__inner iframe,
.vs-lightbox.is-open .vs-lightbox__inner video {
    opacity: 1;
}

/* ── Team Popup — Scale In ── */
.tm-popup__box {
    opacity: 0;
    transform: scale(0.5);
    transform-origin: center center;
    transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, opacity;
}

.tm-popup.is-open .tm-popup__box {
    opacity: 1;
    transform: scale(1);
}

/* ── Close Buttons ── */
.tm-popup__x,
.vc-lightbox__close,
.vs-lightbox__close {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.tm-popup__x:hover,
.vc-lightbox__close:hover,
.vs-lightbox__close:hover {
    transform: rotate(90deg) scale(1.1);
    opacity: 0.7;
}

video {
    border-radius: 12px;
}


/* Hide native select - high specificity with !important */
.gl-section .gl-filter-wrap select,
#gl-section .gl-filter-wrap select {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    border: none !important;
    z-index: -1 !important;
}

.gl-custom-select {
    position: relative;
    width: 100%;
    z-index: 10;
}

.gl-custom-select__selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(50, 50, 50, 0.15);
    border-radius: 999px;
    color: #ffffff;
    font-size: var(--hb-text-16);
    font-family: var(--hb-font);
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s ease;
    user-select: none;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.gl-custom-select__selected:hover {
    background: #b0afab;
}

.gl-custom-select__selected.is-open {
    border-radius: 16px 16px 0 0;
}

.gl-custom-select__arrow {
    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.gl-custom-select__arrow::after {
    content: '+';
    display: block;
    width: auto;
    height: auto;
    border: none;
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
    transition: none;
}

.gl-custom-select__selected.is-open .gl-custom-select__arrow::after {
    content: '−';
}

.gl-custom-select__options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(50, 50, 50, 0.75);
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.3s ease;
    z-index: 9999;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.gl-custom-select__options.is-open {
    max-height: 300px;
    opacity: 1;
}

.gl-custom-select__option {
    padding: 13px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-family: var(--hb-font);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.gl-custom-select__option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding-left: 28px;
}

.gl-custom-select__option.is-active {
    color: #ffffff;
    font-weight: 600;
}

.gl-custom-select {
    position: relative;
    width: 100%;
    z-index: 1;
}

.gl-custom-select.is-active {
    z-index: 100;
}

.gl-custom-select__options {
    z-index: 9999;
}


.ps-section {
    padding:
    clamp(75px, calc(75px + (125 * (100vw - 768px) / 832)), 200px) /* top */
    20px
    clamp(75px, calc(75px + (85 * (100vw - 768px) / 832)), 160px)  /* bottom */
    20px;
    background: linear-gradient(to right, rgba(56, 45, 56, 0.6), rgba(56, 45, 56, 0.25), rgba(56, 45, 56, 0.6));
    backdrop-filter: blur(40px);
    margin: 0 20px;
    border-radius: 12px;
    z-index: 2;
    position: relative;
}

/* Inner wrapper */
.ps-section .ps-section__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1410px;
    gap: 45px;
}

/* Eyebrow */
.ps-section .ps-section__eyebrow {
    color: #fff;
    max-width: 600px;
}

/* Steps row */
.ps-section .ps-section__steps {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0 16px;
    width: 100%;
}

/* Single step */
.ps-section .ps-section__step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(15px, calc(15px + 30 * ((100vw - 768px) / 832)), 45px);
    padding: 20px 0;
    position: relative;
}

.ps-section .ps-section__step-label {
    position: relative;
}

.ps-section .ps-section__step-label::before {
    position: absolute;
    content: "";
    background-image: url(/wp-content/uploads/2026/04/ps_arrow_left.png);
    background-repeat: no-repeat;
    top: 50%;
    transform: translate(0%, -50%);
    left: calc(100% + 40px);
    width: clamp(40px, calc(40px + 32 * ((100vw - 768px) / 832)), 72px);
    aspect-ratio: 72 / 32;
    background-size: contain;
}

.ps-section .ps-section__step:last-child .ps-section__step-label::before {
    display: none;
}

.ps-section .ps-section__step-label {
    text-transform: uppercase;
}

.ps-section .ps-section__step-desc {
    max-width: 300px;
}


/* CTA area */
.ps-section .ps-section__cta {
    display: flex;
    justify-content: center;
}

.phs-section {
    position: relative;
    color: #fff;
    font-family: var(--hb-font);
    z-index: 2;
    background: transparent linear-gradient(180deg, #2D4E45 0%, #0C211F 100%) 0% 0% no-repeat padding-box;
}


.rg-item__body {
    font-family: var(--hb-font-serif, Georgia, serif);
    font-size: var(--hb-text-36);
    line-height: 1.3;
    color: var(--hb-text-light);
    margin: 0;
    font-weight: 400;
    max-width: 280px;
}

.light .rg-item__body {color: var(--hb-text-dark);}

.rg-intro {
    padding: 0 clamp(24px, 6vw, 100px);
    margin-bottom: 0;
    line-height: 1.65;
    color: var(--hb-text-light);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s cubic-bezier(.16,1,.3,1) 0.2s;
}

.light .rg-intro {
    color: var(--hb-text-dark);
}

.rg-bottom-bar__label {
    color: var(--hb-text-light);
    
}

.light .rg-bottom-bar__label {
  color: var(--hb-text-dark);
    
}

.rg-cta .hb-btn--outline-light {
    background: transparent;
    color: var(--hb-text-light);
    border-color: rgba(255, 255, 255, 1);
}

.rg-cta .hb-btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.65);
}

.light .rg-cta .hb-btn--outline-light {
    background: transparent;
    color: var(--hb-text-dark);
    border-color: var(--hb-text-dark);;
}
.btsm-section .is-released  .hb-btn {
	position: relative;

}
 .process_partnership_section .prt-col--center {
    max-width: 792px;
    justify-content: center;
}
.page-id-17 {
    overflow-x: hidden;
}

.c4-section-top {
    position: relative;
    overflow: visible;
   /* height: 100vh; */
    z-index: 1;
}

.c4-badge-img {
    z-index: 2;
    position: relative;
    width: 317px;
    height: 317px;
}
.c4-circle__sublabel {
    z-index: 1;
    position: relative;
    display: block;
    text-align: center;
}
.c4-intro {
    position: relative;
    z-index: 10;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3vw, 60px);
    transition: opacity 0.3s ease;
    max-width: 1300px;
    margin: 0 auto;
}

.c4-intro.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.c4-intro__left, .c4-intro__right {
    color: var(--dark-green, #2d4e45);
    line-height: 0.95;
    text-transform: uppercase;
    max-width: unset;
}
.c4-intro__right {
  text-align: right;
}
.c4-intro__circle {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.c4-circle__bg {
    inset: 0;
    border-radius: 50%;
    z-index: 1;
    background-color: var(--hb-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
  transform: scale(1);
  transform-origin: center;
}
.svg-c4-badge-img {
    position: absolute;
    width: 317px;
    height: 317px;
    transform: scale(1);
    transform-origin: center center;
    will-change: width, height;
    z-index: 1;
}
.c4-circle__bg.fade-out {
  opacity: 0;
} 
.c4-circle__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  transition: opacity 0.3s ease;
  font-weight:500;
}
.c4-circle__bg.grow ~ .c4-circle__label {
  opacity: 0;
}
.c4-intro__right {
    text-align: right;
    position: relative;
    top: 190px;
}
.c4-section-bottom  {
display: none !important;
}
.c4-section-top,
.c4-section-mid,
.c4-section-bottom {
  position: relative;
  transition: opacity 0.5s ease;
}
.c4-section-mid {
    padding-bottom: 80px;
}
/* ONLY hide when NOT visible */
/*.c4-section-top:not(.is-visible),
.c4-section-mid:not(.is-visible),
.c4-section-bottom:not(.is-visible) {
  opacity: 0;
  visibility: hidden;
} */
.c4-section-top {
    height: 100vh;
   
}
.core_sticky {
    position: sticky;
    top: calc(50vh - 200px);
}
.c4-section-top, 
.c4-section-mid 
{
    opacity: 1;
  visibility: visible;
}
.c4-section-top.is-visible,
.c4-section-mid.is-visible,
.c4-section-bottom.is-visible {
  opacity: 1;
  visibility: visible;
}

.c4-expanded {
    position: relative;
    z-index: 5;
    border-radius: 50% / 600px;
    width: 120%;
    margin: 0 auto;
    left: -10%;
    padding: 225px 20% 250px;
    background: var(--hb-dark);

}
.c4-expanded__inner {
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
	color: #fff;
	opacity: 1;
	transition: opacity 0.4s ease 0.1s;
	padding: 35px 0 50px;
}

.c4-expanded__inner.is-visible {
  opacity: 1;
}

.c4-expanded__header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: clamp(16px, 3vw, 40px);
	margin-bottom: clamp(50px, 8vw, 110px);
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}

.c4-expanded__heading {
  flex: 1 1 280px;
}
.c4-expanded__heading span {
	display: block;
	font-size: clamp(38px, calc(6.48vw - 11.7px), 72px);
}
.c4-expanded__body {
  flex: 1 1 320px;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: 0.85;
}


.c4-expanded__body p:last-child { margin-bottom: 0; }

.c4-cards-wrap {
  position: relative;
  width: 100%;
}

.c4-cards {
  display: flex;
  flex-wrap: wrap;
 gap: clamp(15px, 3vw, 50px) clamp(20px, 5vw, 80px);
}

.c4-card {
	flex: 1 1 calc(50% - (clamp(20px, 5vw, 80px) / 2));
	position: relative;
	border-radius: clamp(8px, 1vw, 16px);
	overflow: hidden;
	aspect-ratio: 16 / 10;
	min-height: 570px;
}
.c4-card.c4-card--has-video {
    min-height: 570px;
}
.c4-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease 0s;
}
.c4-card__img:hover {
    transform: scale(1.1);
    transition: all 0.5s ease 0s;
}
.c4-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(15px, 2vw, 25px) clamp(15px, 2vw, 25px) clamp(15px, 2vw, 25px) clamp(15px, 5vw, 55px);
	max-width: 270px;
	margin-top: -40px;
    
}
.c4-card--has-video .c4-card__overlay {
    max-width: 100%;
}
.c4-card--has-video .c4-card__title {
    max-width: 200px;
    margin-left: auto;
}
.c4-card:nth-child(2n + 1 ) .c4-card--has-video .c4-card__overlay {
    margin-left: auto;
    max-width: 100%;
    text-align: left;
}
.c4-card--has-video:nth-child(2n + 2) .c4-card__overlay .c4-card__title {
    margin-left: 0;
}
.c4-card:nth-child(2n + 1 ) .c4-card__overlay {
    margin-left: auto;
}
.c4-card__title {
    transition: all 0.4s ease 0s;
}
.c4-card__title:hover {
    color: #000;
    transition: all 0.4s ease 0s;
}
.landing_core4 .c4-card:nth-child(2n + 1) .c4-card__overlay {
    margin-left: auto;
    background: linear-gradient(
  288deg,
  rgba(45, 78, 69, 0) 0%,
  rgba(45, 78, 69, 0.02) 50%,
  rgba(45, 78, 69, 1) 100%
);
}

.c4-ring-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(250px, calc(250px + 645 * ((100vw - 768px) / 832)), 895px);
height: clamp(250px, calc(250px + 645 * ((100vw - 768px) / 832)), 895px);
    pointer-events: none;
    z-index: -1;
}

.c4-card__num {
  font-family: var(--hb-font-display, sans-serif);
  font-size: 40px;
  font-style: italic;
  color: #F6F8AC;
  font-weight: 700;
  line-height: 1;
}

.c4-card__title {
  font-family: var(--hb-font-display, sans-serif);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  font-size: clamp(26px, calc(2.64vw + 5.7px), 48px);
  color: #fff;
  z-index: 1;
}

.c4-card__link {
  font-size: 18px;
  margin-top: 6px;
  text-decoration: none;
  color: #fff;
  z-index: 1;

}

.c4-card__link:hover {
  opacity: 1;
  text-decoration: none;
}

.c4-center-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
   width: clamp(250px, calc(250px + 645 * ((100vw - 768px) / 832)), 895px);
height: clamp(250px, calc(250px + 645 * ((100vw - 768px) / 832)), 895px);
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.c4-center-badge img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.c4-badge-text {
  font-family: var(--hb-font-display, sans-serif);
  font-size: clamp(24px, calc(5vw + 2px), 64px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.c4-badge-four {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(32px, 3.5vw, 52px);
  height: clamp(32px, 3.5vw, 52px);
  border-radius: 50%;
  background: #f0eba0;
  color: #0C211F;
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 700;
  font-style: normal;
  vertical-align: middle;
  margin: 0 -2px;
  line-height: 1;
}

.c4-badge-sub {
  font-family: var(--hb-font, sans-serif);
  font-size: clamp(8px, 1vw, 13px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
  margin-top: clamp(4px, 0.5vw, 8px);
}

.c4-badge-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%) rotate(0deg);
    pointer-events: none;
}

.c4-cta {
	text-align: center;
	margin-top: clamp( 30px, calc(30px + (100 - 30) * ((100vw - 768px) / (1600 - 768))), 100px );
}

.c4-cta__link {
	display: inline-block;
	font-family: var(--hb-font, sans-serif);
	font-size: clamp(14px, 1.1vw, 18px);
	color: #f5f0e8;
	text-decoration: none;
	border: 1.5px solid rgba(245, 240, 232, 0.3);
	border-radius: 50px;
	padding: clamp(10px, 1.2vw, 14px) clamp(24px, 3vw, 40px);
	transition: all 0.3s;
}

.c4-cta__link:hover {
	background: rgba(245, 240, 232, 0.08);
	border-color: rgba(245, 240, 232, 0.5);
}
.c4-section-bottom .c4-intro {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 60px);
  padding: 0 20px 160px;
  max-width: 1300px;
  margin: 0 auto;
  /*height:100vh;*/
}

.c4-section-bottom .c4-intro__left,
.c4-section-bottom .c4-intro__right {
  color: var(--dark-green, #2d4e45);
  line-height: 0.95;
  text-transform: uppercase;
  z-index: -1;
}

.c4-section-bottom .c4-intro__right {
  text-align: right;
}


/*
.c4-section-bottom .c4-intro__circle {
  position: relative;
  width: 170px;
  height: 170px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0); 
  z-index:1;
}
*/

.c4-section-bottom .c4-circle__bg {
  opacity: 0;
  visibility: hidden;
  transform: scale(36); /* keep initial state */
  transition: opacity 0.3s ease;
  position: absolute; 
  inset: 0; 
  background: #0C211F; 
  border-radius: 50%; 
  transform: scale(1); 
  transform-origin: center;
  z-index: -1;
}


.c4-circle__label {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: 'FK Screamer';
  text-transform: uppercase;
  font-size: clamp(25px, calc(25px + (50 - 25) * ((100vw - 768px) / (1600 - 768))), 50px);
  transition: opacity 0.3s ease;
}


.c4-section-bottom .c4-circle__label {
  position: relative;
  z-index: 100; 
}

.c4-section-bottom .c4-intro {
  position: relative;
  z-index: 100; 
}

.c4-section-bottom .c4-circle__bg {
  z-index: 1; 
}

.c4-section-bottom {
position: relative;
  z-index: 1; 
}

/****Blog css***/
    .flex-hero-section {
    position: sticky;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    top: 0;
}

.flex-hero-section.is-released {
  position: relative;
}
 .flex-hero-section .flex-hero-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
 .flex-hero-section .flex-hero-section__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
 .flex-hero-section .flex-hero-section__content {
    position: relative;
    z-index: 2;
}
.flex-hero-section  .sh-top__heading {
    max-width: 100%;
    margin-bottom: 0;
    padding-left: 0;
}
.flex-hero-section .hero_wrap {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 900px;
    padding: 0 clamp( 20px,  calc(20px + 60 * ((100vw - 768px) / 832)),  80px);
}
.flex-hero-section .author-strip {
    display: flex;
    z-index: 2;
    position: relative;
    gap: 25px;
}
.flex-hero-section .author-strip__meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: var(--hb-text-18);
}
.single-post .hb-header, body.single-post {
    background-color: transparent;
}
body.single-post .hb-header {
    position: fixed;
}

.flex-intro-quote-section {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    background: linear-gradient(to right, rgba(56, 45, 56, 0.6), rgba(56, 45, 56, 0.25), rgba(56, 45, 56, 0.6));
    backdrop-filter: blur(40px);
    border-radius: 12px;
    margin-bottom: -10px;
}
.flex-intro-quote-section .flex-intro-quote-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(14px) brightness(0.35);
    transform: scale(1.06);
    z-index: 0;
}
.flex-intro-quote-section .flex-intro-quote-section__content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}
.flex-section-heading-section {
    padding: 45px 80px;
    z-index: 2;
    position: relative;
}
.flex-section-heading-section__heading {
    padding-bottom: 20px;
}
.flex-sticky-nav-section {
    position: sticky;
    top: 111px;
    z-index: 100;
    width: 100%;
    padding: 0 clamp( 20px,  calc(20px + 60 * ((100vw - 768px) / 832)),  80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 83px;
    border-top: 1px solid #707070;
}
.flex-sticky-nav-section__title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    font-family: var(--hb-font-deck);
    font-size: var(--hb-text-24);
    letter-spacing: 0.24px;
    line-height: 1.3;
}
.flex-sticky-nav-section__article-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.flex-sticky-nav-section__read-time {
    white-space: nowrap;
    flex-shrink: 0;
}
.flex-sticky-nav-section__share {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
    font-size: 16px;
}
.flex-sticky-nav-section__share-icons {
    display: flex;
    gap: 25px;
    align-items: center;
}
.flex-sticky-nav-section__share-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: all 0.4s ease 0s;
    text-decoration: none;
    color: inherit;
}
.flex-sticky-nav-section__share-icons a:hover {
    transform: scale(1.1);
    transition: all 0.4s ease 0s;
}
.flex-body-content-section.content2 {
    padding-top: 60px;
}
.single_container {
    max-width: 1100px;
    margin: 0 auto;
}
.single_container_big {
     max-width: 1300px;
      margin: 0 auto;
}
.sr-section.sr_bottom .sr-card {
    max-width: 100%;
}
.sr-section.sr_bottom  .sr-divider {
    display: none;
}
.sr-section.sr_bottom  .sr-card {
    max-width: 100%;
    max-height: 285px;
    justify-content: center;
    margin-top: auto;
    margin-bottom: auto;
}
.sr-section.sr_bottom .sr-desc {
    font-size: var(--hb-text-30);
    margin: 0 0 0px;
}
.flex-section-heading-section.content5 {
    padding-bottom: 140px;
}
.bottom-line-section .hb-btn--dark {
    white-space: normal;
    text-align: center;
    line-height: 1;
}
.sr-scroll-space {
    position: relative;
    height: 300vh;
    background-color: var(--hb-light);
}

.sr-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sr-section {
    position: relative;
    width: 100%;
    max-width: 1300px;
    min-height: 645px;
    background-size: cover;
    background-position: center;
    background-color: #c8a898;
    display: flex;
    align-items: stretch;
    clip-path: inset(0 37% 0 37% round 12px);
    will-change: clip-path;
    margin: 0 auto 30px;
}

.sr-section .sr-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.sr-section .sr-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 512px;
    padding: 40px 44px 44px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to right, rgba(56, 45, 56, 0.6), rgba(56, 45, 56, 0.25), rgba(56, 45, 56, 0.6));
    backdrop-filter: blur(30px);
    border-radius: 12px;
    margin: 80px clamp(20px, calc(20px + 110 * ((100vw - 768px) / 832)), 130px);
    /* Start hidden — JS fades this in during second half of scroll */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sr-section .sr-label {
    font-family: var(--hb-font-display);
    font-weight: 700;
    font-size: var(--hb-text-36);
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 0 0 115px;
    color: #fff;
    line-height: 1.2;
}

.sr-section .sr-stat {
    font-family: var(--hb-font-serif);
    font-weight: 300;
    font-size: var(--hb-text-110);
    line-height: 1;
    margin: 0 0 22px;
    color: #fff;
    letter-spacing: 0;
}

.sr-section .sr-desc {
    font-family: var(--hb-font-deck);
    font-size: var(--hb-text-21);
    margin: 0 0 28px;
}

.sr-section .sr-divider {
    width: 100%;
    height: 5px;
    background: rgba(255,255,255,0.3);
    margin-top: auto;
}
.flex-body-content-section {
    padding: 115px 80px 0;
    position: relative;
}
.flex-body-content-section__inner {
    margin: 0 auto;
}
.flex-body-content-section__inner p:last-child {
    margin-bottom: 0;
}
.flex-body-content-section__inner h2,
.flex-body-content-section__inner h3,
.flex-body-content-section__inner h4 {
    margin: 48px 0 16px;
    line-height: 1.2;
}
.flex-body-content-section__inner a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.flex-body-content-section__inner ul,
.flex-body-content-section__inner ol {
    padding-left: 24px;
    margin: 0 0 28px;
}
.flex-body-content-section__inner li {
    line-height: 1.7;
    margin-bottom: 10px;
}
.flex-body-content-section__inner img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
}
.flex-body-content-section__inner blockquote {
    border-left: 3px solid currentColor;
    margin: 40px 0;
    padding: 8px 0 8px 28px;
    opacity: 0.75;
    font-style: italic;
}

.bottom-line-section {
    padding: 0 80px 35px;          
    box-sizing: border-box;
}

.bottom-line-inner {
    padding:
  clamp(60px, calc(60px + 40 * ((100vw - 768px) / 832)), 100px)
  clamp(20px, calc(20px + 110 * ((100vw - 768px) / 832)), 130px);
    box-sizing: border-box;
    max-width: 1920px;
    margin: 0 auto;
}


.bottom-line-rule {
    border: none;
    border-top: 5px solid;
    margin: 0 0 25px;
}


.bottom-line-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}


.bottom-line-tldr {
    white-space: nowrap;
    align-self: flex-end;
    padding-bottom: 4px;
    margin: 0;
    font-weight:700;
}

.bottom-line-cta__arrow {
    flex-shrink: 0;
    font-size: 1em;
    line-height: 1;
}

.bottom-line--white {
    background-color: var(--hb-light)  /* page bg, so the card floats */
}
.bottom-line--white .bottom-line-inner {
    background-color: #ffffff;
}
.bottom-line--white .bottom-line-rule {
    border-color: #E6ECD6;
}
.bottom-line--white .bottom-line-title, .bottom-line--white .bottom-line-tldr {
    color: var(--dark-green);
}
.bottom-line--white .bottom-line-body {
    color: var(--hb-dark);
}

.bottom-line--green {
    background-color: var(--hb-light);
}
.bottom-line--green .hb-btn--dark {
    background-color: var(--hb-dark);
}
.bottom-line-section .hb-btn {
 padding: 20px;
}
.bottom-line--green .bottom-line-inner {
    background-color: var(--dark-green);

}
.bottom-line--green .bottom-line-rule {
    border-color: var(--hb-dark);
}
.bottom-line--green .bottom-line-title,
.bottom-line--green .bottom-line-tldr {
    color: #ffffff;
}
.bottom-line--green .bottom-line-body {
    color: #fff;
}
.related-insights {
    margin: 0 auto;
    padding: 0px   20px   clamp(80px, calc(80px + 150 * ((100vw - 768px) / 832)), 230px);
    background-color: var(--hb-light);
}
.related-insights__inner {
    border-top: 5px solid var(--hb-dark);
    padding-top: 30px;
}
.related-insights__heading {
    font-family: var(--hb-font-display);
    font-size: var(--hb-text-42);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--hb-dark);
    margin: 0 0 55px;
}
.related-insights__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.related-insights__card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    min-height: 450px;
    background-color: var(--hb-dark);
}
.related-insights__card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: transform 0.4s ease;
}
.related-insights__card:hover .related-insights__card-bg {
    transform: scale(1.03);
}

.related-insights__card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 50px 30px 30px;
    min-height: 340px;
    box-sizing: border-box;
}
.related-insights__card-title {
    font-size: var(--hb-text-62);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 14px;
    max-width: 450px;
}
.user-bio-section {
    padding:
  clamp(60px, calc(60px + 20 * ((100vw - 768px) / 832)), 80px)
  20px
  clamp(60px, calc(60px + 180 * ((100vw - 768px) / 832)), 240px);
}
.user-bio-section__inner {
    max-width: 1300px;
    margin: 0 auto;
    border-top: 5px solid var(--hb-dark);
    padding: 50px
  clamp(20px, calc(20px + 110 * ((100vw - 768px) / 832)), 130px);
}

/* Heading */
.user-bio-section__heading {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--hb-dark);
    margin: 0 0 24px;
}

/* Top row: avatar left, social icons right */
.user-bio-section__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}
.user-bio-section__avatar {
    width: 110px;
    height: 110px;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
    flex-shrink: 0;
    display: block;
}

/* Social icons */
.user-bio-section__social {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 4px;
}
.user-bio-section__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hb-dark);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}
.user-bio-section__social a:hover {
    opacity: 1;
}
.user-bio-section__social svg {
    width: 29px;
    height: 29px;
    fill: currentColor;
}

/* Bio text */
.user-bio-section__bio {
    line-height: 1.8;
    color: var(--hb-dark);
    margin: 0;
}
.user-bio-section__bio strong {
    font-weight: 700;
}
.user-bio-section__bio p {
    margin: 0 0 12px;
}
.user-bio-section__bio p:last-child {
    margin-bottom: 0;
}

.page-id-17 .hb-header.z_index0 {
    z-index: 0;
}
.c4-section-top, .c4-section-mid, .c4-section-bottom {
     z-index: 100;
}

/****Landing core4***/
.landing_core4 .c4-card__title {
    max-width: 220px;
    font-size: var(--hb-text-57);
}
.landing_core4 .c4-card:nth-child(2n) .c4-card__title {
    margin-left: auto;
}
.landing_core4 .c4-card__body {
    max-width: 100%;
    padding: 15px 0;
}
.landing_core4 .c4-card:nth-child(2n) {
    text-align: right;
}
.landing_core4 .c4-card__overlay {
    padding: clamp(15px, 2vw, 25px) clamp(15px, 5vw, 55px) clamp(15px, 2vw, 25px) clamp(15px, 5vw, 55px);
     max-width: 100%;
    background: linear-gradient(
  to left,
  #2D4E45 0%,
  #2D4E4504 65%,
  #2D4E4500 100%
);
}
.landing_core4 .c4-card__num {
    margin: 0 -20px 0px -20px;
}
.landing_core4 .c4-expanded__inner {
    padding: 0;
}
.c4-section-mid.landing_core4.about_hero {
    padding-bottom: 0px;
    visibility: visible;
    opacity: 1;
}
.landing_core4.about_hero .hb-services__col--right {
    margin-bottom: -100px;
}
.landing_core4 .c4-expanded {
    padding:
    clamp(60px, calc(60px + 100 * ((100vw - 768px) / 832)), 160px)
    20px
    clamp(60px, calc(60px + 140 * ((100vw - 768px) / 832)), 200px);
    border-radius: 0;
    width: 100%;
    left: 0;
    background-color: transparent;
}
.landing_core4 .c4-center-badge {
    width: 317px;
    height: 317px;
    background-color: var(--hb-dark);
}
.landing_cta .ctas-inner {
    gap: 40px;
}
.landing_cta_body p {
    color: var(--dark-green);
    text-align: center;
    max-width: 530px;
    margin: 0 auto;
}
.roi-heading {
    color: var(--dark-green);
}

.hb-header--landing-light {
    background: var(--hb-light);
}
.hb-header--landing-dark {
    background: var(--hb-dark);
}
.landing-green {
    background-color: #D6FF8B;
} 
.hb-btn.hb-btn--dark.ctas-btn.hb-btn-landing {
    font-size: 13px;
    color: #E6ECD7;
    font-family: inherit;
    letter-spacing: 0;
    text-transform: none;
    padding: 13px 30px;
}
.landing_container {
    margin: 0 auto;
    padding: var(--hb-px);
    max-width: 1920px;
}
.landing_hero_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    gap: 80px;
}
.hb-hero-form {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hb-hero-form__media {
    position: relative;
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    padding: 0;
}
.hb-hero-form__video-wrap {
    position:   absolute;
    inset:      0;
    overflow:   hidden;
    z-index:    0;
}

.hb-hero-form__video {
    position:   absolute;
    top:        50%;
    left:       50%;
    width:      177.78%;   /* 16:9 fill */
    height:     100%;
    min-width:  100%;
    min-height: 56.25vw;
    transform:  translate(-50%, -50%);
    pointer-events: none;
}

.hb-hero-form__overlay {
    position: absolute;
    inset:    0;
    z-index:  1;
    background:  rgba(12, 33, 31, 0.3);
}

.hb-hero-form__copy {
    position:   relative;
    z-index:    2;
    display:    flex;
    flex-direction: column;
    gap:        clamp(20px, 2.5vw, 36px);
}

.hb-hero-form__heading {
    
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    max-width: 800px;
    font-weight: 500;
    font-size: var(--hb-text-90);
    letter-spacing: 0.9px;
}
.heading_font_fd .hb-hero-form__heading {
    font-family: var(--hb-font-serif-cn);
    text-transform: none;
}
.hb-hero-form__body {
    font-family:  var(--hb-font);
    font-size:    var(--hb-text-24);
    line-height:  1.3;
    color:        #fff;
    margin-bottom: 80px;
    max-width:    850px;
}

.hb-hero-form__cta {
    align-self:  flex-start;
}
.hb-hero-form__cta.hb-btn--outline-light:hover {
    background: var(--hb-dark);
    border-color: var(--hb-dark);
}

.hb-hero-form__panel {
    flex:               0 0 auto;
    width:              clamp(340px, 38vw, 590px);
    background:         var(--hb-light);
    display:            flex;
    flex-direction:     column;
    padding:            clamp(32px, 4vw, 45px) clamp(24px, 3vw, 50px);
    align-self:         center;
    position:           relative;
    z-index:            3;
}
.hb-hero-form__panel-heading {
    font-family:  var(--hb-font-serif-cn);
    font-size:    var(--hb-text-42);
    line-height:  1.1;
    color:        var(--hb-dark);
    margin:       0;
}
.hb-hero-form__panel-sub {
    font-family: var(--hb-font);
    line-height: 1.5;
    color: var(--hb-dark);
    margin: 0;
    padding: 17px 0 40px;
}
.hb-hero-form__form {
    display:        flex;
    flex-direction: column;
    gap:            clamp(10px, 1.2vw, 16px);
}
.hb-hero-form__field {
    position: relative;
    width:    100%;
}
.hb-hero-form__input {
    width:            100%;
    box-sizing:       border-box;
    background:       transparent;
    border:           1px solid var(--dark-green);
    border-radius:    0;
    padding:          14px 16px;
    font-family:      var(--hb-font);
    font-size:        13px;
    color:            var(--dark-green);
    outline:          none;
    transition:       border-color 0.2s ease;
    -webkit-appearance: none;
    appearance:       none;
}

.hb-hero-form__input::placeholder {
    font-family: var(--hb-font);
    font-size:   13px;
    color:       var(--dark-green);
}

.hb-hero-form__input:focus {
    border-color: var(--dark-green);
}

.hb-hero-form__field--select {
    position: relative;
}

.hb-hero-form__select {
    width:            100%;
    box-sizing:       border-box;
    background:       transparent;
    border:           1px solid var(--dark-green);
    border-radius:    0;
    padding:          14px 40px 14px 16px;
    font-family:      var(--hb-font);
    font-size:        13px;
    color:            var(--dark-green);
    outline:          none;
    cursor:           pointer;
    transition:       border-color 0.2s ease;
    -webkit-appearance: none;
    appearance:       none;
}

.hb-hero-form__select:focus {
    border-color: var(--dark-green);
}

.hb-hero-form__select option {
    color: var(--hb-dark);
}

.hb-hero-form__select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 80%;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--hb-dark);
    pointer-events: none;
    line-height: 1;
}

.hb-hero-form__actions {
    margin-top: clamp(4px, 0.8vw, 8px);
}

.hb-hero-form__submit {
    font-size:  13px;
    cursor:     pointer;
    border:     none;
    appearance: none;
    border: 1px solid;
}
button.hb-footer__submit.hb-hero-form__submit:hover {
    background: var(--hb-dark);
    border-color: var(--hb-dark);
}

.hb-services.landing_grid {
padding:
clamp(70px, calc(70px + 215 * ((100vw - 768px) / 832)), 285px)
0
clamp(50px, calc(50px + 40 * ((100vw - 768px) / 832)), 90px);
}

.card_btn {
    margin: clamp(50px, calc(50px + 40 * ((100vw - 768px) / 832)), 90px) auto;
     text-align: center;
}
.hb-landing__cta.hb-btn--outline-dark:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
    color: #fff;
}
.hb-pain-grid {
    padding:
    clamp(48px, 6vw, 100px)
    0
    clamp(100px, calc(100px + 100 * ((100vw - 768px) / 832)), 200px);
} 

.hb-pain-grid__header {
    display:         flex;
    align-items:     flex-end;
    justify-content: space-between;
    gap:             clamp(24px, 4vw, 60px);
    margin-bottom: clamp(70px, calc(70px + 70 * ((100vw - 768px) / 832)), 140px);
}
.hb-pain-grid__heading {
    font-family:    var(--hb-font-display);
    font-size:      var(--hb-text-110);
    line-height:    1;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color:          var(--dark-green);
    margin:         0;
    flex:           1 1 auto;
}
.hb-pain-grid__heading--right {
    text-align:  right;
    flex:        0 1 auto;
    white-space: nowrap;
}
.hb-pain-grid__cards {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(15px, 1.5vw, 30px);
    max-width: 1485px;
    margin: 0 auto;
    padding: 0 20px;
}
.hb-pain-grid__card {
    flex:          1 1 calc(33.333% - 33px);
    min-width:     260px;
    min-height:    clamp(360px, 35vw, 520px);
    border-radius: 15px;
    overflow:      visible;
    position:      relative;
    cursor:        pointer;
}
.hb-pain-grid__card-img {
    position:   absolute;
    inset:      0;
    width:      100%;
    height:     100%;
    object-fit: cover;
    display:    block;
    z-index:    0;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.hb-pain-grid__card:hover .hb-pain-grid__card-img {
    transform: scale(1.04);
}

.hb-pain-grid__card-gradient {
    position:       absolute;
    inset:          0;
    z-index:        1;
    background:     transparent linear-gradient(181deg, #FFFFFF00 0%, #0C211F 100%) 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    opacity:        0.65;
    pointer-events: none;
}
.hb-pain-grid__card-heading {
    position:       absolute;
    bottom:         clamp(20px, 2.5vw, 32px);
    left:           clamp(20px, 2.5vw, 28px);
    right:          clamp(20px, 2.5vw, 28px);
    z-index:        4;
    font-family:    var(--hb-font-display);
    font-size:      var(--hb-text-62);
    line-height:    1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color:          var(--hb-light);
    margin:         0;
    transition:     opacity 0.2s ease,
                    transform 0.3s ease;
    backface-visibility: hidden;
}
.hb-pain-grid__card-hover-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: clamp(20px, 2.5vw, 28px);
    padding: clamp(24px, 2.5vw, 36px) clamp(20px, 2.5vw, 28px);
   
}
.card_ctas .hb-btn--outline-light {
    white-space: normal;
}
.card_ctas .hb-btn--outline-light:hover {
    background: rgba(255, 255, 255, 1);
    color:var(--hb-dark);
}
.hb-pain-grid__card:hover .hb-pain-grid__card-hover-content {
    opacity:   1;
    transform: translateY(0);
}
.hb-pain-grid__card-body, .hb-pain-grid__stat-label {
    font-family: var(--hb-font);
    font-size:   var(--hb-text-16);
    line-height: 1.6;
    color:       var(--hb-light);
    margin:      0;
}
.hb-pain-grid__stat {
    display:        flex;
    flex-direction: column;
    gap:            8px;
}
.hb-pain-grid__stat-number {
    font-family: var(--hb-font-serif-cn);
    font-weight: 300;
    font-size: var(--hb-text-100);
    line-height: 0.9;
    color: var(--hb-light);
    display: block;
}
.start_per {
    font-family: var(--hb-font-serif);
}
.hb-pain-grid__stat-suffix {
    font-family:  var(--hb-font-deck);
    font-weight:  300;
    font-size:    var(--hb-text-24);
    line-height:  1.3;
    color:        var(--hb-light);
}
.hb-pain-grid__card-heading-hover {
    font-size: var(--hb-text-55);
    line-height: 1;
    color: var(--hb-light);
}
.hb-pain-grid__card {
    perspective: 1200px;
}
.hb-pain-grid__card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}
.hb-pain-grid__card:hover .hb-pain-grid__card-inner {
    transform: rotateY(180deg);
}
.hb-pain-grid__card-front,
.hb-pain-grid__card-back {
    position: absolute;
    inset: 0;
    border-radius: 15px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
   
}
.hb-pain-grid__card-front {
    background: #000;
        z-index: 1;
}
.hb-pain-grid__card-back {
    background: var(--dark-green);
    transform: rotateY(180deg);
    display: flex;
    align-items: stretch;
     z-index: 2;
}
.hb-pain-grid__card-hover-content {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
    padding: clamp(24px, 2.5vw, 36px) clamp(20px, 2.5vw, 28px);
}
.hb-services.about_hero.landing_services {
    padding-bottom: 60px;
}
.hb-test.landing_test {
    padding-bottom: 0;
}
.landing_roi.roi-section {
   padding-top: clamp(60px, calc(60px + 30 * ((100vw - 768px) / 832)), 90px);
}
.landing-growth-slider.client_success {
    padding-bottom: 0;
}
.hb-comparison {
  padding:
    clamp(100px, calc(100px + 100 * ((100vw - 768px) / 832)), 200px)
    clamp(20px, 4vw, 56px)
    clamp(80px, calc(80px + 70 * ((100vw - 768px) / 832)), 150px);
}
.hb-comparison__intro {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.5vw, 20px);
    margin-bottom: clamp(40px, 5vw, 72px);
    max-width: 1490px;
    margin-left: auto;
    margin-right: auto;
}

.hb-comparison__heading {
    font-family:    var(--hb-font-display);
    font-size:      var(--hb-text-110);
    line-height:    1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color:          var(--dark-green);
    margin:         0;
}

.hb-comparison__subtext {
    font-family: var(--hb-font);
    line-height: 1.5;
    color:       var(--hb-dark);
    margin:      0;
}

.hb-comparison__table-wrap {
    width:      100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 1600px;
    margin: 0 auto;
}
.hb-comparison__table {
    display:        flex;
    flex-direction: column;
    min-width:      640px;
}

.hb-comparison__row {
    display:     flex;
    align-items: stretch;
}

.hb-comparison__row:last-child {
    border-bottom: 1px solid rgba(12, 33, 31, 0.15);
}

.hb-comparison__cell {
    padding:     clamp(16px, 2vw, 28px) clamp(14px, 1.8vw, 24px);
    display:     flex;
    align-items: center;
}

.hb-comparison__cell--feature {
    flex:             0 0 clamp(160px, 18vw, 280px);
    width:            clamp(160px, 18vw, 280px);
    background-color: var(--dark-green);
    justify-content:  center;
    text-align:       center;
    border-bottom:    1px solid #F8F6F0;
}

.hb-comparison__cell--empty {
    background:   transparent;
    border-right: 0;
}

.hb-comparison__feature-text {
    font-family: var(--hb-font-serif-cn);
    font-size:  var(--hb-text-26);
    line-height: 1.2;
    text-align:  center;
    color:       #fff;
    margin:      0;
}

.hb-comparison__cell--icon-col {
    flex: 0 0 clamp(    48px,    calc(48px + 63 * ((100vw - 678px) / 922)),    111px);
    width: clamp(    48px,    calc(48px + 63 * ((100vw - 678px) / 922)),    111px);
    justify-content: center;
    border: 1px solid #2D4E4580;
    background: #fff;
}
.icon1 {
    background-color: #E2E2E2;
}
.icon2 {
    background-color: #D6FF8B;
}
.hb-comparison__icon {
    display:         flex;
    align-items:     center;
    justify-content: center;
    color:           var(--dark-green);
    flex-shrink:     0;
}

.hb-comparison__icon svg {
    width:  clamp(20px, 2.2vw, 32px);
    height: clamp(20px, 2.2vw, 32px);
}

.hb-comparison__icon-img {
    width:      clamp(20px, 2.2vw, 32px);
    height:     clamp(20px, 2.2vw, 32px);
    object-fit: contain;
    display:    block;
}

.hb-comparison__cell--desc {
    flex:           1 1 0;
    align-items:    flex-start;
    justify-content: center;
    flex-direction: column;
    gap:            8px;
    border:   1px solid #2D4E4580;
        background-color: #fff;
}

.hb-comparison__cell--col1-header,
.hb-comparison__cell--col2-header {
    justify-content: center;
    align-items:     center;
}

.hb-comparison__col-label {
    font-family:    var(--hb-font-display);
    font-size:      var(--hb-text-50);
    font-weight:    700;
    line-height:    1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align:     center;
    color:          var(--dark-green);
    display:        block;
}

.hb-comparison__desc {
    font-family: var(--hb-font);
    line-height: 1.3;
    color:       var(--hb-dark);
    margin:      0;
}

.hb-comparison__inline-link {
    font-family:      var(--hb-font);
    font-weight:      700;
    line-height:      1.4;
    color:            var(--dark-green);
    text-decoration:  underline;
    text-underline-offset: 2px;
    transition:       opacity 0.2s ease;
    font-size: var(--hb-text-18);
}

.hb-comparison__cta-wrap {
    display:         flex;
    justify-content: center;
    margin-top:      clamp(32px, 4vw, 56px);
}

.hb-comparison .hb-btn.hb-landing__cta.hb-btn--outline-dark {
    color: #fff;
    border-color: #fff;
}
.light .hb-btn.hb-landing__cta.hb-btn--outline-dark {
     border-color: var(--dark-green);
    color: var(--dark-green);
}
.hb-btn.hb-landing__cta.hb-btn--outline-dark:hover {
    color: rgb(255, 255, 255);
    background: var(--dark-green);
    border-color: var(--dark-green);
}

.landing_unstuck .hb-mode-compare__table {
    border: 1px solid #2D4E4580;
}
.landing_unstuck .hb-comparison__row:last-child, 
.landing_unstuck .hb-mode-compare__row--data:last-child .hb-mode-compare__cell--center {
    border-bottom: 0;
}
.landing_unstuck .hb-comparison__intro {
    max-width: 1435px;
}
.landing_unstuck .hb-comparison__table-wrap {
    max-width: 1435px;
}

.hb-mode-compare__row--header,
.hb-mode-compare__row--images,
.hb-mode-compare__row--data {
    display:     flex;
    align-items: stretch;
    width:       100%;
}
.hb-mode-compare__cell {
    display:     flex;
    align-items: center;
    padding:     clamp(16px, 2vw, 28px) clamp(14px, 2vw, 28px);
}
.hb-mode-compare__cell--col1 {
    flex:        1 1 0;
    border-right: 1px solid rgba(0,0,0,0.08);
}
.hb-mode-compare__cell--center {
    flex: 0 0 clamp(100px, calc(100px + 160 * ((100vw - 768px) / 832)), 260px);
    width: clamp(100px, 12vw, 260px);
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid #F8F6F0;
}
.landing_unstuck .hb-comparison__cell--desc {
    border: 1px solid #95A6A1;
}
.hb-mode-compare__cell--col2 {
    flex: 1 1 0;
}
.hb-mode-compare__cell--header {
    padding:         clamp(16px, 2vw, 24px) clamp(14px, 2vw, 28px);
    justify-content: center;
    text-align:      center;
    border-bottom:   none;
}

.hb-mode-compare__cell--header-center {
    padding: clamp(16px, 2vw, 24px) 0;
}

/* Override col-label alignment for this section — centered */
.hb-mode-compare .hb-comparison__col-label {
    text-align: center;
    color:      var(--dark-green);
}
.hb-mode-compare__cell--image {
    padding: 0;
    overflow: hidden;
    height: clamp(150px, calc(150px + 105 * ((100vw - 768px) / 832)), 255px);
}

.hb-mode-compare__cell--image-center {
    padding: 0;
}
.hb-mode-compare__img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    display:    block;
}
.hb-mode-compare .hb-comparison__cell--desc {
    align-items:    flex-start;
    flex-direction: column;
}
.hb-mode-compare__center-label {
    font-family: var(--hb-font-serif);
    font-size:   clamp(14px, 1.6vw, 22px);
    line-height: 1.3;
    color:       #fff;
    text-align:  center;
    display:     block;
}

.intial_pad {
padding-left: clamp(20px, calc(22.84vw - 155.3px), 210px);
}
.bg_color_temp {
    background-color: #faf9f5;
}
.roi-card__number span {
    font-family: 'Feature Display';
}
h4.cl-category__title {
    font-size: 24px;
    padding: 5px 0;
}
.cl-category {
    padding: 35px 0;
}
.gs-slider-wrap {
    position: relative;  /* cursor arrow positions relative to this */
    cursor: none;        /* hide real cursor inside the slider area  */
}
.gs-cursor-arrow {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 9999;

    opacity: 0;
    transform: translate(-50%, -50%) scale(.5);

    transition:
        opacity .2s ease,
        transform .2s ease;
}

.gs-cursor-arrow--visible {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
}

    .cursor-arrow.visible {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
    .cursor-arrow.faded {
      opacity: 0.2;
      transform: translate(-50%, -50%) scale(0.8);
    }
    .slider-wrapper:hover .slide-item {
      filter: brightness(0.92);
      transition: filter 0.2s;
    }

    /*****Key deliverables****/
.gs-quad__title {
    font-weight: 700;
    color: var(--dark-green);
    margin: 0 0 10px;
    text-align: left;
}
.gs-quad__items li {
    color: var(--dark-green);
    padding: 2px 0;
    text-align: left;
}
.gs-quad {
    position: absolute;
    z-index: 4;
    max-width: 350px;
}
.gs-quad--tl {
    top: 150px;
    left: 0px;
}
.gs-quad--tr {
    top: 150px;
    right: 0px;
    text-align: right;
}
.gs-quad--bl {
    bottom: 150px;
    left: 0;
}
.gs-quad--br {
    bottom: 150px;
    right: 0px;
    text-align: right;
}
.gs-quad__items {
    list-style: none;
    margin-left: 10px;
    padding-left: 0;
}
.gs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 327px;
    height: 327px;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .gs-section {
    position: relative;
    padding: clamp(60px, 8vw, 120px) 0;
    overflow: hidden;
}
.gs-section.our_method {
     padding:0;
}
.gs-header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 72px);
}
.gs-content p {
    color: var(--hb-dark);
}
.gs-section .gs-flex-row {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 60px);
    display: flex;
    gap: clamp(20px, 5vw, 80px);
    align-items: flex-start;
    flex-wrap: nowrap;
    margin-bottom: 50px;
}
.gs-section .gs-header {
    text-align: left;
    margin-bottom: 0;
    flex: 0 0 37%;
    margin-left: 0;
    padding-left: 0;
}
.light_gs.gs-section .gs-header {
padding: 0 clamp(20px, calc(20px + 60 * ((100vw - 678px) / 922)), 80px);
}
.gs-section .gs-content {
    flex: 0 0 60%;
    max-width: 800px;
    margin-right: 100%;
}
.gs-stage {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
}

.gs-bg-circle {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}
.gs-bg-circle > svg {
    max-width: 73%;
}
.gs-ring-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gs-ring-svg {
    width: 100%;
    height: 100%;
    max-width: 456px;
    will-change: transform;
}

.gs-badge svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gs-quad__items li::before {
    content: '- ';
}
/* ==========================================================================
   Nav Overlay — inc/nav-overlay.css
   Scoped entirely to .hb-nav-overlay and its descendants.
   Load this via wp_enqueue_style(), NOT inline in header-render.php.
   ========================================================================== */

.hb-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.hb-nav-overlay[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

body.hb-nav-open {
    overflow: hidden;
}

/* Layout */
.hb-nav-overlay__inner {
    display: grid;
    grid-template-columns: 45% 55%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

/* ---- Left panel ---- */
.hb-nav-overlay__left {
    position: relative;
    background: var(--hb-light);
    color: var(--hb-dark);
    padding: 3.5rem 4vw 3rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    flex: 0 0 50%;
}

.hb-nav-overlay__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--hb-font-serif);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: var(--hb-nav-ink);
    background: transparent;
    border: 1px solid var(--hb-nav-rule);
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hb-nav-overlay__close:hover,
.hb-nav-overlay__close:focus-visible {
    background: rgba(21, 23, 15, 0.06);
    border-color: var(--hb-nav-ink);
}

/* ---- Nav list ---- */
.hb-nav-list {
    list-style: none;
    margin: 5.5rem 0 2.5rem;
    padding: 0;
    max-width: 50%;
}

.hb-nav-list__row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hb-nav-list__label {
    font-family: var(--hb-font-display);
    font-weight: 400;
    text-transform: uppercase;
    font-size: var(--hb-text-72);
    line-height: 1.04;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-block;
    font-weight: 500;
        transition: all 0.4s ease 0s;

}

.hb-nav-list__label:hover,
.hb-nav-list__label:focus-visible {
    color: var(--dark-green);
        transition: all 0.4s ease 0s;
}

.hb-nav-list__label--toggle {
    background: none;
    border: none;
    text-align: left;
    font-family: var(--hb-font-display);
    text-transform: uppercase;
	color:var(--hb-dark);
}

.hb-nav-list__toggle {
    font-family: var(--hb-font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1;
    color: var(--hb-nav-ink);
    background: none;
    border: none;
    padding: 0 0 0 0.1em;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

.hb-nav-sublist{
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition:
        max-height .35s ease,
        opacity .3s ease,
        transform .35s ease;
}

.hb-nav-list__item--open .hb-nav-sublist{
    max-height: 40rem;
    opacity: 1;
    transform: translateY(0);
}

.hb-nav-list__item--open .hb-nav-list__toggle {
    transform: rotate(45deg);
}

.hb-nav-list__description {
    display: none;
}
.hb-nav-list__item:last-child a, .hb-nav-list__item:nth-child(6n) a {
    font-size: var(--hb-text-28) !important;
    font-family: var( --hb-font-deck);
    color: var(--hb-dark);
    line-height: 1;
    padding-top: 20px;
    text-transform: none;
}
/* ---- Sub-list ---- */
.hb-nav-sublist {
    list-style: none;
    margin: 0.4rem 0 0.6rem;
    padding: 0 0 0 0.3rem;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
    margin-top: 5.5rem;
}

.hb-nav-list__item--open .hb-nav-sublist {
    max-height: 40rem;
}

.hb-nav-sublist__label {
    font-family: var(--hb-font-display);
    font-size: var(--hb-text-40);
    color: var(--hb-dark);
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid transparent;
   transition: all 0.4s ease 0s;
    font-weight: 500;
    text-transform: uppercase;
}

.hb-nav-sublist__label:hover,
.hb-nav-sublist__label:focus-visible {
transition: all 0.4s ease 0s;
    border-bottom-color: var(--hb-nav-ink);
}

.hb-nav-overlay__cta {
    align-self: flex-start;
    margin-top: 1.5rem;
}

/* ---- Right panel ---- */
.hb-nav-overlay__right {
    position: relative;
    background: var(--hb-light);
    overflow: hidden;
    flex: 0 0 50%;
}

.hb-nav-panel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hb-nav-panel__media {
    position: absolute;
    inset: 0;
}

.hb-nav-panel__image,
.hb-nav-panel__video,
.hb-nav-panel__oembed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hb-nav-panel__video, .hb-nav-panel__oembed {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: calc(100% * 16 / 9);
    min-height: calc(100% * 9 / 16);
    transform: translate(-50%, -50%);
    border: none;
    display: block;
    pointer-events: none;
}
.hb-nav-panel__oembed-inner,
.hb-nav-panel__oembed-inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hb-nav-panel__oembed-inner iframe {
    transform: scale(1.25);
    transform-origin: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: calc(100% * 16 / 9);
    min-height: calc(100% * 9 / 16);
    transform: translate(-50%, -50%);
    border: none;
    display: block;
    pointer-events: none;
}

.hb-nav-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.15) 35%,
        rgba(0, 0, 0, 0)    60%
    );
    pointer-events: none;
}

.hb-nav-panel__text {
    position: absolute;
    left: 3.5rem;
    right: 3.5rem;
    bottom: 3rem;
    z-index: 2;
    margin: 0;
    font-family: var(--hb-font-deck);
    font-size: var(--hb-text-30);
    line-height: 1.5;
    color: #fff;
    max-width: 32em;
}
.c4-video-popup{
    position:fixed;
    inset:0;
    display:none;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.9);
    z-index:99999;
}

.c4-video-popup.active{
    display:flex;
}

.c4-video-popup__content{
    position:relative;
    width:min(1200px,90vw);
    aspect-ratio:16/9;
}

.c4-video-popup__iframe,
.c4-video-popup__iframe iframe{
    width:100%;
    height:100%;
}

.c4-video-popup__iframe iframe{
    border:0;
}

.c4-video-popup__close{
    position:absolute;
    top:-45px;
    right:0;
    color:#fff;
    font-size:40px;
    background:none;
    border:0;
    cursor:pointer;
}
.page-id-20 .hb-footer {display:none;}

.hb-contact {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

/* Top heading/body row reuses the existing .hb-services__* classes/CSS
   from the Services section — no new styles needed here for that part. */

/* Form and social now live inside the center column, stacked under the body copy. */
.hb-contact__form-wrap {
    position: relative;
    z-index: 2;
    max-width: 1000px !important;
    margin: 40px auto 0;
}
.hb-contact__sentence {
    font-size: var(--hb-text-21);
    line-height: 2.1;
    font-weight: 400;
    color: #ffffff;
}
.about_hero.contact_form .hb-services__col--right {
   padding-top: 110px;
    align-items: flex-start;
}
.contact_form .hb-services__body {
    max-width: 850px !important;
}
.contact_form .hb-contact__row {
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
    margin-bottom: 16px;
}
.contact_form .hb-field {
    position: relative;
    flex: 1 1 0;
    width: 100%;
}
.contact_form .hb-field input, .contact_form .hb-field--select select {
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--dark-green);
    color: rgba(255,255,255,0.5);
    font-family: var(--hb-font);
    font-size: 16px;
    padding: 10px 15px;
    outline: none;
    width: 100%;
    transition: border-color .2s ease;
}
.contact_form .hb-field input::placeholder {
    color: rgba(255,255,255,0.55);
}
.contact_form .hb-field input:focus {
    border-bottom-color: #ffffff;
}
.contact_form .hb-contact__label {
    flex: 0 0 25%;
    font-family: var(--hb-font);
    font-size: var(--hb-text-24);
}
.contact_form .hb-contact__growth-copy {
    color: rgba(255,255,255,0.5);
}
.contact_form .hb-contact__growth {
    padding: var(--hb-text-90) 0;
}
.contact_form .hb-field--select {
    display: block;
    width: 100%;
    position: relative;
}

.contact_form .hb-field--select select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    outline: none;
    cursor: pointer;
}

.contact_form .hb-field--select select:focus,
.contact_form .hb-field--select select:valid {
    border-bottom-color: #fff;
}

.contact_form .hb-field--select::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 14px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

.contact_form .hb-field--select select option {
    background: #0d1614;
    color: #fff;
}
.hb-field--wide input { min-width: 220px; }
.hb-field--narrow input { min-width: 100px; }

.hb-contact__submit-row {
    margin-top: 40px;
}
.hb-contact .cta_black,
.hb-contact__submit-btn {
    display: inline-block;
    background-color: #23433a;
    color: #ffffff;
    border: 0;
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease;
}
.hb-contact .cta_black:hover,
.hb-contact__submit-btn:hover {
    background-color: #2f5648;
    transform: translateY(-1px);
}

/* Social */
.hb-contact__social {
    position: relative;
    z-index: 2;
    margin-top: 60px;
}
.hb-contact__social-heading {
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 60px;
}
.hb-contact__social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.hb-contact__social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform .2s ease, opacity .2s ease;
}
.hb-contact__social-icons a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.hb-contact__social-icons img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.contact_form .hb-footer__copyright {
    padding: clamp(50px, 7vw, 100px) 15px 15px clamp(20px, 5vw, 80px);
}
.contact_form .hb-contact__hubspot-note {
    max-width: 1000px;
    padding-top: 50px;
    font-size: 13px;
    color: var(--dark-green);
}
footer .hb-contact__hubspot-note {
    max-width: 1000px;
    padding-top: 0px;
    font-size: 13px;
    color: #5E8C7E;
}
.hb-success {
    color: var(--dark-green);
    font-size: 18px;
    font-weight: 700;
}

.site-main--basic {
    padding: 120px 0;
}

.basic-page {
    max-width: 900px;
    margin: 0 auto;
    color: var(--hb-dark);
}
h1{
    font-family: var(--hb-font-display);
    font-size: var(--hb-text-140);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}
h4 {
    font-size: var( --hb-text-36);
    margin: 2em 0 0.5em;
     color: var(--dark-green);
}
.basic-page__title {
    margin-bottom: 40px;
    font-family: var(--hb-font-display, sans-serif);
    font-size: var(--hb-text-110);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--dark-green);
}

.basic-page__content > *:first-child {
    margin-top: 0;
}

.basic-page__content > *:last-child {
    margin-bottom: 0;
}

.basic-page__content h2,
.basic-page__content h3,
.basic-page__content h4 {
    margin-top: 2em;
    font-family: var(--hb-font-display, sans-serif);
}

.basic-page__content p,
.basic-page__content ul,
.basic-page__content ol {
    margin-bottom: 1.5em;
}
/* ---- Responsive ---- */
@media (max-width: 900px) {
    .hb-nav-overlay__inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }


    .hb-nav-overlay__left {
        padding: 2.5rem 6vw 2rem;
    }

    .hb-nav-list {
        margin: 4rem 0 2rem;
    }

    .hb-nav-list__label {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }
}

/********Responsive*********/
@media (min-width: 2000px) {
    .hb-about g#o-letter {
        transform: translate(90px, 0) scale(1.3);
    }


}

@media screen and (min-width: 1801px) and (max-width: 2000px) {
    .hb-about__heading {
        margin-left: -70px;
    }
}

@media screen and (min-width: 1701px) and (max-width: 2000px) {
    .hb-about g#o-letter {
        transform: translate(-30px, 0) scale(1.3);
    }

}
@media (min-width: 768px) and (max-width: 1023px) {
  .c4-card { min-height: 180px; }
  .landing_core4 .c4-card { min-height: 480px;}
  .c4-cards {
    gap: 30px;
}
}
@media(min-width:768px) {
    .cq-col.cq-col--center .cq-quotes {
    width: 120%;
}
    .landing_roi .roi-card:nth-child(2n + 1) {
    padding-left: 0;
}
.landing_roi .roi-card:nth-child(2n) {
    padding-right: 0;
}
.section-split-hero .cq-col--right {
position: absolute !important;
     right: 0; 
}
}
@media (max-width: 1700px) {
    .c4-card.c4-card--has-video {
    min-height: auto;
}
.c4-ring-svg {
    width: clamp(250px, calc(250px + 400 * ((100vw - 768px) / 832)), 650px);
    height: clamp(250px, calc(250px + 400 * ((100vw - 768px) / 832)), 650px);
}
    .hb-about g#o-letter {
        transform: translate(-5%, 0) scale(1.3);
    }

    .hb-about g#w-letter {
        transform: translate(68%, 0) scale(1.3);
    }

    .section-service-video .sv-video-bg {
        width: 237.78%;
    }

}

@media(max-width:1500px) {
    .about_hero.solution_hero .hb-services__body {
        max-width: 800px;
    }
}

@media(max-width:1400px) {
    .sh-top__heading {
        max-width: 50%;
        padding-left: 0;
        margin-bottom: -35px;
    }

    .section-service-video .sv-video-bg {
        width: 267.78%;
    }

    .ps-section .ps-section__step {
        flex: 0 0 23%;
    }

    .ps-section .ps-section__step-label::before {
        left: calc(100% + 20px);
    }
}


@media(max-width:1366px) {
    .hb-pain-grid__stat {
    gap: 2px;
}
    .hb-pain-grid__card-body, .hb-pain-grid__stat-label {
    line-height: 1.3;
}
    .gs-card__iframe {
	 width: 177.78vh;
}
    
    .c4-dark__shape {
        padding: 250px 60px 160px;
    }

    .wn-popup__right {
        padding: 50px;
    }

    .growth_story_hero.about_hero .hb-services__body {
        max-width: 450px;
        margin: 0 auto;
    }

    .growth_story_hero .hb-services__col--right h2 {
        top: 138px;
    }

    .growth_story_hero.about_hero .hb-services__body {
        max-width: 530px;
    }
    .phs-section .phs-num_wrap {
	top: -120px;
}
    .landing_grid.hb-services .hb-services__body {
    max-width: 340px;
}
    .landing_core4.about_hero .hb-services__col--right {
    margin-bottom: -50px;
}
}

@media (max-width:1250px) {
    .hb-about .video-wrap--desktop iframe {
        top: 40%;
    }

    .hb-about g#o-letter {
        transform: translate(-5%, 0) scale(1.1);
    }

    .hb-about g#w-letter {
        transform: translate(68%, 0) scale(1.1);
    }
}

@media(max-width:1200px) {
    .gs-quad--tl, .gs-quad--bl {
    left: 20px;
}
.gs-quad--tr, .gs-quad--br {
    right: 20px;
}

.gs-badge {
    width: 60%;
}
.card_ctas .hb-btn--outline-light {
    font-size: 14px;
    padding: 10px 15px;
}
    .ps-section .ps-section__step-label::before {
        left: calc(100% + 8px);
    }

    .about_hero .hb-services__body {
        max-width: 450px;
    }

    .prt-inner {
        min-height: 550px;
    }

    .grw-item__trigger,
    .grw-item__heading {
        font-size: 50px;
    }

    .grw-item__trigger {
        padding: 40px;
    }

    .grw-item__stat {
        margin-top: 10px;
    }

    .grw-item__card {
        min-height: 400px;
        padding: 40px;
    }

    .grw-item__stat-number {
        font-size: 80px;
    }

    .tm-card__info {
        padding: 30px 25px 50px 0px;
    }

    .roi-marquee__item {

        gap: 30px;
    }

    .hb-about .col-center {
        max-width: 360px;
    }

    .hb-about__video-wrap {
        display: none;
    }

    .growth_story_hero.about_hero .hb-services__body {
        max-width: 380px;
    }

    .about_hero.solution_hero .hb-services__body {
        max-width: 600px;
    }
    .phs-section .phs-num_wrap {
    top: -70px;
}
}

@media (max-width: 1100px) {
    .hb-about {
        min-height: 700px;
    }

    .hero-grid {
        gap: 0 20px;
        padding: 50px 16px;
        min-height: 580px;
    }

    .hb-about g#o-letter {
        transform: translate(-12%, 0) scale(1);
    }

    .hb-about g#w-letter {
        transform: translate(66%, 0) scale(1);
    }

    .hb-about__ctas {
        margin-top: 35px;
        gap: 20px;
    }

    .hb-about .hb-about__heading {
        font-size: 62px;
    }
}

@media(max-width:1024px) {
.section-split-hero .sh-body p {
    text-align: center;
}
    .phs-section .phs-num_wrap {
	top: -50px;
}
    .section-split-hero .cq-col--left {
        flex-basis: clamp(140px, 20%, 260px);
        width: clamp(140px, 20%, 260px);

    }

    .section-split-hero .cq-col--right {
        flex-basis: clamp(160px, 25%, 320px);
        width: clamp(160px, 25%, 320px);

    }

    .section-split-hero .sh-grid {
        grid-template-columns: 18fr 64fr 18fr;
    }

    .ps-section .ps-section__step {
        flex: 0 0 48%;
    }

    .sh-section .sh-media {
        margin: 220px auto 0;
        aspect-ratio: 16/9;
    }

    .sh-wrap-div {
        height: 150vh !important;
    }

    .si-slide.is-active {
        width: 68vw;
    }

    .si-slide:not(.is-active) {
        width: 14vw;
    }

    .si-slide__glass {
        width: clamp(220px, 42%, 360px);
    }

    .sh-top__desc {
        margin-top: 0;
    }

    .hb-about .col-center {
        max-width: 500px;

    }

    .hero-grid {
        gap: 0 30px;
        padding: 60px 24px;
        min-height: 650px;
    }

    .hb-about g#o-letter {
        transform: translate(-8%, 0) scale(1.15);
    }

    .hb-about g#w-letter {
        transform: translate(65%, 0) scale(1.15);
    }

    #solution {
        padding-bottom: 130px;
    }

    .section-service-video .sv-video-bg {
        width: 297.78%;
    }

  

    .gs-card__glass {
        width: clamp(200px, 35vw, 350px);
    }

    .gl-card__tag {
        font-size: clamp(22px, 4vw, 40px);
    }



    .bts-section__glass,
    .bts-section__glass-content {
        top: 25%;
    }

    .bts-section__glass-content {
        padding: 30px 24px;
    }

    .bts-section__glass-center {
        padding: 0 20px;
    }

    .bts-section__heading--scroll {
        font-size: clamp(40px, 8vw, 80px);
    }


    .prt-col--left .prt-col__heading {
        padding-left: 25px;
    }

    .prt-col__heading--right {
        padding-right: 25px;
    }

    .tm-popup__role {
        font-size: 16px;
        line-height: 1;
    }

    .tm-card__info {
        padding: 20px 25px 50px 0px;
    }

    .wn-popup__impact {
        padding: 25px;
    }

    .wn-popup__right {
        padding: 35px;
    }

.phs-section .phs-step__overlay-text {
    padding: 0px 35px 0;
}
    .hb-hero-form {
        flex-direction: column;
    }
    .hb-hero-form__body {
    margin-bottom: 10px;
}
    .hb-hero-form__panel {
        width:    100%;
        padding:  clamp(32px, 6vw, 56px) clamp(20px, 5vw, 40px);
    }
    .hb-hero-form__body {
    margin-bottom: 40px;
    max-width: 500px;
}
}

@media(max-width:991px) {
    .about_hero .hb-services__inner {
        flex-direction: column;
        gap: 40px;
    }

    .about_hero .hb-services__body {
        margin: 0 auto;
    }

    .about_hero .hb-services__col--center {
        padding: 0 15px;
    }

    .prt-inner {
        flex-wrap: wrap;
        min-height: auto;
    }

    .prt-col--left {
        flex: 0 0 50%;
        min-height: 400px;
    }

    .prt-col--right {
        flex: 0 0 50%;
        min-height: 400px;
    }

    .prt-col--center {
        flex: 0 0 100%;
        order: 3;
        padding: 48px 32px;
        max-width: none;
    }

    .grw-inner {
        padding: 0 32px;
    }

    .grw-item__trigger,
    .grw-item__heading {
        font-size: 40px;
    }

    .grw-item__trigger {
        padding: 28px 30px;
    }

    .grw-item__card {
        min-height: 360px;
        padding: 32px;
    }

    .grw-item__stat-number {
        font-size: 64px;
    }

    .grw-intro {
        margin-bottom: 40px;
    }

    .tm-card {
        flex: 0 0 48%;
    }

    .roi-card__caption {
        font-size: 18px;
    }

    .roi-intro {

        padding: 0 32px;
        margin-bottom: 30px;
    }

    .roi-stats {
        padding: 0 32px;
    }

    .roi-card {
        padding: 32px 24px;
        gap: 20px;
    }

    .roi-marquee {
        margin-bottom: 40px;
    }

    .growth_story_hero .hb-services__col--right h2,
    .growth_story_hero .hb-services__col--left h2 {
        top: 0;
    }
}

@media (max-width: 960px) {
    .light .hb-about__heading {
        color: var(--hb-text-dark);
    }

    .section-service-video .sv-row {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .section-service-video .sv-video-wrap {

        min-height: 350px;
    }

    .section-service-video .sv-num-digit {
        font-size: 37px;
    }

    .section-service-video .sv-num-wrap {
        left: -20px;
        bottom: -30px;
    }

    .hb-grid-3,
    .hb-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hb-about {
        min-height: auto;
    }

    /* Hide desktop video + mask */
    .mask-overlay,
    .video-wrap--desktop {
        display: none;
    }

    /* ---- Mobile OW Video Block ---- */
    .mob-ow-block {
        display: block;
        position: relative;
        width: 100%;
        height: 55vw;
        /* responsive height based on viewport width */
        overflow: hidden;
    }

    .mob-ow-video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 177.78vh;
        height: 100vh;
        min-width: 100%;
        min-height: 100%;
        transform: translate(-50%, -50%);
        border: 0;
        pointer-events: none;
        z-index: 0;
    }

    .mob-ow-mask {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(100% + 2px);
        z-index: 1;
        display: block;
        pointer-events: none;
    }

    /* ---- Stacked content grid ---- */
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding: 0;
        gap: 0;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .col-left {
        padding: 30px 20px 0;
        justify-content: flex-start;
        order: 1;
    }

    .col-left .hb-about__heading {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
        line-height: 0.88;
    }

    .col-center {
        padding: 20px 20px 40px;
    }

    .hb-about__ctas {
        margin-top: 30px;
        gap: 20px;
    }

    .col-right {
        padding: 0 20px 30px;
        text-align: left;
        align-items: flex-start;
        order: 2;
    }

    .col-right .hb-about__heading,
    .col-right .hb-about__overlay-text {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
        line-height: 0.88;
        text-align: left;
    }

    .hb-about .col-center {
        max-width: 100%;
        order: 3;
    }

    .hb-about {
        padding-bottom: 60px;
    }

    .col-right .hb-about__heading {
        margin-top: 60px;
    }

    .gl-section {
        padding-top: 0;
    }
.card_ctas .hb-btn--outline-light {
    font-size: 13px;
    padding: 10px 10px;
}
}

@media (max-width: 900px) {
     .gs-stage {
            aspect-ratio: unset;
            max-height: unset;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 32px;
        }
            .gs-badge {
                width: 50%;
            }
            .gs-bg-circle svg {
                  width: 80%;
                height: 80%;
            }
        .gs-quad{
            position: static;
            max-width: 100%;
             width: 100%;
            text-align: left !important;
            padding: 10px;
        }
    .gs-bg-circle {
    position: absolute;
    top: 50%;
    transform: translate(0 , -50%);
}
.gs-quad--tr {
    margin-bottom: clamp(150px, 40vw, 350px);
}
.gs-quad__title br {
    display: none;
}
.gs-section .gs-header {
    align-items: flex-start;
}
    .hb-services__inner {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .hb-services__col--left {
        grid-column: 1;
        grid-row: 1;
        margin-top: -12px;
    }

    .hb-services__col--right {
        grid-column: 2;
        grid-row: 1;
    }

    .hb-services__col--center {
        grid-column: 1 / -1;
        grid-row: 2;
        padding: 2rem clamp(2rem, 2vw, 2rem) 10rem;
    }
    .gs-quad--bl {
    margin-top: 20px;
}
}
@media(max-width:849px) {
.hb-pain-grid__card-hover-content {
    gap: 20px;
    padding: 20px;
}
.hb-pain-grid__stat {
    gap: 7px;
}
.card_ctas .hb-btn--outline-light {
    font-size: 13px;
    padding: 10px 15px;
}
}
@media(max-width:768px) {
    .contact_form .hb-contact__row {
    gap: 10px;
    margin-bottom: 35px;
    flex-direction: column;
}
.contact_form .hb-services__col--center {
order: 3;
}
.about_hero.contact_form .hb-services__col--right {
    padding-top: 0;
   
}
     .hb-blog__grid { grid-template-columns: 1fr; }
    .hb-nav-sublist {
    position: static;
}
.hb-nav-sublist {
    margin-top: 0;
    margin-bottom: 30px;
}

.hb-nav-overlay__left, .hb-nav-overlay__right {
    flex: 0 0 100%;
    height: 50%;
}
.hb-nav-list__toggle img {
    max-width: 10px;
}
.hb-nav-list__item:last-child a, .hb-nav-list__item:nth-child(6n) a {
    padding-top: 10px;
}
    .section-split-hero .cq-col--left {
        position:relative !important;
    }
    .c4-section-mid {
    margin: 50px 0;
}
.gs-section .gs-flex-row {
    flex-direction: column;
    gap:20px;
}
.gs-section .gs-content, .gs-section .gs-header {
    flex: 0 0 100%;
}
.section-split-hero .txt {
    white-space: normal;
}
.section-split-hero .cq-col--center {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 auto;
}
    .c4-card--has-video .c4-card__title {
    margin-left: 0;
}
    .gs-card__author {
    line-height: 1;
}
    .c4-card:nth-child(2n + 1) .c4-card__overlay {
    margin-left: 0;
}
    .c4-card:nth-child(3) {
    order: 4;
}
    .landing_core4 .c4-card:nth-child(2n) {
    text-align: left;
}
.landing_core4 .c4-card:nth-child(2n) .c4-card__title {
    margin-left: 0;
}
.landing_core4  .c4-card {
    min-height: 400px;
}
.landing_core4.about_hero .hb-services__col--right {
    margin-bottom: 0;
}
.landing_core4 .c4-card__overlay {
background: linear-gradient(288deg, rgba(45, 78, 69, 0) 0%, rgba(45, 78, 69, 0.02) 50%, rgba(45, 78, 69, 1) 100%);
}
.landing_core4 .c4-center-badge {
    width: 170px;
    height: 170px;
}
    .hb-btn.hb-btn--dark.ctas-btn.hb-btn-landing {
    font-size: 11px;
    padding: 6px 10px;
}
.hb-pain-grid__header {
        flex-direction: column;
        gap: clamp(12px, 3vw, 24px);
        align-items: unset;
    }
    .hb-pain-grid__card {
        flex: 1 1 calc(50% - 10px);
    }
    .flex-sticky-nav-section {
	top: 70px;
}
        .user-bio-section {
        padding: 40px 24px;
    }
    .user-bio-section__avatar {
        width: 80px;
        height: 88px;
    }
    .related-insights__grid {
        grid-template-columns: 1fr;
    }
    .related-insights__card,
    .related-insights__card-content {
        min-height: 280px;
    }
    .related-insights__heading {
    margin: 0 0 35px;
}
     .bottom-line-section {
    padding: 0 20px 35px;
}
    .bottom-line-header {
        flex-direction: column;
        gap: 8px;
    }
    .bottom-line-tldr {
        align-self: flex-start;
    }
     .flex-body-content-section { padding: 48px 24px; }
    .sr-scroll-space { height: auto; }
    .sr-sticky { height: auto; position: relative; top: auto; }
    .sr-section {
        clip-path: none !important;
        min-height: 420px;
    }
    .sr-section .sr-card {
        opacity: 1 !important;
        margin: 32px 24px;
        padding: 28px 28px 32px;
        max-width: 100%;
    }
    .flex-section-heading-section {
    padding:20px 20px 60px 20px;
}
    .flex-body-content-section.content2 {
    padding-top: 0;
}
.flex-section-heading-section.content5 {
    padding-bottom: 100px;
}
    .flex-sticky-nav-section {
    padding: 10px 20px;
    flex-wrap: wrap;
    flex-direction: column;
    height: 100%;
}
  .flex-sticky-nav-section__title-wrap {
    flex-direction: column;
    line-height: 1;
} 
.flex-sticky-nav-section__share-icons a {
    width: 22px;
    height: 22px;
    
}
    .page-id-17 .vs-scroll-space {
        height: auto;
    }
    .c4-badge-arrow {
    left: 49%;
}
    .c4-intro__right {
    top: 10px;
}
  .c4-intro {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding-bottom: 60px;
  }

  .c4-intro__right { text-align: center; }
  .c4-intro__circle { width: 120px; height: 120px; }

  .c4-circle__bg {
    
    height: 120px;
    width: 120px;
   
}
.core_sticky {
  
    padding-top: 70px;
}
.c4-card__link {
        font-size: 16px;
    }


  .c4-expanded__header { flex-direction: column; }

  .c4-card {
    flex: 1 1 100%;
    aspect-ratio: 16 / 9;
      min-height: auto;
  }
.c4-center-badge img {
	max-width: 60%;
	max-height: 60%;
	
}
.c4-expanded__heading {
	flex: 1 1 auto;
}
    .c4-expanded {
	border-radius: 50% / 300px;
        padding: 150px 15% 250px;
}
    .c4-expanded__inner {
	padding: 0;
}
  .c4-section-bottom .c4-intro {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding-bottom: 60px;
  }

  .c4-section-bottom .c4-intro__right {
    text-align: center;
  }

  .c4-section-bottom .c4-intro__circle {
    width: 120px;
    height: 120px;
  }

  .c4-section-bottom .c4-circle__bg {
    width: 120px;
    height: 120px;
  }
  .c4-section-bottom .c4-intro {
    align-items: center;
    justify-content: center;
}
.vs-media__img {
    border-radius: 12px;
}
.vs-section {
    height: auto;
}
.btsm-section.sh-section .sh-media {
    margin: 60px 0px 0;
    position: fixed;
    border-radius: 12px;
    overflow: hidden;
    height: 690px;
    width: 100%;
}
    .btsm-section__media {
	position: relative;
	padding: 0 22px;
        overflow: hidden;
}
.btsm-section.btsm-is-fixed .btsm-section__media-inner, 
.btsm-section.btsm-is-after .btsm-section__media-inner {
    width: 100%;
    margin: 0;
    left: 0;
}
.btsc-section {
    margin: 0;
}
    .btsm-section.sh-section .sh-media.is-released {
        position: static;
    }
   .ps-section {
    padding: 60px 0px;
    margin: 0;
}

    .ps-section .ps-section__steps {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .ps-section .ps-section__step {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    .ps-section .ps-section__step::before {
        position: absolute;
        content: "";
        background-image: url(/wp-content/uploads/2026/04/ps_arrow_left.png);
        background-repeat: no-repeat;
        top: 100%;
        left: 50%;
        width: clamp(40px, calc(40px + 32 * ((100vw - 768px) / 832)), 72px);
        aspect-ratio: 72 / 32;
        background-size: contain;
        transform: rotate(90deg) translate(0%, 100%);
    }
    .ps-section .ps-section__step-label::before,
    .ps-section .ps-section__step:last-child::before {
        display: none;
    }
    .phs-section .phs-step {
        flex: 0 0 100%;
    }
    .phs-progress-line {

        position: relative;
    }
        .phs-step {
        flex: 0 0 clamp(560px, 58vw, 820px);
    }
    .phs-step__title {
	font-size: 30px;
}
.phs-track {
    padding-top: 0;
}
.phs-step-dot {
    justify-content: flex-start;
}
.phs-step-dot::before {
    left: 6px;
}
.phs-section .phs-num_wrap {
    left: 26px;
}
    .p30.ps-section__eyebrow {
        font-size: 20px;
        text-align: center;
    }


.hb-header__logo-wrap {
    gap: 10px;
}

.hb-header__breadcrumb-title {
    font-size: 14px;
    line-height: 1;
}

.hb-header__inner {
    gap: 15px;
}

.section-split-hero .txt {
    font-size: 60px;
}

.wn-filter {
    margin-right: 25px;
}

.home .hb-services__body {
    padding-top: 20px;
}

.cq-line {
    margin-bottom: 75px;
}

.cl-section .cl-tooltip__photo {
    flex: 0 0 45%;
}

.hb-hero .hb-hero__how {
    width: 90%;
}

.hb-hero .hb-hero__col--right .hb-hero__word {
    right: -30px;
}

.hb-hero .hb-hero__col--left {
    left: 0;
}

.cq-col--center {
    margin: 30px auto 0;
}

.section-split-hero .cq-col.cq-col--left {
    order: 3;
}

.section-split-hero .cq-col--left,
.section-split-hero .cq-col--right {
    flex-basis: 100%;
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    margin: 0 auto;
}

.section-split-hero .cq-col--center {
    order: -1;
    /* center content first on mobile */
}

.section-split-hero .cq-col--left iframe.sh-media-video,
.section-split-hero .cq-col--right iframe.sh-media-video,
.section-split-hero .sh-media--left iframe.sh-media-video,
.section-split-hero .sh-media--right iframe.sh-media-video {
    transform: translate(-50%, -50%) scale(2) !important;
}

.section-split-hero .sh-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}

.section-split-hero .sh-media--left {
    grid-column: 1;
    grid-row: 1;
    min-height: 200px;
    margin-top: 0;
}

.section-split-hero .sh-content {
    grid-column: 1 / -1;
    grid-row: 2;
}

.section-split-hero .sh-media--right {
    grid-column: 2;
    grid-row: 1;
    min-height: 200px;
    margin-top: 0;
}

.section-split-hero .sh-media--left::after,
.section-split-hero .sh-media--right::after {
    display: none;
}

.section-split-hero .sh-heading {
    font-size: clamp(40px, 8vw, 64px);
}

.hb-test__card {
    flex: 0 0 70%;
}

.hwdi__track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
    padding-bottom: 0;
}

.hwdi__track::after,
.hwdi__tick {
    display: none;
}

.hwdi__label {
    font-size: clamp(16px, 4vw, 28px);
}

.section-how-we-do-it .hwdi__track {
    grid-template-columns: 1fr 1fr;
    row-gap: 100px;
}

.hwdi__item:first-child .hwdi__num,
.hwdi__item:first-child .hwdi__label {
    transform: translateY(-80px);
}

.hwdi__item:nth-child(3) .hwdi__num,
.hwdi__item:nth-child(3) .hwdi__label {
    transform: translateY(-80px);
}

.hwdi__item:nth-child(2) .hwdi__num,
.hwdi__item:nth-child(2) .hwdi__label {
    transform: translateY(-100px);
}

.hwdi__item:nth-child(4) .hwdi__num,
.hwdi__item:nth-child(4) .hwdi__label {
    transform: translateY(-100px);
}

.section-how-we-do-it .hwdi__timeline {
    padding-inline: 0;
}

.section-how-we-do-it .hwdi__cols {
    flex-direction: column;
    align-items: unset;
}

.section-how-we-do-it .hwdi__deco--right {
    text-align: right;
}

.section-how-we-do-it .hwdi__col--center {
    padding: 20px;
}

.section-service-video .sv-services li {
    font-size: 14px;
}

.vs-scroll-space {
    height: 180vh;
}

.vs-media {
    height: 50vh;
    max-height: 400px;
    clip-path: inset(12% 20% round 12px);
    padding: 0 20px;
    border-radius: 12px;
}

.vs-play {
    width: 60px;
    height: 60px;
    border-radius: 40px;
}

.vs-play svg {
    width: 60px;
    height: 60px;
}

.vs-cta__link {
    font-size: 16px;
}

.stc-wrap {
    flex-direction: column;
    gap: 20px;
}

.stc-left {
    width: 100%;
}

.ssn-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 16px;
}

.ssn-title {
    max-width: 100%;
}

.ssn-links {
    gap: 12px;
}

.si-slide {
    height: 380px;
}

.si-slide.is-active {
    width: 82vw;
}

.si-slide:not(.is-active) {
    width: 36px;
}

.si-slide__glass {
    width: 100%;
    border-radius: clamp(10px, 1vw, 16px);
    padding: 20px;
}

.sh-top {
    margin-bottom: 40px;
}

.sh-top__heading {
    margin-bottom: 0;
    max-width: 100%;
}

.sh-media {
    border-radius: 0;
}

.sd-wrap {
    flex-direction: column;
    gap: 24px;
}

.sd-left {
    width: 100%;
}

.sd-right {
    flex-direction: column;
    gap: 8px;
}

.gl-grid {
    grid-template-columns: 1fr;
}

.gl-filters__row {
    flex-direction: column;
}

.gl-filter-wrap {
    flex: 1 1 auto;
}

.gl-card__media {
    aspect-ratio: 4 / 3;
}

.gl-card__tag {
    font-size: 22px;
}



.gl-card__btn {
    font-size: 13px;
    padding: 10px 20px;
}

.tm-popup__layout {
    flex-direction: column;
}

.tm-popup__left {
    flex: none;
    height: 50%;
    width: 100%;
    position: relative;
}

.tm-popup__right {
    flex: 1;

}

.tm-popup__box {
    height: 80vh;
    max-height: none;
}

.tm-card__role {
    font-size: 14px;
}

.tm-body {
    padding-bottom: 30px;
}

.bts-scroll-space {
    height: 220vh;
}

.bts-section__init-grid {
    padding: 0 16px;
}

.bts-section__heading--initial {
    font-size: 36px;
}

.bts-section__media {
    clip-path: inset(8% 4% round 12px);
}

.bts-section__glass,
.bts-section__glass-content {
    top: 20%;
}

.bts-section__glass-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px 16px;
    gap: 12px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.bts-section__glass-left,
.bts-section__glass-right {
    align-self: flex-start;
}

.bts-section__glass-right {
    margin-top: auto;
}

.bts-section__glass-center {
    padding: 0;
    max-width: 100%;
}

.bts-section__heading--scroll {
    font-size: 28px;
}

.bts-section__body p {
    font-size: 14px;
    line-height: 1.5;
}

.bts-section__scroll-cta {
    font-size: 12px;
    padding: 8px 20px;
}

.bts-section__cta-btn {
    font-size: 13px;
    padding: 10px 24px;
}

.hb-about__inner {
    flex-direction: column;
}

.hb-about__col--right {
    order: -1;
}

.hb-about__col--left {
    order: -2;
}

.hb-about__overlay-text {
    text-align: center;
}

.hb-about__col--right .hb-about__heading {
    padding: 95px 0 0 0;
}

.hb-about__col--center {
    margin: 40px auto;
    text-align: center;
}

.hb-about__ctas {
    justify-content: center;
}

.hb-about::before {
    display: none;
}

.hb-about__inner {
    padding-left: 15px;
    padding-right: 15px;
}

.wn-card {
    flex: 0 0 clamp(220px, 65vw, 320px);
    height: clamp(300px, 55vw, 420px);
}

.wn-popup__grid {
    flex-direction: column;
    min-height: auto;
}

.wn-popup__left {
    height: 100%;
    background-position: top center;
    width: 100%;
}

.wn-popup__box {
    height: 75vh;

}

.wn-popup__ctas {

    align-items: flex-start;
    gap: 16px;
}

.wn-popup__btn--pri {
    width: auto;
    text-align: center;
    justify-content: center;
}

.wn-filters {
    padding-left: 20px;
    padding-right: 20px;
}

.wn-popup__right {
    padding: 25px;
}





.hb-test__card:hover,
.hb-test__card.is-hovered {
    height: 80vw;
    max-height: 600px;
}

.hb-test__category {
    font-size: 5vw;
    top: 4vw;
    left: 4vw;
}

.hb-test__panel {
    padding: 27px 25px 0px;
}

.hb-blog__card {
    flex: 1 1 100%;
}

.hb-test__card:hover .hb-test__panel,
.hb-test__card.is-hovered .hb-test__panel {
    padding: 35px 25px;
}



.hb-cta__inner {
    flex-wrap: wrap;
}

.hb-cta__side {
    flex: 1 1 50%;
}

.hb-cta__centre {
    flex: 1 1 100%;
    padding: 0 1.5rem 1.5rem;
    align-items: center;
}



.hb-cta__side--left .hb-cta__bleed-text,
.hb-cta__side--right .hb-cta__bleed-text {
    transform: none;
}

.hb-cta__body {
    text-align: center;
}

.hb-footer__main {
    flex-direction: column;
}

.hb-footer__form-row {
    flex-direction: column;
}

.hb-footer__submit {
    width: 100%;
    align-self: stretch;
    text-align: center;
}

.hb-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
}

.hb-footer__social {
    margin-top: 0.5rem;
}


.prt-col__img img {
    max-width: 320px;
}

.prt-col__img {
    max-width: 320px;
}

.prt-col--left,
.prt-col--right {
    flex: 0 0 100%;
    min-height: 300px;
}

.prt-col--right {
    order: 2;
}

.prt-col--center {
    padding: 40px 20px;
}

.prt-col--left .prt-col__heading {
    top: 40px;
    padding-left: 16px;
}

.prt-col__heading--right {
    bottom: 40px;
    padding-right: 16px;
}

.grw-inner {
    padding: 0 20px;
}

.grw-item__trigger {
    font-size: 34px;
    padding: 24px 22px;
}

.grw-item__heading {
    font-size: 34px;
}

.grw-item__card {
    min-height: 320px;
    padding: 24px;
    border-radius: 14px;
}

.grw-item__stat-number {
    font-size: 52px;
}

.tm-body {
    padding-bottom: 30px;
}

.hb-footer {
    position: relative;
}

.vc-top {
    align-items: unset;
    flex-direction: column;
}

.vc-top__left,
.vc-top__right {
    flex: 0 0 100%;
}

.vc-card {
    flex: 0 0 clamp(240px, 75vw, 340px);
}

.roi-card__desc,
.roi-card__caption {
    font-size: 14px;
}

.roi-card .roi-wrap {
    padding-bottom: 15px;
}

.roi-card .roi-wrap {
    gap: 15px;
}

.roi-card {
    flex: 0 0 100%;
    border-right: none !important;
    padding: 28px 20px;
}

.roi-stats {
    padding: 0 20px;
}

.roi-intro {
    padding: 0 20px;
    margin-bottom: 24px;
}

.ctas-inner {
    gap: 50px;
}

.svq-play {
    width: 50px;
    height: 50px;
}

.svq-play svg {
    width: 22px;
    height: 22px;
}

.svq-glass {
    justify-content: flex-start;
    width: 100%;
}

#solution {
    margin-bottom: 0px;
}

.cl-section .cl-grid {
    flex-direction: column;
    gap: 0;
}
.cl-col.cl-col--label {
    padding: 35px 0 15px;
}

.cl-col:last-child .cl-item:first-child {
    border-top: none;
}

.cl-tooltip {
    display: none;
}

.sm-grid--two .sm-item,
.sm-grid--three .sm-item {
    flex: 0 0 100%;
    max-width: 100%;
}

.gl-section .gl-filter-wrap {
    flex: 0 0 auto;
}

.svq-watch {
    gap: 6px;
    padding: 12px 28px;
    font-size: 14px;
}

.svq-media img {
    height: 488px;
}

.section-how-we-do-it .hwdi__item::before {
    content: '';
    position: absolute;
    bottom: 28px;
    left: -9%;
    width: 121%;
    height: 19px;
    transform-origin: left center;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    z-index: 1;
    background: url(/wp-content/uploads/2026/04/line-full.png) no-repeat bottom;
    background-size: contain;
}

.section-how-we-do-it .hwdi__item:first-child::after {
    height: 38px;
    bottom: 24px;
}

.section-how-we-do-it .hwdi__item:nth-child(2)::after {
    height: 48px;
    bottom: 24px;
}

.section-how-we-do-it .hwdi__item:nth-child(3)::after {
    height: 48px;
    bottom: 24px;
}

.section-how-we-do-it .hwdi__item:nth-child(4)::after {
    height: 42px;
    bottom: 24px;
}

.section-split-hero .cq-inner {
    flex-direction: column;
}
}

@media (max-width: 677px) {
    .hb-blog__filters {
    flex-wrap: wrap !important;
}
    .sh-section .sh-media {
        aspect-ratio: auto !important;
    }

    .sh-section.sh-is-fixed .sh-media,
    .sh-section.sh-is-after .sh-media {
        aspect-ratio: auto;

    }

    

    .btsm-section.sh-section.sh-is-fixed .sh-media,
    .btsm-section.sh-section.sh-is-after .sh-media {
        aspect-ratio: 9 / 16;

    }

    .btsc-section .btsc-section__inner {
        flex-direction: column;
    }

    .btsc-section .btsc-section__col--right {
        left: 85%;
        order: 2;
    }

    .btsc-section .btsc-section__col--center {
        order: 3;
    }

    .btsc-section .btsc-section__col--right {
        top: 0;
    }

    .gs-gradient {
        padding: 80px 0 30px;
    }

    .gs-header {
        flex-direction: column;
        padding: 0 16px;
        gap: 10px;
    }



    .gs-header__body {
        font-size: 16px;
    }

    .gs-track {
        padding: 0 16px;
    }

 

    .gs-card__glass {
        top: 12px;
        left: 12px;
        bottom: 12px;
        width: 55%;
        padding: 16px;
    }

    .gs-card__quote {
        font-size: 16px;
    }

    .gs-card__stat-num {
        font-size: 48px;
    }

    .gs-card__stat-text {
        font-size: 16px;
    }

    .gs-card__overlay-text {
        font-size: 24px;
        right: 16px;
        
    }

    .gs-cta {
        padding: 20px 16px 0;
    }
.industry_gs_section .gs-cta {
	padding: 40px 16px 0;
}
    .cls-top {
        padding: 0 16px 30px;
    }

    .cls-card {
        width: 260px;
    }

    .cls-card--offset {
        margin-top: 30px;
    }

    .cls-card__img {
        aspect-ratio: 3 / 4;
    }

    .cs-top {
        padding: 0 16px;
        padding-bottom: 30px;
    }

    .cs-top__heading {
        font-size: 38px;
    }

    .cs-top__body {
        font-size: 15px;
    }

    .cq-card {
        padding: 24px 16px;
    }

    .cq-inner {
        flex-wrap: wrap;
    }

    .cq-col--left {
        width: 45%;
    }

    .cq-col--right {
        width: 45%;
        margin-top: 0;
        order: -1;
        margin-left: auto;
    }

    .cq-col--center {
        width: 100%;
        flex: 0 0 100%;
    }

    .section-split-hero .cq-col--center {
        width: unset;

    }

    .cq-quote {
        font-size: 18px;
    }

}

@media (max-width: 640px) {
 .hb-comparison__cell--feature {
        flex:  0 0 120px;
        width: 120px;
    }

    .hb-comparison__feature-text {
        font-size: 16px;
    }
    .hb-comparison__cell {
        padding:10px;
    }
        .hb-mode-compare__cell--center {
        flex:  0 0 80px;
        width: 80px;
    }

    .hb-mode-compare__center-label {
        font-size: 12px;
    }

    .hb-mode-compare .hb-comparison__col-label {
        font-size: 18px;
    }
    .hb-grid-2,
    .hb-grid-3,
    .hb-grid-4 {
        grid-template-columns: 1fr;
    }

    .hb-header__cta {
        display: none;
    }

    .hb-nav-overlay__link {
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.75rem 0;
    }

    .hb-nav-overlay__link-label {
        font-size: 1.0625rem;
        min-width: 0;
    }

    .hb-nav-overlay__link-desc {
        font-size: 0.8125rem;
    }

    .hb-about,
    .hb-about__inner {
        min-height: auto;
    }

    .hb-about__inner {
        grid-template-columns: 1fr;
    }

    .hb-about__col--center {
        grid-row: 2;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hb-about__col--right {
        grid-row: 3;
        justify-content: flex-start;
    }

}

@media (max-width: 600px) {
    .section-service-video .sv-services {
        grid-template-columns: 1fr;
    }

    .section-service-video .sv-content {
        gap: 20px;
    }

    .mob-ow-block {
        height: 60vw;
        max-height: 320px;
    }

    .col-left {
        padding: 24px 16px 0;
    }

    .col-left .hb-about__heading {
        font-size: clamp(2.2rem, 11vw, 3.5rem);
    }

    .col-right {
        padding: 0 16px 24px;
    }

    .col-right .hb-about__heading,
    .col-right .hb-about__overlay-text {
        font-size: clamp(2.2rem, 11vw, 3.5rem);
    }

    .col-center {
        padding: 16px 16px 30px;
    }

    .hb-about__ctas {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        margin-top: 25px;
    }

    .col-right .hb-about__heading {
        margin-top: 40px;
    }
}

@media (max-width: 580px) {
    .hb-services__inner {
        grid-template-columns: 1fr;
    }

    .hb-services__col--left {
        grid-row: 1;
    }

    .hb-services__col--center {
        grid-row: 2;
        grid-column: 1 / 3;
        padding: 2rem clamp(2rem, 2vw, 2rem) 2rem;
    }

    .hb-services__col--right {
        justify-content: flex-start;
    }

    .hb-services {
        padding-bottom: 7rem;
    }
    .phs-section .phs-content_wrap {
	gap: 20px;
        align-items: flex-start;
	flex-direction: column;
    height: 500px;
}
    .phs-section .phs-num_wrap {
	top: 0;
}


}

@media(max-width:480px) {
    .gs-bg-circle svg {
    width: 100%;
    height: 100%;
}
.gs-quad--tr {
    margin-bottom: 200px;
}
   .landing_roi .roi-card {
    padding: 24px 0px;
}
        .hb-pain-grid__card {
        flex: 1 1 100%;
    }
    .user-bio-section__top {
        flex-wrap: wrap;
    }
    .user-bio-section__social {
        width: 100%;
        padding-top: 0;
    }
    .c4-expanded {
	border-radius: 50% / 200px;
            padding: 150px 15% 150px;
}
        .c4-card__link {
	font-size: 14px;
	
}
    .hb-header__logo {
        max-width: 140px;
    }

    .hb-header__hamburger {
        width: 30px;
        height: 19px;
    }

    .home .client_success .hb-services__col.hb-services__col--center {
        padding-top: 50px;
    }

    .section-split-hero .sh-grid {
        grid-template-columns: 1fr;
    }

    .section-split-hero .sh-media--left {
        grid-column: 1;
    }

    .section-split-hero .sh-media--right {
        display: none;
    }

    .hwdi__track {
        grid-template-columns: 1fr;
    }

    .vs-scroll-space {
        height: 160vh;
    }

    .vs-media {
        clip-path: inset(10% 15% round 10px);
    }

    .si-slide {
        height: 340px;
    }

    .si-slide.is-active {
        width: 88vw;
    }

    .si-slide:not(.is-active) {
        width: 24px;
    }

    .si-slide__del-list li {
        font-size: 13px;
    }

    .bts-scroll-space {
        height: 180vh;
    }

    .bts-section__heading--initial {
        font-size: 28px;
    }

    .bts-section__media {
        clip-path: inset(10% 3% round 10px);
    }

    .bts-section__glass,
    .bts-section__glass-content {
        top: 15%;
    }

    .bts-section__heading--scroll {
        font-size: 22px;
    }

    .bts-section__body p {
        font-size: 13px;
    }

    .bts-section__cta-btn {
        font-size: 12px;
        padding: 8px 20px;
        margin-top: 12px;
    }

    h2 {
        font-size: 38px;
    }

    .prt-col--left,
    .prt-col--right {
        min-height: 240px;
    }

    .prt-col--center {
        padding: 32px 16px;
        gap: 28px;
    }

    .grw-inner {
        padding: 0 16px;
    }

    .grw-item__trigger {
        font-size: 30px;
        /* flex-direction: column; */
        align-items: flex-start;
        gap: 4px;
        padding: 20px 22px;
    }

    .grw-item__label {
        text-align: left;
    }

    .grw-item__card {
        min-height: 280px;
        padding: 20px;
    }

    .grw-item__heading {
        font-size: 30px;
    }

    .grw-item__stat-number {
        font-size: 44px;
    }

    .grw-item__dot {
        width: 18px;
        height: 18px;
        top: 20px;
        right: 20px;
		line-height:1.4;
		font-size: 14px;
    }

    .tm-card {
        flex: 0 0 100%;
    }

    .roi-card__desc,
    .roi-card__caption {
        font-size: 13px;
    }

    .roi-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px 16px;
    }

    .roi-intro {

        padding: 0 16px;
    }

    .roi-stats {
        padding: 0 16px;
    }

    .svq-glass__quote p {
        line-height: 1.5;
    }

    .svq-media img {
        height: 508px;
    }

    .ssn-link {
        font-size: 14px;
    }

    .svo-stat__text {
        max-width: 300px;
    }

    .section-split-hero .txt {
        font-size: 46px;
    }
    .gs-card__overlay-text {
	font-size: 21px;
	right: 0;
}
.hb-hero-form__body {
    margin-bottom: 10px;
}
}

@media (max-width: 400px) {
    .mob-ow-block {
        height: 65vw;
        max-height: 260px;
    }

    .col-left .hb-about__heading {
        font-size: clamp(1.8rem, 10vw, 2.8rem);
    }

    .col-right .hb-about__heading,
    .col-right .hb-about__overlay-text {
        font-size: clamp(1.8rem, 10vw, 2.8rem);
    }

    .hb-about__cta-primary {
        padding: 11px 28px;
        font-size: 0.85rem;
    }

    .svq-media img {
        height: 608px;
    }
}

@media (max-width: 360px) {
    .svq-media img {
        height: 648px;
    }
}
