/* Global Resets */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #0f1115;
}
html {
    scroll-behavior: smooth;
}
/* Menu Button */
.openbtn {
    width: 2.5rem;
    height: 2.5rem;
    position: relative;
    background: transparent;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.openbtn span {
    display: block;
    position: absolute;
    left: 50%;
    width: 60%;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    transform: translateX(-50%);
    transition: all 0.4s;
}
.openbtn span:nth-of-type(1) { top: 14px; }
.openbtn span:nth-of-type(2) { top: 23px; }
.openbtn span:nth-of-type(3) { top: 32px; }

.openbtn.active span:nth-of-type(1) {
    top: 23px;
    transform: translateX(-50%) translateY(0) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
    top: 23px;
    transform: translateX(-50%) translateY(0) rotate(45deg);
}

#mainNav.nav-hidden ~ .openbtn {
    transform: translateY(-100px);
    opacity: 0;
    pointer-events: none;
}

/* Full-Screen Navigation Menu */
#mainNav {
    top: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
    background-color: transparent !important;
}

#mainNav.nav-solid {
    background-color: #343434 !important;
}

#mainNav.nav-hidden {
    transform: translateY(-100%);
}

.custom-menu-bg { background-color: transparent; }

#fullScreenMenu.offcanvas-top {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    background-color: transparent;
    visibility: hidden;
    z-index: 1055;
    border: none;
}

/* rotated wrapper — holds ONLY the two green diagonal slices */
#fullScreenMenu .diagonal-slices {
    position: absolute;
    top: -50%;
    left: -50%;
    height: 200%;
    width: 200%;
    transform: rotate(-15deg) translate3d(0,0,0);
    z-index: 0;
}
#fullScreenMenu .diagonal-slices::before,
#fullScreenMenu .diagonal-slices::after {
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    width: 100%;
    height: 80%;
    background-color: #676967;
    transform-origin: center center;
    transition: all 500ms ease;
    will-change: transform;
}
#fullScreenMenu .diagonal-slices::before {
    top: 51%;
    transform: translate(100%, -100%) translate3d(0,0,0);
}
#fullScreenMenu .diagonal-slices::after {
    top: 49%;
    transform: translate(-150%, 0%) translate3d(0,0,0);
    transition-delay: 100ms;
}

/* tile grid — normal, unrotated, sits on top */
#fullScreenMenu.offcanvas-top > .row {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 1;
}

#fullScreenMenu.offcanvas-top.open {
    visibility: visible;
}
#fullScreenMenu.offcanvas-top.open .diagonal-slices::before {
    animation: menu-in-left 500ms ease;
    transform: translate(-50%, -100%) translate3d(0,0,0);
    transition-duration: 0ms;
}
#fullScreenMenu.offcanvas-top.open .diagonal-slices::after {
    animation: menu-in-right 500ms ease 100ms;
    transform: translate(-50%, 0%) translate3d(0,0,0);
    transition-duration: 0ms;
}

#fullScreenMenu.offcanvas-top.open .menu-tile {
    opacity: 1;
    transform: translateX(0px) translate3d(0,0,0);
    transition: all 250ms ease;
}
#fullScreenMenu.offcanvas-top .menu-tile {
    opacity: 0;
    transform: translateX(-15px) translate3d(0,0,0);
    transition: all 100ms ease 100ms;
    border: none;
}
#fullScreenMenu.offcanvas-top.open .tile-1 { transition-delay: 300ms; }
#fullScreenMenu.offcanvas-top.open .tile-2 { transition-delay: 350ms; }
#fullScreenMenu.offcanvas-top.open .tile-3 { transition-delay: 400ms; }
#fullScreenMenu.offcanvas-top.open .tile-4 { transition-delay: 450ms; }
#fullScreenMenu.offcanvas-top.open .tile-5 { transition-delay: 500ms; }
#fullScreenMenu.offcanvas-top.open .tile-6 { transition-delay: 550ms; }

@keyframes menu-in-left {
    0% { transform: translate(-150%, -100%) translate3d(0,0,0); }
    100% { transform: translate(-50%, -100%) translate3d(0,0,0); }
}
@keyframes menu-in-right {
    0% { transform: translate(100%, 0%) translate3d(0,0,0); }
    100% { transform: translate(-50%, 0%) translate3d(0,0,0); }
}

.menu-tile-big { flex: 2; }

