/* ==========================================================================
   AIIDA — Homepage
   Reusable design-token driven stylesheet.
   Author: rebuilt from Figma export (home-raw.css) + homepage screenshot
   ========================================================================== */

/* -------------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------------- */
:root {
    /* Color */
    --c-bg: #000B21;
    --c-bg-alt: #000F2C;
    --c-panel: #0B1B37;
    --c-panel-alt: #0E2142;
    --c-border: rgba(255, 255, 255, 0.12);
    --c-border-strong: rgba(255, 255, 255, 0.2);
    --c-gold: #D5B13A;
    --c-gold-star: #FAAF37;
    --c-text-body: #D4E8FF;
    --c-text-muted: rgba(212, 232, 255, 0.65);
    --c-white: #FFFFFF;
    --c-navy-deep: #040F24;
    --c-purple-1: #3A2E8C;
    --c-purple-2: #1A1550;
    --warn: #e8843c;
    --ok: #5fbf7a;
    --blue: #4aa8e0;

    /* Type */
    --font-base: 'Onest', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --fs-eyebrow: 0.8125rem;
    --fs-body: 1rem;
    --fs-body-lg: 1.125rem;
    --fs-h1: clamp(2.25rem, 4.2vw, 3.875rem);
    --fs-h2: clamp(1.75rem, 3vw, 2.375rem);
    --fs-h3: clamp(1.125rem, 1.6vw, 1.375rem);

    /* Layout */
    --container-w: 1600px;
    --radius-sm: 10px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-pill: 999px;
    --gap-section: clamp(64px, 9vw, 140px);

    /* Motion */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --arrow-hover-move-x: -110%;
    --transition-base: 0.25s ease;
    --transition-fast: 0.15s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--c-bg);
    color: var(--c-text-body);
    font-family: var(--font-base);
    font-size: var(--fs-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

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

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

.container {
    width: min(100% - 40px, var(--container-w));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: clamp(56px, 7vw, 96px);
}

.section.small {
    position: relative;
    padding-block: clamp(36px, 4vw, 76px);
}

.section--bordered {
    border-top: 1px solid var(--c-border);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.mq-mobile {
    display: none;
}

/* -------------------------------------------------------------------------
   3. Reusable atoms
   ------------------------------------------------------------------------- */

/* Eyebrow pill label, used above every section heading */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--c-gold);
    border-radius: var(--radius-pill);
    font-size: var(--fs-eyebrow);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-gold);
}

.section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.section-head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 56px;
}

.section-head__copy {
    max-width: 640px;
}

.section-title {
    font-size: var(--fs-h2);
    font-weight: 500;
    color: var(--c-white);
    letter-spacing: -0.02em;
    /*    margin-top: 14px;*/
    margin-top: 0;
    line-height: 1.25;
}

.section-title--center {
    margin-inline: auto;
}

.section-sub {
    /*    margin-top: 14px;*/
    margin-top: 0;
    color: var(--c-text-muted);
    font-size: var(--fs-body);
    max-width: 640px;
    line-height: 1.6;
}

.threat-section .section-title {
    color: var(--c-navy-deep);
}

.threat-section .section-sub {
    color: rgba(11, 30, 62, 0.65);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-size: var(--fs-body);
    font-weight: 400;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: all 0.45s var(--ease);
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex: none;
}

svg:not(:root) {
    overflow-clip-margin: content-box;
    overflow: hidden;
}

.btn svg {
    transition: all .2s ease-out 0s;
}

.btn svg path {
    transition: transform .38s cubic-bezier(.37, .08, .02, .93), opacity .18s ease-out;
}

.btn svg path:nth-of-type(1) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: .15s, .15s;
}

.btn svg path:nth-of-type(2) {
    transform: translateX(calc(1 * var(--arrow-hover-move-x)));
    opacity: .5;
    transition-delay: 0s, 0s;
}

.btn:hover svg path:nth-of-type(1) {
    transform: translateX(calc(-1 * var(--arrow-hover-move-x)));
    opacity: 0;
    transition-delay: 0s, 0s;
}

.btn:hover svg path:nth-of-type(2) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: .15s, .15s;
}

.btn--primary {
    background: var(--c-gold);
    color: var(--c-navy-deep);
    box-shadow: 0 6px 9px rgba(0, 0, 0, 0.15);
}

.btn--primary .btn-icon {
    border-color: var(--c-navy-deep);
}

.btn--primary:hover {
    background: var(--c-gold-star);
}

.btn--ghost {
    background:
        linear-gradient(#040F24, #040F24) padding-box,
        linear-gradient(120deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%) border-box;
    border-color: transparent;
    color: var(--c-white);
    backdrop-filter: blur(7px);
}

.btn--ghost:hover {
    background:
        linear-gradient(#040F24, #040F24) padding-box,
        linear-gradient(120deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.45) 100%) border-box;
}

.btn--block {
    width: 100%;
}

.btn--pill {
    border-radius: var(--radius-pill);
}

/* Star rating */
.stars {
    display: inline-flex;
    gap: 2px;
}

.stars svg {
    width: 18px;
    height: 18px;
    fill: var(--c-gold-star);
}

/* Generic dark card */
.card {
    background: var(--c-panel);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

/* Number chip (01, 02 ...) */
.chip-number {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--c-gold);
    font-weight: 500;
}

/*p {
    margin-top: 0;
    color: var(--c-text-muted);
    font-size: var(--fs-body);
    max-width: 640px;
    line-height: 1.6;
}*/

/* -------------------------------------------------------------------------
   4. Header
   ------------------------------------------------------------------------- */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    width: 100%;
    transition: all .7s ease 0s;
    padding-block: 22px;
    z-index: 50;
}

.site-header.sticky {
    position: fixed;
    background: linear-gradient(180deg, rgba(0, 11, 33, 0.92) 0%, rgba(0, 11, 33, 0.6) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding-block: 15px;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--c-white);
    letter-spacing: 0.02em;
}

.custom-logo {
    height: 69px;
    width: auto;
}

.logo__mark {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, var(--c-gold), #6EC1FF, var(--c-gold));
    flex: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 0.9375rem;
    color: var(--c-text-body);
}

.nav__list a:hover {
    color: var(--c-white);
}

.nav__item {
    position: relative;
}

/* Dropdown */
.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 345px;
    background: var(--c-white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 42, 102, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
    z-index: 100;
}

.nav__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    color: var(--c-white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.nav__item-current > .nav__link,
.nav__link:hover {
    color: var(--c-gold);
}

.nav__chevron {
    line-height: 16px;
    margin-top: 5px;
}

.nav__item-current .nav__chevron svg {
    border-color: var(--c-gold);
    transform: rotate(0deg);
    transition: transform var(--transition-fast);
}

.nav__dropdown-inner {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav__dropdown a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 6px 10px;
    gap: 12px;
    font-size: 16px;
    color: var(--c-navy-deep);
    transition: all 0.45s ease-in-out;
    border-radius: 8px;
}

.nav__dropdown a > .nav__sub-item-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 6px;
    border: 1px solid transparent;
    background: linear-gradient(#040F24, #040F24);
    color: var(--c-white);
}

.nav__dropdown a.nav__sub-item-current > .nav__sub-item-icon,
.nav__dropdown a:hover > .nav__sub-item-icon {
    background: rgb(213, 177, 58);
}

.nav__dropdown a.nav__sub-item-current,
.nav__dropdown a:hover {
    background: rgba(213, 177, 58, 0.2);
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    color: var(--c-white);
    font-size: 1.5rem;
}

/* -------------------------------------------------------------------------
   Header nav — animated hamburger + slide-in mobile drawer
   ------------------------------------------------------------------------- */
.nav__drawer {
    width: auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav__cta-desktop {
    display: inline-flex;
}

.nav__drawer-cta {
    display: none;
}

/* Hamburger button */
.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    padding: 0;
    z-index: 60;
}

.nav__toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), width 0.3s var(--ease);
}

/* Hamburger → X animation */
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Right Arrow */
.nav__toggle[aria-expanded="true"].is-arrow {
    gap: 0;
}

.nav__toggle[aria-expanded="true"].is-arrow .nav__toggle-bar:nth-child(1) {
    transform: translateY(3px) translateX(4px) rotate(45deg);
    width: 14px;
    transform-origin: right center;
    background: var(--c-gold);
}

.nav__toggle[aria-expanded="true"].is-arrow .nav__toggle-bar:nth-child(2) {
    width: 22px;
    opacity: 1;
    background: var(--c-gold);
}

.nav__toggle[aria-expanded="true"].is-arrow .nav__toggle-bar:nth-child(3) {
    transform: translateY(-3px) translateX(4px) rotate(-45deg);
    width: 14px;
    transform-origin: right center;
    background: var(--c-gold);
}

/* Backdrop overlay */
.nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 6, 18, 0.6);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
    z-index: 45;
}

.nav__overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* -------------------------------------------------------------------------
   5. Hero
   ------------------------------------------------------------------------- */
.hero {
    position: relative;
    align-content: center;
    padding-top: clamp(82px, 14vw, 142px);
    padding-bottom: clamp(80px, 10vw, 140px);
    overflow: hidden;
    background:
        radial-gradient(60% 50% at 15% 20%, rgba(58, 46, 140, 0.35) 0%, rgba(0, 11, 33, 0) 70%),
        linear-gradient(179deg, rgba(0, 12, 34, 0) 75%, #000B21 99%),
        #000A1F;
    /*min-height: 100dvh;*/
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero:not(.no-after)::after {
    content: '';
    background-image: url(assets/images/video-overlay-v1.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.single-case_study .hero::after {
    transform: rotate(180deg);
}

.hero.inner {
    padding-top: clamp(62px, 12vw, 122px);
    padding-bottom: clamp(60px, 8vw, 100px);
    min-height: 75dvh;
}

.single-case_study .hero.inner {
    background-position: top 20% center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 720px;
    text-align: center;
    z-index: 1;
}

.single-service .hero__content {
    max-width: none;
    text-align: left;
    align-items: flex-start;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hero_badge-inner {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero__badge-text {
    color: var(--c-text-body);
    font-size: 0.825rem;
}

.hero__title {
    font-size: var(--fs-h1);
    font-weight: 500;
    line-height: 1.18;
    color: var(--c-white);
    letter-spacing: -0.01em;
}

.hero.inner .hero__title,
.single-service .hero__title {
    font-size: var(--fs-h2);
}

.hero__title em {
    font-style: normal;
    color: var(--c-gold);
}

.hero__desc {
    font-size: var(--fs-body-lg);
    color: var(--c-text-body);
    max-width: 620px;
    line-height: 1.6;
}

.single-service .hero__desc {
    font-size: var(--fs-body);
    color: var(--c-gold);
    max-width: none
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* -------------------------------------------------------------------------
   6. Trusted-by logo strip
   ------------------------------------------------------------------------- */
.trustbar {
    padding-block: 3vw 0;
}

.trustbar__label {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    color: var(--c-text-muted);
    margin-bottom: 28px;
}

.trustbar__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    min-width: 150px;
    padding: 12px 24px;
    background: var(--c-white);
    border-radius: var(--radius-sm);
    color: var(--c-navy-deep);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.trustbar__logos .logo-chip img {
    width: auto;
    height: 40px;
    object-fit: cover;
}

.trustbar__logos--marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trustbar__track {
    display: flex;
    align-items: center;
    width: fit-content;
    animation: trustbar-scroll 30s linear infinite;
}

.trustbar__track .logo-chip {
    margin-right: 16px;
    flex: none;
}

.trustbar__logos--marquee:hover .trustbar__track {
    animation-play-state: paused;
}

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

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

/* -------------------------------------------------------------------------
   7. Stats / quote panel
   ------------------------------------------------------------------------- */
.stats {
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    margin-top: 3vw;
}

.stats__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.stats__grid.contact {
    align-items: flex-start;
}

.stats__grid-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.stats__quote {
    font-size: var(--fs-h2);
    color: var(--c-white);
    font-weight: 500;
    line-height: 1.4;
    max-width: 680px;
}

.stats__list {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-top: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 150px;
}

.stat__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid var(--c-border-strong);
    border-radius: 50%;*/
    color: var(--c-gold);
}

.stat__label {
    font-size: 0.875rem;
    color: var(--c-text-muted);
}

.stats__globe-wrapper {
    position: relative;
}

.stats__globe-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(assets/images/globe-wrapper-v1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.stats__globe {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -------------------------------------------------------------------------
   8. "Not a Vendor" split section
   ------------------------------------------------------------------------- */
.approach {
    background: var(--c-white);
    color: var(--c-navy-deep);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

#cta .approach {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 388px;
}

.approach__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#cta .approach .approach__grid {
    grid-template-columns: 1.5fr 1fr;
    background: linear-gradient(121deg, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 0) 100%);
}

.approach__left {
    padding: clamp(32px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

#cta .approach .approach__grid .approach__left {
    align-items: flex-start;
}

.approach .eyebrow {
    align-self: flex-start;
    border-color: var(--c-gold);
}

.approach__title {
    font-size: var(--fs-h2);
    font-weight: 500;
    line-height: 1.25;
}

.approach__right {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(4, 15, 36, 0.12);
}

.approach__item {
    padding: clamp(24px, 3vw, 40px);
}

.approach__item + .approach__item {
    border-top: 1px solid rgba(4, 15, 36, 0.12);
}

.approach__item .eyebrow {
    border-color: rgba(4, 15, 36, 0.25);
    color: var(--c-navy-deep);
    margin-bottom: 14px;
}

.approach__item h3 {
    font-size: var(--fs-h3);
    font-weight: 500;
    margin-bottom: 10px;
}

.approach__item p {
    color: rgba(4, 15, 36, 0.7);
    line-height: 1.6;
}

/* -------------------------------------------------------------------------
   9. Feature card grid ("Five Reasons")
   ------------------------------------------------------------------------- */
.reasons {
    background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-alt) 100%) border-box;
    padding-bottom: 0;
}

.no__grad-bg {
    background: var(--c-bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-grid.approach-grid {
    gap: 0 20px;
    align-items: center;
}

.feature-card {
    border: 1px solid transparent;
    background: linear-gradient(#091732, #091732) padding-box, linear-gradient(120deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%) border-box;
    backdrop-filter: blur(7px);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0);
    transition: all 0.45s ease;
}

.feature-card.inline-card {
    padding: 18px;
    flex-direction: row;
}

.feature-card.inline-card.odd {
    flex-direction: row-reverse;
    text-align: right;
}

.feature-grid-img {
    grid-column: 2;
    grid-row: 1 / span 3;
}

.feature-grid-img img {
    height: auto;
}

.feature-card:hover {
    background: linear-gradient(#040F24, #040F24) padding-box, linear-gradient(120deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.45) 100%) border-box;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.25);
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 10px;
    border: 1px solid transparent;
    background: linear-gradient(#040F24, #040F24) padding-box, linear-gradient(120deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%) border-box;
    color: var(--c-white);
    backdrop-filter: blur(7px);
}

.feature-card.inline-card .feature-card__meta {
    max-width: calc(100% - 70px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--c-white);
    transition: all 0.45s ease;
}

.feature-card:hover h3 {
    color: var(--c-gold);
}

.feature-card p {
    color: var(--c-text-muted);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.feature-card--cta {
    background: linear-gradient(135deg, var(--c-purple-1), var(--c-purple-2));
    border: none;
    justify-content: center;
}

.feature-card--cta h3 {
    font-size: 1.375rem;
}

.feature-card--cta .btn {
    margin-top: 8px;
    align-self: flex-start;
}

/* -------------------------------------------------------------------------
   10. "What we do" band + scroller
   ------------------------------------------------------------------------- */
.solve {
    background: var(--c-bg-alt);
    padding-bottom: 0;
}

.solve__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.solve__head .section-head__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.solve__wrapper {
    position: relative;
}

.solve__banner {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 7;
    overflow: hidden;
    margin-top: 32px;
}

.solve__banner-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #0E2142;
    /* fallback tint until a real image is set */
    opacity: 0;
    transition: opacity 0.6s var(--ease);
}

.solve__banner-img.is-active {
    opacity: 1;
}

.solve__banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 10, 26, 0.85) 0%, rgba(0, 10, 26, 0.25) 50%, rgba(0, 10, 26, 0.1) 100%);
    pointer-events: none;
}

.solve__banner {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
}

.solve__card {
    position: relative;
    flex: 1 1 0;
    aspect-ratio: 1 / 1.25;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 20px;
    /*    border: 1px solid var(--c-border);*/
    border-radius: 0;
    margin-left: -1px;
    /* collapse double borders instead of leaving a gap */
    transition: background 0.3s var(--ease);
}

.solve__card::after {
    content: '';
    background-image: url(assets/images/video-overlay-v1.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.solve__card:first-child {
    margin-left: 0;
}

.solve__card-eyebrow {
    font-size: 0.6875rem;
    color: var(--c-gold);
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.solve__card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--c-white);
    font-weight: 500;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.3;
}

.solve__card-description {
    display: inline-block;
    max-height: 0;
    margin: 0;
    padding-left: 1px;
    padding-top: 16px;
    position: relative;
    z-index: -1;
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
    color: var(--c-white);
    font-size: 0.9375rem;
}

.solve__card-link-ctn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    position: relative;
    padding-top: 16px;
    color: var(--c-gold);
}

.solve__card-link {
    max-width: 0;
    margin: 0;
    font-size: var(--fs-body);
    font-weight: 400;
    color: var(--c-gold);
    white-space: nowrap;
    transition: max-width 0.3s ease-in-out;
    overflow: hidden;
    text-transform: uppercase;
}

.solve__card:hover .solve__card-link,
.solve__card:focus-visible .solve__card-link,
.solve__card.is-active .solve__card-link {
    max-width: fit-content;
}

.solve__card:hover .solve__card-description,
.solve__card:focus-visible .solve__card-description,
.solve__card.is-active .solve__card-description {
    max-height: 300px;
    z-index: 1
}

.solve-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: absolute;
    z-index: 10;
    top: 45%;
    transform: translateY(-45%);
    transition: all 0.3s ease-in-out;
    border: 0;
    width: 45px;
    opacity: 0;
    visibility: hidden
}

.solve__cards:hover .solve-arrow {
    opacity: 1;
    visibility: visible
}

.solve__cards .slick-list {
    overflow: visible !important;
    padding: 0;
    /* Clear default padding if necessary */
}

.solve__cards {
    overflow: hidden;
}

.solve__cards .slick-list .slick-slide {
    padding-right: 4px;
    box-sizing: border-box;
}

.slick-prev {
    content: url(assets/icons/arrow-prev.svg);
    left: 0;
}

.slick-next {
    content: url(assets/icons/arrow-next.svg);
    right: 0;
}

/* -------------------------------------------------------------------------
   11. Industries
   ------------------------------------------------------------------------- */
.industries {
    background: var(--c-bg-alt);
    background: linear-gradient(180deg, var(--c-bg-alt) 0%, var(--c-bg) 100%) border-box;
    padding-bottom: 0;
}

.industries__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.industries__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
}

.industries__list.list-1 {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
}

.industry-item {
    border: 1px solid transparent;
    background: linear-gradient(#040F24, #040F24) padding-box, linear-gradient(120deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%) border-box;
    backdrop-filter: blur(7px);
    border-radius: var(--radius-lg);
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0);
    transition: all 0.45s ease;
}

.industries__list.list-1 .industry-item {
    flex-direction: row;
    align-items: center;
    padding: 10px;
}

.industries__list.list-1 .industry-item > div {
    max-width: calc(100% - 70px);
}

.industry-item:hover {
    background: linear-gradient(#01040a, #01040a) padding-box, linear-gradient(120deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.45) 100%) border-box;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.25);
}

.industry-item__icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 10px;
    border: 1px solid transparent;
    background: linear-gradient(#040F24, #040F24) padding-box, linear-gradient(120deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%) border-box;
    color: var(--c-white);
    backdrop-filter: blur(7px);
}

.industries__list.list-1 .industry-item__icon {
    padding: 6px;
    font-size: 1.25rem;
}

.industry-item h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--c-white);
    margin-bottom: 6px;
    transition: all 0.45s ease;
}

.industry-item:hover h3 {
    color: var(--c-gold);
}

.industries__list.list-1 .industry-item:hover .industry-item__icon {
    background: var(--c-gold);
}

.industry-item p {
    font-size: 0.875rem;
    color: var(--c-text-muted);
    line-height: 1.5;
}

.industries__list.list-1 .industry-item p {
    font-size: 1rem;
    color: var(--c-white);
}

.industries__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* aspect-ratio: 4 / 3.1;
    background: linear-gradient(135deg, #16305E, #0A162E);
    border: 1px solid var(--c-border);*/
}

.industries__media-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--c-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* -------------------------------------------------------------------------
   12. Delivered results
   ------------------------------------------------------------------------- */
.results {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    padding: clamp(32px, 4vw, 56px);
    color: var(--c-navy-deep);
    margin-top: 7vw;
}

.results__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
}

.results__grid.alt {
    grid-template-columns: 1fr;
    gap: 20px;
}

.results__grid-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.results__grid.alt .results__grid-left {
    align-items: center;
}

.results__title {
    font-size: var(--fs-h2);
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 24px;
}

.results__grid.alt .results__title {
    max-width: 640px;
    text-align: center;
}

.results__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.results__list li {
    display: flex;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(4, 15, 36, 0.12);
}

.results__list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.results__list .icon-badge {
    width: 34px;
    height: 34px;
    flex: none;
    border-radius: 8px;
    border: 1px solid rgba(4, 15, 36, 0.25);
    color: var(--c-navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}

.results__list .icon-badge img {
    filter: invert(1);
}

.results__list h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.results__list p {
    color: rgba(4, 15, 36, 0.7);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.flow {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    width: 190px;
    flex: 0 0 auto;
}

.node h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--c-navy-deep);
    transition: color .3s ease;
}

.dot {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold-star);
    box-shadow: 0 12px 28px rgba(28, 50, 100, .12);
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: transform .35s cubic-bezier(.2, .8, .25, 1), box-shadow .35s ease, background .35s ease, color .35s ease;
}

/* soft pulsing ring, always looping */
.dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--c-gold-star);
    opacity: 0;
    animation: ring 2.8s ease-out infinite;
}