.menu-tile-highlight {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 250ms ease, width 250ms ease, height 250ms ease, background-color 250ms ease, opacity 200ms ease;
}
.menu-tile-highlight .menu-tile-title,
.menu-tile-highlight .menu-tile-title-sm,
.menu-tile-highlight .menu-tile-sub {
    color: #FFFFFF !important;
}

#fullScreenMenu.offcanvas-top > .row {
    position: relative;
}

.menu-tile {
    position: relative;
}

.menu-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: inherit;
}

/* Grayscale gradient per tile */
.tile-1 { background-color: #434343; }
.tile-2 { background-color: #C3C3C3; }
.tile-3 { background-color: #595959; }
.tile-4 { background-color: #717171; }
.tile-5 { background-color: #8A8A8A; }
.tile-6 { background-color: #B1B1B1; }

.menu-tile-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-transform: uppercase;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 6;
}

.menu-tile-title-sm {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 6;
}

.menu-tile-sub {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    margin-top: 8px;
    position: relative;
    z-index: 6;
}

.menu-tile:hover .menu-tile-title,
.menu-tile:hover .menu-tile-title-sm { transform: scale(1.05); }

/* tiles white text */
.tile-1 .menu-tile-title, .tile-1 .menu-tile-sub,
.tile-2 .menu-tile-title, .tile-2 .menu-tile-sub,
.tile-3 .menu-tile-title-sm, .tile-3 .menu-tile-sub,
.tile-4 .menu-tile-title-sm, .tile-4 .menu-tile-sub,
.tile-5 .menu-tile-title-sm, .tile-5 .menu-tile-sub,
.tile-6 .menu-tile-title-sm, .tile-6 .menu-tile-sub {
    color: #FFFFFF;
}
.tile-1 .menu-tile-sub, .tile-2 .menu-tile-sub, .tile-3 .menu-tile-sub,
.tile-4 .menu-tile-sub, .tile-5 .menu-tile-sub, .tile-6 .menu-tile-sub {
    color: rgba(255,255,255,0.7);
}

.openbtn {
    width: 2.5rem;
    height: 2.5rem;
    position: relative;
    background: transparent;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.openbtn span {
    display: block;
    position: absolute;
    left: 50%;
    width: 60%;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    transform: translateX(-50%);
    transition: all 0.4s;
}
.openbtn span:nth-of-type(1) { top: 14px; }
.openbtn span:nth-of-type(2) { top: 23px; }
.openbtn span:nth-of-type(3) { top: 32px; }

.openbtn.active span:nth-of-type(1) {
    top: 23px;
    transform: translateX(-50%) translateY(0) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
    top: 23px;
    transform: translateX(-50%) translateY(0) rotate(45deg);
}

#mainNav.nav-hidden ~ .openbtn {
    transform: translateY(-100px);
    opacity: 0;
    pointer-events: none;
}

/*   Brand Logo */
.custom-logo {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

/*  Hero Stage (video background + scramble text) */
.hero-stage {
    position: relative;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    overflow: hidden;
    background-color: #0f1115; /* fallback while video loads */
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    filter: grayscale(100%);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 64px;
    color: #FFFFFF;
    border-left: 5px solid #2BB454;
    padding-left: 24px;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

.hero-scramble-text {
    display: flex;
    flex-wrap: wrap;
}

.hero-scramble-text .char {
    display: inline-block;
    white-space: pre;
}

/*  Cases Section */
.cases-section {
    background-color: #343434;
}

.portfolio-subtext {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #BBBBBB;
    letter-spacing: 1px;
}

.cases-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 64px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.cases-desc {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #BBBBBB;
    line-height: 30px;
    max-width: 600px;
}

.filter-link {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #BBBBBB;
    transition: color 0.3s ease;
}

.filter-link:hover, .filter-link.active {
    color: #2BB454;
}

/*  Bento Grid Layout */
.custom-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 14px;
    row-gap: 14px;
    grid-auto-rows: 240px; /* shorter base unit — affects tile3, tile4, etc. */
    max-width: 100%;
    margin: 0 auto;
    background-color: #343434;
}

.wide-tile {
    grid-column: span 2;
    grid-row: span 2; /* now taller than the small tiles beside it */
}

.tall-tile {
    grid-row: span 2;
}

/* MixItUp requires the tiles to be hidden by default */
.tile {
    display: none; 
    width: 100%;
    height: 100%;
    border: none !important;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: #343434;
    outline: 1px solid #343434;
    outline-offset: -0.5px;
}

.tile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    border-radius: 0;
    transform: scale(1.02);
}

/* Wide tiles span 2 columns, tall tiles span 2 rows — sizing comes purely
   from the grid track spans above, so everything always lines up regardless
   of each source image's native crop ratio. */
.wide-tile {
    grid-column: span 2;
}

.tall-tile {
    grid-row: span 2;
}

/*  Hover Caption Tile */
.tile .tile-caption-overlay {
    position: absolute;
    inset: 12px;
    box-sizing: border-box;
    border: 2px solid transparent;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.tile:hover .tile-caption-overlay {
    opacity: 1;
    border-color: #2BB454;
}

.tile-caption-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tile-caption-name {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #FFFFFF;
}

.tile-caption-role {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #BBBBBB;
}

.tile-caption-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: inline-flex;
    color: #2BB454;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

/* Explore More Button (star-burst) */
.btn-explore-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 35px;
  background: #2BB454;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  border: 2px solid #2BB454;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(43,180,84,0.55);
  transition: all 0.3s ease-in-out;
  overflow: visible;
}
.btn-explore-pill .star-1 { position:absolute; top:45%; left:20%; width:19px; height:auto; filter:drop-shadow(0 0 0 #2BB454); z-index:-5; transition: all 1s cubic-bezier(0.05,0.83,0.43,0.96); }
.btn-explore-pill .star-2 { position:absolute; top:45%; left:45%; width:15px; height:auto; filter:drop-shadow(0 0 0 #2BB454); z-index:-5; transition: all 1s cubic-bezier(0,0.4,0,1.01); }
.btn-explore-pill .star-3 { position:absolute; top:40%; left:40%; width:5px;  height:auto; filter:drop-shadow(0 0 0 #2BB454); z-index:-5; transition: all 1s cubic-bezier(0,0.4,0,1.01); }
.btn-explore-pill .star-4 { position:absolute; top:20%; left:40%; width:8px;  height:auto; filter:drop-shadow(0 0 0 #2BB454); z-index:-5; transition: all 0.8s cubic-bezier(0,0.4,0,1.01); }
.btn-explore-pill .star-5 { position:absolute; top:25%; left:45%; width:15px; height:auto; filter:drop-shadow(0 0 0 #2BB454); z-index:-5; transition: all 0.6s cubic-bezier(0,0.4,0,1.01); }
.btn-explore-pill .star-6 { position:absolute; top:5%;  left:50%; width:5px;  height:auto; filter:drop-shadow(0 0 0 #2BB454); z-index:-5; transition: all 0.8s ease; }

.btn-explore-pill:hover {
  background: transparent;
  color: #2BB454;
  box-shadow: 0 0 25px rgba(43,180,84,0.55);
}
.btn-explore-pill:hover .star-1 { top:-40%; left:-30%; filter:drop-shadow(0 0 10px #2BB454); z-index:2; }
.btn-explore-pill:hover .star-2 { top:-25%; left:10%;  filter:drop-shadow(0 0 10px #2BB454); z-index:2; }
.btn-explore-pill:hover .star-3 { top:55%;  left:25%;  filter:drop-shadow(0 0 10px #2BB454); z-index:2; }
.btn-explore-pill:hover .star-4 { top:30%;  left:80%;  filter:drop-shadow(0 0 10px #2BB454); z-index:2; }
.btn-explore-pill:hover .star-5 { top:25%;  left:115%; filter:drop-shadow(0 0 10px #2BB454); z-index:2; }
.btn-explore-pill:hover .star-6 { top:5%;   left:60%;  filter:drop-shadow(0 0 10px #2BB454); z-index:2; }

.btn-explore-pill .fil0 { fill: #2BB454; }
.btn-explore-pill:hover .fil0 { fill: #2BB454; }

/* mobile screens */
@media (max-width: 768px) {
    .custom-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    
    .wide-tile, .tall-tile {
        grid-column: span 1;
        grid-row: span 1;
    }

    .hero-title {
        font-size: 36px;
        padding-left: 16px;
    }

    .cases-title, .services-title {
        font-size: 32px;
    }

    .cases-desc, .services-desc {
        font-size: 14px;
        line-height: 24px;
    }

    .cta-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .cta-title {
        font-size: 22px;
    }

    .service-card {
        padding: 20px 16px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .accordion-button {
        font-size: 14px;
        padding: 16px 4px;
    }

    .accordion-button:not(.collapsed) {
        padding: 16px 16px;
    }

    .accordion-button:not(.collapsed) ~ .accordion-collapse .accordion-body,
    .accordion-item:has(.accordion-button:not(.collapsed)) .accordion-body {
        padding: 8px 16px 16px 16px;
    }

    .footer-heading {
        font-size: 14px;
    }

    .footer-text {
        font-size: 13px;
    }

    .logo-track { height: 50px; }

    .logo-item {
        height: 50px;
    }

    .logo-item img {
        max-height: 50px;
    }

    /* ===== Diagonal full-screen menu: mobile 3x2 layout (flexbox) ===== */

    /* Flatten Bootstrap's nested col/row wrappers so all 6 tiles
       become direct children of one flex container */
    #fullScreenMenu.offcanvas-top > .row {
        display: flex;
        flex-wrap: wrap;
        align-content: stretch;
        height: 100%;
        box-sizing: border-box;
    }

    #fullScreenMenu.offcanvas-top > .row > .col-6,
    #fullScreenMenu .row.g-0.flex-grow-1 {
        display: contents !important;
    }

    /* Each tile takes half the width, a third of the height;
       'order' fixes the visual position regardless of DOM order */
    .tile-1, .tile-2, .tile-3, .tile-4, .tile-5, .tile-6 {
        box-sizing: border-box !important;
        flex: 0 0 calc(50% + 1px) !important;
        max-width: calc(50% + 1px) !important;
        width: calc(50% + 1px) !important;
        height: calc(100% / 3 + 1px) !important;
        margin: -0.5px !important;
        padding: 0 !important;
        border: none !important;
        outline: none !important;
    }

    .tile-1 { order: 1; background-color: #3F3F3F; }
    .tile-2 { order: 2; background-color: #C6C6C6; }
    .tile-3 { order: 3; background-color: #5A5A5A; }
    .tile-4 { order: 4; background-color: #B0B0B0; }
    .tile-5 { order: 5; background-color: #6F6F6F; }
    .tile-6 { order: 6; background-color: #8A8A8A; }

    .menu-tile-title,
    .menu-tile-title-sm {
        font-size: 1.4rem;
    }

    .menu-tile-sub {
        font-size: 0.75rem;
        margin-top: 4px;
    }
}

/* Services Section */
.services-section {
    background-color: #FFFFFF;
}

.services-subtext {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #999999;
    letter-spacing: 1px;
}

.services-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #111111;
}

.services-desc {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 26px;
    max-width: 600px;
}

.service-card {
    border: 1px solid #E5E5E5;
    padding: 32px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
}

.service-icon-box {
    width: 48px;
    height: 48px;
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    color: #111111;
}

.service-icon-box svg {
    width: 22px;
    height: 22px;
}

.service-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #111111;
    margin-bottom: 10px;
}

.service-desc {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #777777;
    line-height: 22px;
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-learn-more {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #111111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.service-learn-more .arrow-icon {
    width: 12px;
    height: 12px;
    transition: color 0.3s ease;
}

/* Hover state: border, icon, and Learn More all turn green */
.service-card:hover {
    border-color: #2BB454;
}

.service-card:hover .service-icon-box {
    color: #2BB454;
}

.service-card:hover .service-learn-more,
.service-card:hover .service-learn-more .arrow-icon {
    color: #2BB454;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #343434;
}

.testimonial-card {
    background-color: #FFFFFF;
    padding: 40px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-quote-icon {
    width: 48px;
    height: 38px;
    color: rgba(43, 180, 84, 0.35);
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #333333;
    flex-grow: 1;
    margin-bottom: 28px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #111111;
    margin-bottom: 4px;
}

.testimonial-role {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888888;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #D9D9D9;
    flex-shrink: 0;
}

/*  Client Logos Section (dual-direction marquee) */
.logos-section {
  background-color: #FFFFFF;
}

.marquee {
  display: flex;
  overflow: hidden;
  gap: 100px;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 100px;
  min-width: 100%;
  animation: scroll-x 30s linear infinite;
}
.marquee--reverse .marquee__group {
  animation-direction: reverse;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 100px)); }
}
.marquee img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
}

/* Insight / Blog Section */
.insight-section {
    background-color: #FFFFFF;
}

.insight-view-all {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #2BB454;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.insight-view-all .arrow-icon {
    color: #2BB454;
    width: 12px;
    height: 12px;
}

.blog-card {
    border: 1px solid #E5E5E5;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    background-color: #EEEEEE;
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #999999;
    margin-bottom: 8px;
}

.blog-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #111111;
    margin-bottom: 12px;
}

.blog-desc {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #777777;
    flex-grow: 1;
    margin-bottom: 20px;
}

.blog-read-more {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #2BB454;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-read-more .arrow-icon {
    color: #2BB454;
    width: 12px;
    height: 12px;
}

/* FAQ Section */
.faq-section {
    background-color: #343434;
}

.faq-accordion {
    max-width: 100%;
}

.accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    border-radius: 0;
    margin-bottom: 0;
}

.accordion-button {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    background-color: transparent;
    padding: 20px 4px;
    box-shadow: none;
    border-radius: 0;
    transition: color 0.3s ease, background-color 0.3s ease, padding 0.3s ease, border-radius 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #111111;
    background-color: #F2F2F2;
    box-shadow: none;
    border-radius: 8px 8px 0 0;
    padding: 20px 24px;
    font-weight: 700;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    display: none;
}

.accordion-chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #FFFFFF;
    margin-left: auto;
    transition: color 0.3s ease;
}

.accordion-chevron .v-line {
    transition: opacity 0.3s ease;
}

.accordion-button:not(.collapsed) .accordion-chevron {
    color: #111111;
}

.accordion-button:not(.collapsed) .accordion-chevron .v-line {
    opacity: 0;
}

.accordion-button:not(.collapsed) ~ .accordion-collapse .accordion-body,
.accordion-item:has(.accordion-button:not(.collapsed)) .accordion-body {
    background-color: #F2F2F2;
    color: #666666;
    border-radius: 0 0 8px 8px;
    padding: 8px 24px 20px 24px;
    transition: background-color 0.3s ease, color 0.3s ease, padding 0.3s ease;
}

.accordion-body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #FFFFFF;
    padding: 0 24px 20px 24px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* CTA Banner */
.cta-banner {
    background-color: #4A4A4A;
}

.cta-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: #FFFFFF;
    text-transform: uppercase;
}

.cta-btn {
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    font-family: 'Lato', sans-serif;
    white-space: nowrap;
}

.cta-btn:hover {
    background-color: transparent;
    border-color: #FFFFFF;
    color: #FFFFFF;
}

/* Site Footer */
.site-footer {
    background-color: #FFFFFF;
}

.footer-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.footer-heading {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #111111;
    margin-bottom: 12px;
}

.footer-text {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #555555;
    margin-bottom: 12px;
}

.footer-link {
    color: #555555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #2BB454;
}

.footer-social a {
    color: #111111;
    display: inline-flex;
    transition: color 0.2s ease;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-social a:hover {
    color: #2BB454;
}

.footer-divider {
    border: none;
    border-top: 1px solid #E5E5E5;
    opacity: 1;
}

.footer-bottom {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #999999;
}

/* FAQ "Load More" button */
.faq-load-more {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #2BB454;
    cursor: pointer;
    text-decoration: none;
    text-underline-offset: 3px;
}

.faq-load-more:hover {
    color: #23913F;
}

/* Footer */
.footer-top {
    border-bottom: 1px solid #E5E5E5;
}

.footer-tagline-banner {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2.2vw, 26px);
    color: #FFFFFF;
    text-transform: uppercase;
    max-width: 480px;
    text-align: right;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-tagline-banner:hover {
    color: #2BB454;
}

.footer-main-row {
    border-bottom: 1px solid #E5E5E5;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin-bottom: 10px;
}

.footer-link-list li:last-child {
    margin-bottom: 0;
}

.footer-bottom-slim {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: #999999;
}

@media (max-width: 767px) {
    .footer-tagline-banner { text-align: left; max-width: 100%; }
}

/* Single case */
.more-case-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: #EEEEEE;
}

.more-case-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-cases-section {
    background-color: #2d2d2d;
}

.more-case-tile .tile-caption-overlay {
    position: absolute;
    inset: 12px;
    box-sizing: border-box;
    border: 2px solid transparent;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}

.more-case-tile:hover .tile-caption-overlay {
    opacity: 1;
    border-color: #2BB454;
}

.work-gallery-item a { display: block; }

.chapter-brief-inner {
    display: flex;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 6vw;
}