.node:nth-child(3) .dot::after {
    animation-delay: .9s;
}

.node:nth-child(5) .dot::after {
    animation-delay: 1.8s;
}

@keyframes ring {
    0% {
        transform: scale(1);
        opacity: .5;
    }

    70% {
        transform: scale(1.35);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.dot svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---------- hover on the whole node ---------- */
.node:hover .dot {
    transform: translateY(-6px) scale(1.1);
    background: linear-gradient(135deg, var(--c-gold-star), var(--c-gold));
    color: #fff;
    box-shadow: 0 22px 44px rgba(213, 177, 58, .35);
}

.node:hover .dot::after {
    border-color: #fff;
}

.node:hover h3 {
    color: var(--c-gold);
}

/* ---------- animated connector ---------- */
.connector {
    flex: 0 0 70px;
    height: 3px;
    margin-top: 46px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, var(--c-gold-star), var(--c-gold));
}

.connector::after {
    content: "";
    position: absolute;
    top: 0;
    left: -45%;
    width: 45%;
    height: 100%;
    background: rgba(255, 255, 255, .75);
    animation: slide 2s linear infinite;
}

@keyframes slide {
    to {
        left: 120%;
    }
}

/* ============================================================
     PER-ICON LOOPING ANIMATIONS (play continuously)
     ============================================================ */

/* SHIELD — checkmark keeps drawing itself + gentle breathe */
.icon-shield {
    animation: breathe 3s ease-in-out infinite;
}

.icon-shield .check {
    stroke-dasharray: 12;
    stroke-dashoffset: 12;
    animation: draw 3s ease-in-out infinite;
}

@keyframes draw {
    0% {
        stroke-dashoffset: 12;
    }

    35% {
        stroke-dashoffset: 0;
    }

    75% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 12;
    }
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

/* CLOUD — upload arrow rides up and fades, on loop */
.icon-cloud .arrow {
    animation: upload 1.8s ease-in-out infinite;
}

@keyframes upload {
    0% {
        transform: translateY(3px);
        opacity: .2;
    }

    40% {
        transform: translateY(-1px);
        opacity: 1;
    }

    70% {
        transform: translateY(-3px);
        opacity: 1;
    }

    100% {
        transform: translateY(-6px);
        opacity: 0;
    }
}

/* STACK — layers pulse apart and back together, staggered */
.icon-stack .l-top {
    animation: stackTop 2.4s ease-in-out infinite;
}

.icon-stack .l-bot {
    animation: stackBot 2.4s ease-in-out infinite;
}

@keyframes stackTop {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2.5px);
    }
}

@keyframes stackBot {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(2.5px);
    }
}

/* pause the idle loops while hovering so the hover reads cleanly (optional) */
.node:hover .dot svg * {
    animation-play-state: paused;
}

/* -------------------------------------------------------------------------
   13. Case studies
   ------------------------------------------------------------------------- */
.case-studies {
    background: var(--c-bg-alt);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--c-panel);
    border: 1px solid var(--c-border);
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0);
    transition: all 0.45s ease;
}

.case-card:hover {
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.25);
}

.case-card__media {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #1B3364, #0B1B37);
    overflow: hidden
}

.case-card__media img {
    transform: scale(1);
    transition: all 0.45s ease;
}

.case-card:hover .case-card__media img {
    transform: scale(1.1);
}

.case-card__body {
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.arc_case-card {
    z-index: 2;
    margin-top: -45px;
}

.arc_case-card .case-card__tag {
    font-size: 1rem;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 10px;
    background-color: var(--c-gold);
    display: inline-flex;
    width: auto;
    align-items: center;
    gap: 10px;
    color: var(--c-white);
}

.case-card__tag {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--c-gold);
}

.case-card h3 {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--c-white);
    line-height: 1.4;
}

.case-card__link {
    font-size: 0.875rem;
    color: var(--c-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

/* -------------------------------------------------------------------------
   14. Testimonials
   ------------------------------------------------------------------------- */
.testimonials {
    /*background: var(--c-bg-alt);*/
    padding-bottom: 0;
    padding-top: 0;
}

/*.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}*/

.testimonial-grid .slick-slide {
    padding: 0 15px;
    /* Total gap will be 20px (10px left + 10px right) */
    box-sizing: border-box;
}

.testimonial-grid .slick-list {
    margin: 0 -15px;
    padding-top: 10px !important;
}

.slick-dots {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    bottom: -40px;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 4;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    width: 7px;
    height: 7px;
    transition: all .45s ease 0s;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    width: 100%;
    height: 7px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: var(--c-white);
}

.slick-dots li.slick-active {
    width: 44px;
}

.slick-dots li.slick-active button {
    background-color: var(--c-gold);
}

.testimonial-card {
    position: relative;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--c-panel);
    border: 1px solid var(--c-border);
}

.testimonial-card__mark {
    font-size: 80px;
    color: var(--c-white);
    line-height: 0;
    font-family: Georgia, serif;
    position: absolute;
    top: 23px;
    right: 45px;
}

.testimonial-card p {
    color: var(--c-text-body);
    line-height: 1.7;
    font-size: 1.0625rem;
}

.testimonial-card__author {
    margin-top: 20px;
    font-size: 0.9375rem;
    color: var(--c-white);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.testimonial-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border-strong);
}

.testimonial-dots span.is-active {
    background: var(--c-gold);
    width: 22px;
    border-radius: var(--radius-pill);
}

/* -------------------------------------------------------------------------
   15. CTA banner
   ------------------------------------------------------------------------- */
.cta-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: clamp(45px, 5vw, 88px) 20px;
    text-align: center;
    background:
        radial-gradient(70% 120% at 30% 10%, rgba(160, 130, 255, 0.45), transparent 60%),
        radial-gradient(60% 100% at 80% 90%, rgba(58, 46, 140, 0.6), transparent 60%),
        linear-gradient(135deg, #241B63, #100C33);
    background-image: url(assets/images/connect-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-banner.service-1 {
    padding: clamp(55px, 8vw, 55px) 24px;
}

.cta-banner__inner {
    max-width: 640px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.cta-banner .eyebrow {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--c-white);
}

.cta-banner__title {
    font-size: var(--fs-h2);
    color: var(--c-white);
    font-weight: 500;
    margin-top: 16px;
}

.cta-banner__sub {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.cta-banner__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* -------------------------------------------------------------------------
   16. Contact section
   ------------------------------------------------------------------------- */
.hm-contact {
    padding-top: 0
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.contact .eyebrow {
    margin-bottom: 20px;
}

.contact__title {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 500;
    color: var(--c-white);
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

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

.form-row + .form-row,
.form-row + .field {
    margin-top: 20px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.field label {
    font-size: 1.0625rem;
    color: var(--c-white);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-sm);
    color: var(--c-white);
    font-family: inherit;
    font-size: 0.9375rem;
    resize: none;
}

.field input::placeholder,
.field select,
.field textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.field select {
    appearance: base-select;
    white-space: nowrap;
}

.field select option {
    background-color: #000B21 !important;
    color: var(--c-white);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--c-gold);
    outline: none;
}

.contact-form {
    width: 100%;
}

.contact-form.card {
    border: 1px solid transparent;
    background: linear-gradient(#040F24, #040F24) padding-box, linear-gradient(120deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%) border-box;
    backdrop-filter: blur(7px);
}

.contact-form .btn {
    margin-top: 15px;
}

.contact__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* aspect-ratio: 4 / 3.3;
    background: linear-gradient(135deg, #16305E, #0A162E);
    background-image: url(assets/images/hm-contact.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;*/
    border: 1px solid var(--c-border);
    padding: 12px;
}

.contact__media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* -------------------------------------------------------------------------
   17. Footer
   ------------------------------------------------------------------------- */
.site-footer {
    border-top: 1px solid var(--c-border);
    padding-top: 64px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.5fr;
    gap: 32px;
}

.footer__about p {
    margin-top: 16px;
    color: var(--c-text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--c-border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__heading {
    color: var(--c-white);
    font-weight: 500;
    margin-bottom: 18px;
    font-size: 0.9375rem;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--c-text-muted);
}

.partners-accreditations {
    max-width: 420px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
}

.footer__partners,
.footer__accreditations {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer__partners > img {
    width: 47.5%;
    height: auto;
}

.footer__accreditations > img {
    width: 95.5%;
    height: auto;
}

.footer__partners .logo-chip {
    height: 40px;
    min-width: 90px;
    padding: 0 14px;
    font-size: 0.75rem;
}

.footer__wrapper {
    position: relative;
}

.footer__wrapper::after {
    content: '';
    background-image: url(assets/images/footer-bg-v2.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer__wrapper img.watermark {
    width: 100%;
    height: auto;
    padding-top: 28px;
}

.footer__wrapper .watermark-sep {
    height: 56px;
}

.footer__bar {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding-block: 24px;
    border-top: 1px solid var(--c-border);
    z-index: 1;
}

.footer__bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8125rem;
    color: var(--c-text-muted);
}

.footer__bar-inner > * {
    width: 45%;
}

.footer__bar .copyright {
    text-align: right;
}

.footer__bar-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 15px;
}

/* -------------------------------------------------------------------------
   About page — key credentials 2x2 grid
   ------------------------------------------------------------------------- */

.stats.inner {
    margin-top: 0;
    border-bottom: 0;
}

.credentials {
    text-align: center
}

.credentials .eyebrow {
    margin-bottom: 35px;
}

.credentials-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.credentials-grid::after,
.credentials-grid::before {
    content: '';
    position: absolute;
    background-color: var(--c-border);
}

.credentials-grid::before {
    width: 100%;
    height: 1px;
    top: calc(50% - 1px);
    left: 0;
}

.credentials-grid::after {
    width: 1px;
    height: 100%;
    left: calc(50% - 1px);
    top: 0;
}

.credential {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.credential__value {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 600;
    color: var(--c-white);
}

.credential__label {
    font-size: 0.8125rem;
    color: var(--c-text-muted);
    line-height: 1.4;
}

/* -------------------------------------------------------------------------
   About page — "Our People" media column inside the white .approach card
   ------------------------------------------------------------------------- */
.about-people {
    padding-bottom: 0;
    padding-top: 0;
}

.about-people .approach {
    background: #EBF5FF;
    /* approximate accent from the PDF — adjust to brand spec */
}

.about-people .approach.challenge {
    margin-top: 7vw;
}


.about-people .approach__grid {
    padding: 4vw;
    grid-template-columns: 1fr 2fr;
    align-items: flex-start;
    gap: 3vw;
}

.about-people .approach__left {
    padding: 0;
}

.approach__media {
    height: 100%;
    min-height: 320px;
    padding: 5px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.approach__media img,
.approach__media > div {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.approach-inner {
    padding: 4vw;
}

.approach__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    max-width: 920px;
    margin: 0 auto 56px;
}

.approach__head .eyebrow {
    align-self: center;
}

.approach__list {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /*    flex-wrap: wrap;*/
}

.approach__list .approach-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    width: 240px;
    margin: 0 auto;
    text-align: center;
    padding: 16px 1vw 0;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.approach__list .approach-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/*.approach__list::after {
    content: '';
    width: calc(100% - 240px);
    height: 2px;
    border-bottom: 2px dashed var(--c-gold);
    position: absolute;
    left: 120px;
    top: 35px;
}*/

.steps-v2__line {
    position: absolute;
    top: 35px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    border-bottom: 2px dashed var(--c-text-muted);
}

.steps-v2__line-fill {
    height: 100%;
    width: 0%;
    border-bottom: 2px dashed var(--c-gold);
    transition: width 1.6s var(--ease);
}

/* -------------------------------------------------------------------------
   About page — leadership team cards
   ------------------------------------------------------------------------- */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.team-card {
    display: flex;
    background: var(--c-panel);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.team-card__media {
    flex: 0 0 42%;
    padding: 8px 5px 2px 5px
}

.team-card__media img,
.team-card__media > div {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}

.team-card__body h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--c-white);
}

.team-card__role {
    font-size: 0.8125rem;
    color: var(--c-gold);
    letter-spacing: 0.02em;
}

.team-card__body p {
    margin-top: 8px;
    font-size: 0.875rem;
    color: var(--c-text-muted);
    line-height: 1.55;
}

/* -------------------------------------------------------------------------
   About page — mission/vision alternating split rows (inside .approach)
   ------------------------------------------------------------------------- */

.about-people .split-row {
    display: grid;
    padding: 4vw;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 3vw;
}

.split-row + .split-row {
    padding-top: 0;
}

.split-row__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.split-row__media {
    min-height: 280px;
    padding: 5px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.split-row__media img,
.split-row__media > div {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-people .split-row--initial {
    padding-bottom: 0
}

.about-people .split-row--reverse .split-row__media {
    order: -1;
}

.member-intro {
    padding-top: 10vw;
    padding-bottom: 0;
}

.member-grid {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 36px;
}

.member-grid-img {
    position: relative;
}

.member-grid-img img {
    width: 100%;
    height: auto;
    position: sticky;
    top: 0
}

.member-grid-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 12px;
}

.service-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 55px;
    gap: 25px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.service-feature-card h3 {
    text-transform: uppercase;
    font-weight: 400;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.service-grid.reverse {
    margin-top: 48px;
}

.service-grid.reverse.challenge {
    margin-top: 0;
    align-items: flex-start;
}

.service-grid-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.service-grid.reverse .service-grid-left {
    order: 2
}

.service-grid.reverse.challenge .service-grid-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.service-grid.reverse.challenge .service-grid-left h3 {
    font-weight: 500;
    color: var(--c-gold);
}

.service-grid-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--c-border);
    padding: 12px;
}

.service-grid-img img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.approach_icon_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 32px;
}

.approach_icon_list .list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.approach_icon_list .list-item .list-item__icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--c-white);
    padding: 6px;
}

.approach_icon_list .list-item h3 {
    font-size: 1rem;
    color: var(--c-white);
    font-weight: 500;
}

.service-by-industry {
    padding: 55px 25px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.25);
}

.tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Target Chrome, Safari, and Opera to hide scrollbars */
.tabs::-webkit-scrollbar {
    display: none;
}

.tab {
    padding: 11px 22px;
    border-radius: 24px;
    border: 1px solid transparent;
    background: linear-gradient(#091732, #091732) padding-box, linear-gradient(120deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%) border-box;
    backdrop-filter: blur(7px);
    color: var(--c-white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .6px;
    cursor: pointer;
    transition: all .45s ease;
    white-space: nowrap
}

.tab:hover,
.tab.active {
    background: var(--c-gold);
    color: var(--c-navy-deep);
    border-color: var(--c-gold);
    box-shadow: 0 6px 22px -8px rgba(227, 184, 79, .6)
}

.svc {
    display: none
}

.svc.active {
    display: block
}

.panel {
    display: none;
    animation: fade .35s ease
}

.panel.active {
    display: block
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.sbi-hero {
    border: 1px solid transparent;
    background: linear-gradient(#091732, #091732) padding-box, linear-gradient(120deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%) border-box;
    backdrop-filter: blur(7px);
    padding: 25px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 25px;
    overflow: hidden
}

.sbi-hero-icon {
    flex: 0 0 auto;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    border: 2px solid var(--c-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold)
}

.sbi-hero-icon svg {
    width: 46px;
    height: 46px
}

.sbi-hero-body {
    flex: 1
}

.sbi-hero-body h2 {
    font-size: 25px;
    color: var(--c-white);
    font-weight: 500;
    letter-spacing: -.5px;
    margin-bottom: 7px
}

.sbi-hero-body .sub {
    color: var(--c-gold);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 14px
}

.sbi-hero-body p {
    color: var(--c-text-muted);
    font-size: 15px;
    line-height: 1.62;
    max-width: 820px
}

.sbi-hero-glow {
    flex: 0 0 auto;
    width: 200px;
    height: 150px;
    position: relative
}

.sbi-hero-glow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sbi-hero-glow .orb {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 168, 224, .5), rgba(74, 168, 224, 0) 68%)
}

.sbi-hero-glow .ring {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 98px;
    height: 98px;
    border-radius: 50%;
    border: 2px solid rgba(120, 200, 255, .6);
    box-shadow: 0 0 26px rgba(74, 168, 224, .45) inset, 0 0 26px rgba(74, 168, 224, .3)
}

.sbi-hero-glow .chip {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(180deg, #1a3358, #0f2038);
    border: 1px solid rgba(120, 200, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bfe4ff;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 0 22px rgba(74, 168, 224, .45)
}

.cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.col {
    border: 1px solid transparent;
    background: linear-gradient(#091732, #091732) padding-box, linear-gradient(120deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%) border-box;
    backdrop-filter: blur(7px);
    padding: 25px;
    border-radius: var(--radius-lg);
}

.col h3 {
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 1.3px;
    color: var(--c-gold);
    text-transform: uppercase;
    margin-bottom: 20px
}

.item {
    display: flex;
    gap: 11px;
    margin-bottom: 18px;
    align-items: flex-start
}

.item:last-child {
    margin-bottom: 0
}

.item .ic {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    margin-top: 1px
}

.item .ic svg {
    width: 19px;
    height: 19px;
    display: block
}

.item span:last-child {
    font-size: 14px;
    line-height: 1.5;
    color: var(--c-text-muted);
}

.item span:last-child strong {
    color: var(--c-white);
    font-weight: 500
}

.warn svg {
    color: var(--warn)
}

.req svg {
    color: var(--c-gold)
}

.ok svg {
    color: var(--ok)
}

.footnote {
    margin-top: 30px;
    color: #5f7195;
    font-size: 12.5px;
    text-align: center
}

/* -------------------------------------------------------------------------
   Cyber threat landscape — 4 oval stat cards, hover swaps to image bg
   ------------------------------------------------------------------------- */
.threat-section {
    margin-top: clamp(40px, 5vw, 64px);
    padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 48px);
    background: #EAF2FF;
    border-radius: var(--radius-lg, 20px);
}

.threat-section__inner {
    max-width: 1024px;
    margin-inline: auto;
}

.threat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.threat-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    /* oval, since the box is taller than it is wide */
    background: var(--c-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20% 12%;
    overflow: hidden;
    isolation: isolate;
    cursor: default;
    transition: border-color 0.35s ease;
    outline: 1px solid var(--c-navy-deep);
    /* Adds a 10px transparent gap between the border and outline */
    outline-offset: 5px;
}

/* Hover background image layer — faded in on top of the white card */
.threat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url("assets/images/problem-card-bg.png");
    /* swap for the real media URL / attachment */
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.threat-card:hover::before,
.threat-card:focus-within::before {
    opacity: 1;
}

.threat-card:hover,
.threat-card:focus-within {
    border-color: transparent;
}

.threat-card__value {
    font-size: clamp(1.375rem, 2vw, 1.75rem);
    font-weight: 700;
    color: #0B1E3E;
    line-height: 1.25;
    transition: color 0.35s ease;
}

.threat-card__prefix,
.threat-card__suffix {
    font-weight: 600;
}

.threat-card__desc {
    margin-top: 14px;
    font-size: 0.9375rem;
    color: rgba(11, 30, 62, 0.65);
    line-height: 1.5;
    transition: color 0.35s ease;
}

.threat-card:hover .threat-card__value,
.threat-card:focus-within .threat-card__value {
    color: #FFFFFF;
}

.threat-card:hover .threat-card__desc,
.threat-card:focus-within .threat-card__desc {
    color: rgba(255, 255, 255, 0.8);
}

.steps-v5__row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin-inline: auto;
}

.steps-v5__step {
    text-align: left;
    border: 1px solid transparent;
    background: linear-gradient(#091732, #091732) padding-box, linear-gradient(120deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%) border-box;
    backdrop-filter: blur(7px);
    border-radius: var(--radius-lg);
    padding: 24px;
    cursor: pointer;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.steps-v5__step.is-active {
    border-color: var(--c-gold);
    background: rgba(213, 177, 58, 0.06);
}

.steps-v5__bar {
    display: block;
    height: 3px;
    background: var(--c-border);
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
}

.steps-v5__bar-fill {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--c-gold);
}

.steps-v5__step.is-active .steps-v5__bar-fill {
    animation: steps-v5-fill 5s linear forwards;
}

@keyframes steps-v5-fill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.steps-v5__num {
    display: block;
    color: var(--c-gold);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
}

.steps-v5__step h3 {
    color: var(--c-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.steps-v5__step p {
    color: var(--c-text-muted);
    font-size: 0.875rem;
}

.contact-details {
    background: var(--c-text-body);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: var(--c-navy-deep);
}

.contact-details h3 {
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item .sep {
    margin: 10px 0;
    width: 100%;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.2)
}

.qualified {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid transparent;
    background: linear-gradient(#091732, #091732) padding-box, linear-gradient(120deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%) border-box;
    backdrop-filter: blur(7px);
    color: var(--c-white);
    gap: 15px;
}

.qualified svg {
    width: 18px;
}

.case__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.related-grid .case__meta {
    align-items: center;
}

.case__meta h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.case__meta-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 25px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--c-border);
}

.case__meta-info h3 {
    color: var(--c-gold);
    font-weight: 500;
}

.case__meta-info .sep {
    width: 100%;
    margin-bottom: 12px;
    padding-top: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.case__meta-info .sep:last-child {
    margin-bottom: 0;
    padding-top: 0;
    border-bottom: 0;
}

.case-metrics {
    background-image: url(assets/images/metrics-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.impact-table-wrap {
    border-radius: 16px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--c-border);
}

.impact-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.impact-table th {
    text-align: left;
    padding: 20px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #D5B13A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-table th.impact-table__impact-head {
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: #bf9405;
}

.impact-table td {
    padding: 20px 24px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    line-height: 1.5;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.095);
}

.impact-table__category {
    color: #FFFFFF;
    font-weight: 600;
}

.impact-table tbody tr:last-child td {
    border-bottom: none;
}

.impact-table__impact {
    background: #FFFFFF;
    padding: 18px 24px;
}

.impact-table tbody tr td.impact-table__impact {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.impact-table__value {
    display: block;
    color: #14132F;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.impact-table__desc {
    display: block;
    color: #56546E;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.4;
}

.impact-table th:nth-child(1) {
    width: 20%;
}

.impact-table th:nth-child(2) {
    width: 27%;
}

.impact-table th:nth-child(3) {
    width: 27%;
}

.impact-table th:nth-child(4) {
    width: 26%;
}

.casestudies-info {
    margin-bottom: 40px;
    font-style: italic;
}

/* -------------------------------------------------------------------------
   18. Responsive
   ------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------
   19. Inner pages: banners, breadcrumbs, single & archive layouts
   ------------------------------------------------------------------------- */
.page-banner {
    padding-block: clamp(56px, 8vw, 96px) clamp(40px, 6vw, 64px);
    background:
        radial-gradient(45% 60% at 8% 15%, rgba(90, 190, 255, 0.16) 0%, rgba(0, 11, 33, 0) 65%),
        #000A1F;
    border-bottom: 1px solid var(--c-border);
}

.page-banner__eyebrow {
    margin-bottom: 14px;
}

.page-banner__title {
    font-size: var(--fs-h1);
    color: var(--c-white);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.page-banner__desc {
    margin-top: 16px;
    max-width: 640px;
    color: var(--c-text-muted);
    font-size: var(--fs-body-lg);
    line-height: 1.6;
}

.breadcrumb {
    padding-block: 18px;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.875rem;
    color: var(--c-text-muted);
}

.breadcrumb a {
    color: var(--c-text-muted);
}

.breadcrumb a:hover {
    color: var(--c-gold);
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.archive-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--c-panel);
    border: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
}

.archive-card__media {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #1B3364, #0B1B37);
}

.archive-card__media img,
.case-card__media img,
.industries__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.archive-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(213, 177, 58, 0.12);
    color: var(--c-gold);
}

.archive-card h3 {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--c-white);
}

.archive-card p {
    color: var(--c-text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    flex: 1;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 48px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding-inline: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border-strong);
    color: var(--c-text-body);
    font-size: 0.9375rem;
}

.pagination .current {
    background: var(--c-gold);
    color: var(--c-navy-deep);
    border-color: var(--c-gold);
}

.single-content {
    max-width: 1024px;
}

.single-content .single-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.single-content h1 {
    font-size: var(--fs-h1);
    color: var(--c-white);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.single-content .entry-thumbnail {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid var(--c-border);
}

.single-content .entry-thumbnail img {
    width: 100%;
    display: block;
}

.entry-body {
    color: var(--c-text-body);
    line-height: 1.75;
    font-size: 1.0625rem;
}

.entry-body h2,
.entry-body h3 {
    color: var(--c-white);
    margin-top: 2em;
    margin-bottom: 0.6em;
}

.entry-body p {
    margin-bottom: 1.2em;
}

.entry-body ul,
.entry-body ol {
    margin: 0 0 1.2em 1.2em;
}

.entry-body a {
    color: var(--c-gold);
    text-decoration: underline;
}

.entry-body img {
    border-radius: var(--radius-md);
}

.related-grid {
    background-color: #022365;
}

.empty-state {
    text-align: center;
    padding-block: 48px;
    color: var(--c-text-muted);
}

/* -------------------------------------------------------------------------
   20. Mobile nav open state + form status messages
   ------------------------------------------------------------------------- */

.contact-form__status {
    min-height: 1.2em;
    font-size: 0.9375rem;
    margin: 12px 0 0;
}

.contact-form__status.is-success {
    color: #7CD98C;
}

.contact-form__status.is-error {
    color: #FF9C9C;
}


/* -------------------------------------------------------------------------
   Media Queries (grouped)
   ------------------------------------------------------------------------- */

@media (min-width: 769px) {
    .nav__item:hover .nav__chevron svg {
        transform: rotate(180deg);
    }

    .nav__item:hover .nav__dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav__dropdown a > span {
        display: inline-block;
        max-width: 65%;
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 1340px) {
    .solve__card {
        aspect-ratio: 1 / 1.45;
    }

    .custom-logo {
        height: 50px;
        width: auto;
    }
}

@media (max-width: 1080px) {
    .solve__banner {
        aspect-ratio: 16 / 9;
    }

    .solve__card {
        flex: 1 1 33.333%;
        aspect-ratio: 1 / 1;
        margin-left: -1px;
        margin-top: -1px;
    }

    .solve__card:nth-child(3n+1) {
        margin-left: 0;
    }

    .team-card {
        flex-direction: column;
    }

    .team-card__media {
        aspect-ratio: 16 / 10;
        flex: none;
    }

    .split-row--reverse .split-row__media {
        order: 0;
    }

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

    .approach__right {
        border-left: none;
        border-top: 1px solid rgba(4, 15, 36, 0.12);
    }

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

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }

    .solve__strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .solve__panel:nth-child(3) {
        border-right: none;
    }

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

@media (max-width: 960px) {
    .cols {
        grid-template-columns: 1fr
    }

    .sbi-hero {
        flex-direction: column;
        text-align: center;
        padding: 30px
    }

    .sbi-hero-body p {
        margin: 0 auto
    }

    .sbi-hero-glow {
        display: none
    }
}

@media (max-width: 900px) {
    .mq-desktop {
        display: none !important;
    }

    .mq-mobile {
        display: block;
    }

    .steps-v5__row {
        grid-template-columns: 1fr 1fr;
    }


    .impact-table th,
    .impact-table td {
        padding: 16px;
        font-size: 0.875rem;
    }

    .impact-table__value {
        font-size: 1.1875rem;
    }
}

@media (max-width: 760px) {

    .site-header {
        padding-block: 15px;
    }

    .nav__cta-desktop {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__drawer-logo {
        position: fixed;
        top: 15px;
        z-index: 51;
    }

    .nav__drawer,
    .nav__dropdown {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(85vw, 360px);
        background: var(--c-bg-alt);
        border-left: 1px solid var(--c-border);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 105px 28px 32px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        z-index: 50;
    }

    .nav__dropdown {
        opacity: 1;
        visibility: visible;
    }

    .nav.is-open .nav__drawer,
    .nav__dropdown.is-open {
        transform: translateX(0);
    }

    .nav__chevron {
        line-height: 0;
        margin-top: 0;
        padding: 2px;
        background-color: rgba(255, 255, 255, 0.14);
        border-radius: 4px;
    }

    .nav__chevron svg {
        transform: rotate(-90deg) !important;
    }

    .nav__dropdown-inner {
        padding: 0;
        gap;
        15px;
        margin-left: -6px;
    }

    .nav__dropdown a {
        color: var(--c-white);
        padding: 0;
    }

    .nav__dropdown a.nav__sub-item-current,
    .nav__dropdown a:hover {
        background: transparent;
        color: rgb(213, 177, 58);
    }

    .nav__dropdown a.nav__sub-item-current > .nav__sub-item-icon,
    .nav__dropdown a:hover > .nav__sub-item-icon {
        color: rgb(213, 177, 58);
        background: transparent;
    }

    .nav__dropdown a.nav__sub-item-current > .nav__sub-item-icon img,
    .nav__dropdown a:hover > .nav__sub-item-icon img {
        filter: brightness(0) saturate(100%) invert(67%) sepia(56%) saturate(614%) hue-rotate(354deg) brightness(97%) contrast(93%);
    }

    .nav__link.nav__link--has-dropdown {
        width: 100%;
        justify-content: space-between;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav__list > li {
        width: 100%;
        border-bottom: 1px solid var(--c-border);
    }

    .nav__list > li > a {
        display: block;
        padding: 16px 4px;
        font-size: 1.0625rem;
        color: var(--c-white);
    }

    .nav__item {
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: space-between;
        width: 100%;
    }

    /* Two-level items: chevron toggle injected by JS, submenu as accordion */
    .nav__list .menu-item-has-children > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav__submenu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: none;
        border: none;
        color: var(--c-white);
        flex: none;
    }

    .nav__submenu-toggle::before {
        content: "";
        width: 8px;
        height: 8px;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        transform: rotate(45deg);
        transition: transform 0.3s var(--ease);
    }

    .menu-item-has-children.is-expanded > .nav__submenu-toggle::before {
        transform: rotate(-135deg);
    }

    .nav__list .sub-menu {
        max-height: 0;
        overflow: hidden;
        padding-left: 12px;
        transition: max-height 0.35s var(--ease);
    }

    .menu-item-has-children.is-expanded > .sub-menu {
        max-height: 480px;
        /* generous cap; real height is content-driven */
    }

    .nav__list .sub-menu > li > a {
        display: block;
        padding: 12px 4px;
        font-size: 0.9375rem;
        color: var(--c-text-muted);
    }

    .nav__drawer-cta {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }

    body.nav-lock {
        overflow: hidden;
    }

    .solve__card {
        flex: 1 1 50%;
    }

    .solve__card:nth-child(3n+1) {
        margin-left: -1px;
    }

    .solve__card:nth-child(odd) {
        margin-left: 0;
    }
    
    .team-grid,
    .split-row,
    .split-row--reverse,
    .stats__grid,
    .industries__grid,
    .results__grid,
    .contact__grid,
    .approach__grid,
    .credentials-grid,
    .case-grid,
    .testimonial-grid {
        grid-template-columns: 1fr !important;
    }

    .impact-table-wrap {
        padding: 12px;
    }

    .impact-table thead {
        display: none;
    }

    .impact-table,
    .impact-table tbody,
    .impact-table tr,
    .impact-table td {
        display: block;
        width: 100%;
    }

    .impact-table tr {
        margin-bottom: 16px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
    }

    .impact-table tr:last-child {
        margin-bottom: 0;
    }

    .impact-table td {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .impact-table td::before {
        content: attr(data-label);
        font-size: 0.6875rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: #D5B13A;
    }

    .impact-table__impact {
        border-bottom: none;
        border-radius: 0;
        box-shadow: none;
    }

    .impact-table__impact::before {
        color: #14132F;
        opacity: 0.6;
    }

    .impact-table tbody tr td.impact-table__impact {
        border-radius: 0 0 11px 11px;
    }

    .nav__list {
        display: none;
    }

    .hero {
        padding-top: clamp(125px, 14vw, 142px);
    }

    .hero.inner {
        padding-top: clamp(125px, 14vw, 142px);
        min-height: 75svh;
    }

    .hero__badge {
        flex-direction: column;
    }

    .hero_badge-inner {
        align-items: center;
    }

    .hero__actions .btn {
        flex: 1 1 auto;
    }

    .feature-grid,
    .industries__list,
    .about-people .approach__grid,
    .about-people .split-row {
        grid-template-columns: 1fr;
    }

    .about-people .split-row--reverse .split-row__media {
        order: 2;
    }

    .split-row + .split-row {
        padding-top: 40px;
    }

    .split-row__media img,
    .split-row__media > div {
        border-radius: var(--radius-md);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .solve__panel:nth-child(2) {
        border-right: none;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .service-grid-img img {
        height: auto;
    }

    .section-title--center {
        margin-inline: unset;
    }

    .footer__wrapper .watermark-sep {
        height: 0
    }

    .footer__bar {
        position: relative;
    }

    .footer__bar-inner {
        flex-direction: column;
    }

    .footer__bar-inner > * {
        width: 100%;
        text-align: center;
    }

    .footer__bar .copyright {
        text-align: center;
    }

    .footer__bar-links {
        justify-content: center;
    }

    .flow {
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: center;
    }

    .connector {
        width: 2px;
        height: 3px;
        margin-top: 0;
    }

    @keyframes slide {
        to {
            top: 120%;
            left: 0
        }
    }

    .partners-accreditations {
        max-width: 320px;
        grid-template-columns: 1fr;
    }

    .footer__accreditations > img {
        width: 48%;
    }

    .solve__cards {
        overflow: hidden;
    }

    .solve__cards .slick-list {
        padding: 0 20% 0 0 !important;
        margin: 0 -10px;
    }

    .solve__cards .slick-list .slick-slide {
        margin: 0 2px;
    }

    .solve__card_wrap {
        position: relative
    }

    /*.solve__card_wrap::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.095);
    }*/

    .feature-card {
        padding: 12px;
    }

    .feature-grid.approach-grid {
        gap: 20px;
    }

    .feature-grid-img {
        grid-column: 1;
        grid-row: 1;
        order: -1;
        margin-bottom: 15px;
    }

    .feature-card.inline-card.odd {
        flex-direction: row;
        text-align: left;
    }

    .contact-form.card,
    .contact-details,
    .about-people .approach__grid,
    .about-people .split-row {
        padding: 20px;
    }

    .service-by-industry,
    .approach__left,
    .approach-inner {
        padding: 35px 20px;
    }


    .approach__media {
        min-height: fit-content;
    }

    .service-grid,
    .archive-grid {
        grid-template-columns: 1fr;
    }

    .service-grid-img {
        order: -1;
    }

    .feature-card h3 {
        white-space: normal;
    }

    .feature-card.service-feature-card {
        flex-direction: row;
        gap: 12px;
    }

    .feature-card.service-feature-card h3 {
        text-align: left;
    }

    .stat {
        max-width: 44%;
    }

    .credentials-grid::after,
    .credentials-grid::before {
        content: none;
    }

    .member-intro {
        padding-top: clamp(125px, 14vw, 142px);
    }

    .member-grid {
        grid-template-columns: 1fr;
    }

    .approach__list {
        flex-direction: column;
        gap: 20px;
    }

    .approach__list .approach-item {

        padding: 0 1vw;
    }

    .steps-v2__line {
        display: none;
    }

    .service-by-industry .tab {
        padding: 10px 15px;
    }

    .nav.is-open .nav__list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 24px;
        background: var(--c-bg-alt);
        border-bottom: 1px solid var(--c-border);
    }
}

@media (max-width: 560px) {
    .steps-v5__row {
        grid-template-columns: 1fr;
    }

    .threat-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .threat-card {
        max-width: 220px;
        margin-inline: auto;
    }
}

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