/* ===== BASE ===== */
@font-face {
    font-family: "AmpleSoft Pro";
    src: local('AmpleSoft Pro'), url('../assets/fonts/FontsFree-Net-AmpleSoftPro.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: "AmpleSoft Pro";
    src: local('AmpleSoft Pro'), url('../assets/fonts/FontsFree-Net-AmpleSoftProMedium.ttf') format('truetype');
    font-weight: 500;
}
@font-face {
    font-family: "AmpleSoft Pro";
    src: local('AmpleSoft Pro'), url('../assets/fonts/AmpleSoftPro-Bold.ttf') format('truetype');
    font-weight: 700;
}

:root {
    --blue-primary: #00001E;
    --red-secondary: #F02E2E;
    --white: #FFFFFF;
    --black: #000000;
    --radius-header: 100px;
    --radius-pill: 3rem;
    --header-height: 80px;
    --transition-speed: 0.3s;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
    font-family: 'AmpleSoft Pro', sans-serif;
    margin: 0;
    padding: 0;
}
body {
    color: var(--blue-primary);
    overflow-x: hidden;
}
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { height: auto; max-width: 100%; object-fit: cover; }
h1, h2, h3 { text-transform: uppercase; }

@media (min-width: 800px) {
    html { font-size: 16px; }
}

/* ===== DARK MODE HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.25rem 2rem 0;
}

.main-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    background: var(--blue-primary);
    border-radius: var(--radius-header);
    box-shadow: 0 4px 8px -2px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

/* Logo */
.nav-logo {
    flex-shrink: 0;
    display: block;
}
.nav-logo img {
    max-width: 125px;
    height: auto;
    width: 100%;
}

/* Desktop Nav */
.desktop-nav {
    display: none;
    flex: 1;
    min-width: 0;
    justify-content: flex-start;
    align-items: center;
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: nowrap;
    flex-shrink: 0;
}
.nav-item {
    position: relative;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.25rem;
    border-radius: var(--radius-pill);
    transition: color var(--transition-speed), background var(--transition-speed);
    white-space: nowrap;
    cursor: pointer;
}
.nav-link:hover,
.nav-link--active {
    color: var(--red-secondary);
}
.nav-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-speed);
}
.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

/* CTA Buttons in Nav */
.nav-cta-outline {
    background: transparent;
    border: 1px solid var(--red-secondary);
    color: var(--red-secondary);
    padding: 0.5rem 1.15rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 400;
    transition: all var(--transition-speed);
    white-space: nowrap;
}
.nav-cta-outline:hover {
    background: var(--red-secondary);
    color: var(--white);
}
.nav-cta-gradient {
    background: linear-gradient(90deg, var(--red-secondary) 0%, #c01818 100%);
    border: 1px solid transparent;
    color: var(--white);
    padding: 0.5rem 1.15rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 400;
    transition: all var(--transition-speed);
    white-space: nowrap;
}
.nav-cta-gradient:hover {
    background: transparent;
    border-color: var(--red-secondary);
    color: var(--red-secondary);
}

/* User actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hamburger Button */
.hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid white;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    padding: 0.5rem;
    color: white;
    transition: all var(--transition-speed);
}
.hamburger-btn:hover {
    background: white;
    color: var(--blue-primary);
}
.hamburger-btn svg {
    width: 18px;
    height: 18px;
}

/* ===== DROPDOWN MENU (Standard) ===== */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 16rem;
    background: var(--blue-primary);
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.4), 0 4px 10px -5px rgba(0,0,0,0.3);
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    z-index: 60;
}
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}
.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dropdown-link {
    display: block;
    padding: 0.6rem 1rem;
    color: white;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.15s;
}
.dropdown-link:hover {
    background: rgba(255,255,255,0.08);
    color: var(--red-secondary);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 55;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== MOBILE MENU PANEL ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 320px;
    background: var(--blue-primary);
    z-index: 60;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}
.mobile-menu.active {
    transform: translateX(0);
}
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-close {
    width: 36px;
    height: 36px;
    border: 1.5px solid white;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
}
.mobile-menu-close:hover {
    background: white;
    color: var(--blue-primary);
}
.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0;
}
.mobile-nav-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1.25rem;
    color: white;
    font-size: 1.05rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    letter-spacing: 0.01em;
}
.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: rgba(255,255,255,0.06);
}
.mobile-nav-link.active {
    color: var(--red-secondary);
    background: rgba(240,46,46,0.08);
    border-left: 3px solid var(--red-secondary);
    padding-left: calc(1.25rem - 3px);
}

/* ===== MOBILE SUB-TOGGLE (CHEVRON) — RED & VISIBLE ===== */
.mobile-sub-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-width: 48px;
    height: auto;
    padding: 0.95rem 0.5rem;
    border: none;
    border-left: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    background: rgba(255,255,255,0.04);
    color: var(--red-secondary) !important;  /* RED chevron */
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}
.mobile-sub-toggle:hover,
.mobile-sub-toggle:active,
.mobile-sub-toggle:focus {
    background: var(--red-secondary);
    color: #ffffff !important;
}
.mobile-sub-toggle svg {
    width: 22px;
    height: 22px;
    color: var(--red-secondary) !important;
    fill: var(--red-secondary) !important;
    stroke: var(--red-secondary) !important;
    transition: transform 0.3s, color 0.2s, fill 0.2s;
    pointer-events: none;
}
.mobile-sub-toggle:hover svg,
.mobile-sub-toggle:active svg,
.mobile-sub-toggle:focus svg {
    color: #ffffff !important;
    fill: #ffffff !important;
    stroke: #ffffff !important;
}
.mobile-nav-item:has(.mobile-sub-menu.open) .mobile-sub-toggle {
    background: var(--red-secondary);
    color: #ffffff !important;
}
.mobile-nav-item:has(.mobile-sub-menu.open) .mobile-sub-toggle svg {
    color: #ffffff !important;
    fill: #ffffff !important;
    transform: rotate(90deg);
}

.mobile-sub-menu {
    display: none;
    background: rgba(0,0,0,0.35);
    border-top: 1px solid rgba(240,46,46,0.25);
    border-bottom: 1px solid rgba(240,46,46,0.25);
    padding: 0.5rem 0;
}
.mobile-sub-menu.open {
    display: block;
    animation: mobile-sub-slide 0.25s ease-out;
}
@keyframes mobile-sub-slide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.mobile-sub-link {
    display: block;
    padding: 0.85rem 1.25rem 0.85rem 2.25rem;
    color: rgba(255,255,255,0.92);
    font-size: 0.97rem;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    position: relative;
}
.mobile-sub-link::before {
    content: '\203A';
    position: absolute;
    left: 1.15rem;
    color: var(--red-secondary);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    top: 50%;
    transform: translateY(-55%);
}
.mobile-sub-link:hover,
.mobile-sub-link:active {
    color: var(--red-secondary);
    background: rgba(240,46,46,0.08);
    border-left-color: var(--red-secondary);
    padding-left: 2.55rem;
}

.mobile-menu-footer {
    padding: 1rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.mobile-menu-footer .nav-cta-outline,
.mobile-menu-footer .nav-cta-gradient {
    display: block;
    text-align: center;
    padding: 0.75rem;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1024px) {
    .desktop-nav { display: flex; }
    .hamburger-btn { display: none; }
    .nav-cta-outline, .nav-cta-gradient { display: inline-block; }
    .mobile-menu, .mobile-overlay { display: none !important; }
}
@media (max-width: 1023px) {
    .desktop-nav { display: none !important; }
    .nav-cta-outline, .nav-cta-gradient { display: none; }
    .hamburger-btn { display: flex; }
    .site-header { padding: 1rem 1rem 0; }
}

/* Body padding for fixed header */
body {
    padding-top: calc(var(--header-height) + 1.25rem + 1.25rem);
}

/* ===== FOOTER (Modern Premium Redesign) ===== */
.footer {
    background: linear-gradient(180deg, #0a0a2e 0%, var(--blue-primary) 100%);
    color: var(--white);
    padding: 0;
    overflow: hidden;
    position: relative;
}

/* CTA strip at top of footer */
.footer__cta {
    background: linear-gradient(135deg, var(--red-secondary) 0%, #b71c1c 100%);
    padding: 2.5rem calc(1em + 2vw);
    position: relative;
    overflow: hidden;
}
.footer__cta::before,
.footer__cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}
.footer__cta::before {
    top: -50%;
    right: 5%;
    width: 320px; height: 320px;
    background: rgba(255,255,255,0.18);
}
.footer__cta::after {
    bottom: -60%;
    left: 10%;
    width: 280px; height: 280px;
    background: rgba(0,0,30,0.25);
}
.footer__cta-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.footer__cta-heading {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.footer__cta-heading::after { display: none; }
.footer__cta-text {
    color: rgba(255,255,255,0.92);
    font-size: 1rem;
    line-height: 1.6;
}
.footer__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--red-secondary);
    padding: 0.95rem 1.85rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    white-space: nowrap;
}
.footer__cta-btn svg {
    width: 16px; height: 16px;
    transition: transform 0.2s;
}
.footer__cta-btn:hover {
    background: var(--blue-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}
.footer__cta-btn:hover svg { transform: translateX(3px); }

.footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem calc(1em + 2vw) 3rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}
.footer__col { min-width: 0; }
.footer__col--brand { display: flex; flex-direction: column; gap: 1.25rem; }

.footer__logo {
    max-width: 160px;
    height: auto;
    display: block;
}
.footer__tagline {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.04em;
}

@media (min-width: 700px) {
    .footer__top { grid-template-columns: 1.4fr 1.2fr 1fr 1fr; gap: 2rem; }
}
@media (min-width: 992px) {
    .footer__top { grid-template-columns: 1.6fr 1.4fr 1fr 1fr; }
}

.footer__heading {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    position: relative;
    padding-bottom: 0.85rem;
}
.footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--red-secondary);
    border-radius: 2px;
}
.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__links li { margin: 0; }
.footer__link {
    color: rgba(255,255,255,0.72);
    display: inline-block;
    margin: 0.5rem 0;
    transition: all 0.2s;
    font-size: 0.92rem;
    text-decoration: none;
    line-height: 1.4;
}
.footer__link:hover {
    color: var(--red-secondary);
    transform: translateX(4px);
}

.footer__address {
    margin: 0;
    font-style: normal;
}
.footer__address-text {
    color: rgba(255,255,255,0.72);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}
.address-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0.7rem 0;
    font-size: 0.92rem;
}
.address-item__icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(240,46,46,0.12);
    color: var(--red-secondary);
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    margin-top: -2px;
    transition: all 0.2s;
}
.address-item:hover .address-item__icon {
    background: var(--red-secondary);
    color: var(--white);
}
.address-item--loc { align-items: flex-start; }

.socials__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.socials__link {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    display: grid;
    place-content: center;
    width: 42px;
    height: 42px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}
.socials__link:hover {
    background: var(--red-secondary);
    border-color: var(--red-secondary);
    color: var(--white);
    transform: translateY(-4px) rotate(-6deg);
    box-shadow: 0 10px 22px rgba(240,46,46,0.35);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem calc(1em + 2vw);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.82rem;
    text-align: left;
    color: rgba(255,255,255,0.55);
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}
.footer__legal { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.footer__sep { color: rgba(255,255,255,0.3); }
.footer__copyright { margin: 0; }

@media (min-width: 525px) {
    .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer__link--bottom { display: inline; color: rgba(255,255,255,0.55); margin: 0; }
.footer__link--bottom:hover { color: var(--red-secondary); transform: none; }

/* Decorative shine */
.footer__shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--red-secondary) 50%, transparent 100%);
    opacity: 0.6;
    pointer-events: none;
}

/* ===== PAGE HERO (Generic) ===== */
.page-hero {
    margin: 2em calc(1em + 1.5625vw) 3em;
}
.page-hero__fig {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    min-height: 300px;
}
.page-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,30,0.85) 0%, rgba(0,0,30,0.4) 100%);
    display: flex;
    align-items: center;
    padding: 3rem 2rem;
}
.page-hero__content {
    max-width: 700px;
}
.page-hero__heading {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.page-hero__text {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ===== HOME PAGE ===== */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.home-hero {
    margin: 0 calc(1em + 1.5625vw) 5em;
    padding-top: 2em;
}
.home-hero__fig {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5%;
}
.home-hero__img-c {
    max-width: 375px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-hero__img {
    animation: rotate 3s infinite linear;
    border-radius: 50%;
    width: 100%;
}
.home-hero__figc { max-width: 725px; }
.home-hero__heading {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0.5em 0;
}
.home-hero__heading::after {
    content: '.';
    color: var(--red-secondary);
}
.home-hero__text {
    color: var(--red-secondary);
    font-size: 1.25rem;
}

/* Stats Bar (new) */
.stats-bar {
    margin: 4em calc(1em + 1.5625vw);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--blue-primary) 0%, #1a1a3e 100%);
    border-radius: 1rem;
    color: var(--white);
    transition: transform 0.3s;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-card__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red-secondary);
    margin-bottom: 0.25rem;
}
.stat-card__label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.clients__heading {
    margin: 5em calc(1em + 1.5625vw) 1.5em;
    font-size: 1.125rem;
}
.clients__heading::after {
    content: '';
    border-bottom: 3px solid var(--red-secondary);
    display: block;
    padding-top: 0.25em;
    width: 40px;
}
.clients__list {
    --grid-layout-gap: 2em;
    --grid-column-count: 4;
    --grid-item--min-width: 100px;
    --gap-count: calc(var(--grid-column-count) - 1);
    --total-gap-width: calc(var(--gap-count) * var(--grid-layout-gap));
    --grid-item--max-width: calc((100% - var(--total-gap-width)) / var(--grid-column-count));
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(max(var(--grid-item--min-width), var(--grid-item--max-width)), 1fr));
    align-items: center;
    gap: var(--grid-layout-gap);
    margin: 0 calc(1em + 1.5625vw) 3em;
}
.line-design {
    margin: 0 calc(1em + 1.5625vw) 2em;
}

@media (min-width: 700px) {
    .home-hero__heading { font-size: 3rem; }
    .home-hero__fig { align-items: flex-start; flex-direction: row; gap: 7.5%; }
    .stats-bar { grid-template-columns: repeat(4, 1fr); }
}

/* Challenges */
.challenges__wrapper {
    color: var(--black);
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 5em calc(1em + 1.5625vw);
    display: flex;
    flex-direction: column;
    gap: 2em 5em;
}
.challenges__heading {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5em 0;
}
.challenges__text { margin: 1.25em 0; }
.choose-us__item::before {
    content: '\2022';
    color: var(--red-secondary);
    font-weight: 700;
    margin-right: 0.75em;
}
@media (min-width: 900px) {
    .challenges__wrapper { flex-direction: row; justify-content: space-between; }
    .challenges__wrapper section { flex: 1; }
}

/* About Section (home) */
.about-section {
    background: linear-gradient(124.05deg, #F02E2E 31.07%, rgba(18, 167, 244, 0.8) 90.68%);
    color: var(--white);
    font-size: calc(18 / 16 * 1rem);
    padding: 1em;
    margin: 4em calc(1em + 1.5625vw);
    border-radius: 1rem;
    max-width: calc(100vw - 2 * (1em + 1.5625vw));
    overflow: hidden;
    box-sizing: border-box;
}
.about-section__fig {
    display: flex;
    flex-direction: column;
    column-gap: 2em;
}
.about-section__img {
    width: 100%;
    margin: 0 auto;
    max-width: 400px;
}
.about-section__figc {
    line-height: 1.7;
    max-width: 700px;
}
.about-section__heading {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5em;
}
.about-section__link-btn {
    background: var(--red-secondary);
    border-radius: 0.5em;
    color: var(--white);
    padding: 0.5em 1em;
    display: inline-block;
    margin-top: 1.5em;
    transition: opacity 0.2s;
}
.about-section__link-btn:hover { opacity: 0.85; }
@media (min-width: 900px) {
    .about-section__img { max-width: none; width: 40%; }
    .about-section__fig { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ===== ABOUT PAGE ===== */
.about-vision-mission {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3em calc(1em + 1.5625vw);
}
.vm-card {
    background: #f8f9fa;
    border-radius: 1rem;
    padding: 2rem;
    border-left: 4px solid var(--red-secondary);
    transition: transform 0.3s, box-shadow 0.3s;
}
.vm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.vm-card__heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--blue-primary);
}
.vm-card__text {
    line-height: 1.7;
    color: #374151;
}
@media (min-width: 768px) {
    .about-vision-mission { grid-template-columns: 1fr 1fr; }
}

/* Pillars (People, Process, Technology) */
.pillars {
    margin: 4em calc(1em + 1.5625vw);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.pillar-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}
.pillar-card:hover {
    border-color: var(--red-secondary);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.pillar-card__heading {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.pillar-card__text {
    line-height: 1.7;
    color: #4b5563;
}
@media (min-width: 768px) {
    .pillars { grid-template-columns: repeat(3, 1fr); }
}

/* Core Values (new) */
.core-values {
    margin: 4em calc(1em + 1.5625vw);
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--blue-primary) 0%, #1a1a3e 100%);
    border-radius: 1rem;
    color: var(--white);
}
.core-values__heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}
.core-values__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.cv-card {
    text-align: center;
    padding: 1.5rem;
}
.cv-card__icon {
    font-size: 2.5rem;
    color: var(--red-secondary);
    margin-bottom: 1rem;
}
.cv-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.cv-card__text {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}
@media (min-width: 768px) {
    .core-values__grid { grid-template-columns: repeat(4, 1fr); }
}

/* Team Carousel */
.team-section {
    margin: 4em calc(1em + 1.5625vw);
}
.team-section__heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.team-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.team-card__img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.team-card__info {
    padding: 1.5rem;
}
.team-card__name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.team-card__role {
    color: var(--red-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}
.team-card__desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Process Section */
.process-section {
    margin: 4em calc(1em + 1.5625vw);
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}
.process-section__content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.process-section__content p {
    line-height: 1.7;
    margin-bottom: 1rem;
}
.process-list {
    margin-top: 1.5rem;
}
.process-list__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #e5e7eb;
}
.process-list__number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--red-secondary);
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.15rem;
}
.process-list__text {
    font-size: 1rem;
    line-height: 1.5;
}
.process-section__image img {
    border-radius: 1rem;
    width: 100%;
}
@media (min-width: 768px) {
    .process-section { grid-template-columns: 1.5fr 1fr; }
}

/* ===== SOLUTIONS PAGE ===== */
.solutions-section {
    margin: 3em calc(1em + 1.5625vw);
}
.solutions-section__heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.solution-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s;
}
.solution-card:hover {
    border-color: var(--red-secondary);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.solution-card__heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.solution-card__text {
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 0.5rem;
}
.solution-card__link {
    color: var(--red-secondary);
    font-weight: 500;
    transition: opacity 0.2s;
    white-space: nowrap;
    margin-top: 1rem;
    display: inline-block;
}
.solution-card__link:hover { opacity: 0.7; }

/* Partners Grid */
.partners-section {
    margin: 3em calc(1em + 1.5625vw);
    text-align: center;
}
.partners-section__heading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 1;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}
.partners-grid img {
    max-height: 50px;
    width: auto;
    opacity: 1;
    transition: transform 0.3s;
}
.partners-grid img:hover {
    transform: scale(1.05);
}

/* Performance Section */
.perf-section {
    margin: 3em calc(1em + 1.5625vw);
}
.perf-section__heading {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.perf-section__intro {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4b5563;
}
.perf-list { margin-top: 1rem; }
.perf-list__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
}
.perf-list__item::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--red-secondary);
    border-radius: 50%;
    margin-top: 0.5rem;
}

/* Contact CTA */
.contact-cta {
    margin: 3em calc(1em + 1.5625vw);
    background: linear-gradient(135deg, var(--blue-primary), #1a1a3e);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
}
.contact-cta__heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.contact-cta a {
    color: var(--red-secondary);
    font-weight: 500;
    text-decoration: underline;
}

/* ===== CAREERS & CONTACT FORMS ===== */
.form-section {
    margin: 3em calc(1em + 1.5625vw);
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
.promise-section h2,
.form-section__form h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}
.promise-list { margin-top: 1rem; }
.promise-list__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}
.promise-list__item::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--red-secondary);
    border-radius: 50%;
    margin-top: 0.5rem;
}
.promise-list__item i {
    color: var(--red-secondary);
}
@media (min-width: 768px) {
    .form-section { grid-template-columns: 1fr 1fr; }
}

/* Form Styles */
.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fff;
}
.form-input:focus {
    outline: none;
    border-color: var(--blue-primary);
}
textarea.form-input { resize: vertical; min-height: 150px; }
.form-file-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--blue-primary);
    color: var(--white);
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}
.form-file-btn:hover { opacity: 0.85; }
.form-file-input { display: none; }
.form-file-name { margin-top: 0.5rem; font-size: 0.85rem; color: #6b7280; }
.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background: var(--red-secondary);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.85; }

/* Success Modal */
.success-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    place-content: center;
    background: rgba(0,0,0,0.5);
}
.success-modal.active { display: grid; }
.success-modal__content {
    background: var(--white);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
}
.success-modal__img {
    width: 60px;
    margin-bottom: 1rem;
}
.success-modal__heading {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.success-modal__text {
    color: #4b5563;
    line-height: 1.6;
}

/* ===== SERVICE SUBPAGES (SIO, SSO, SSAT, Resource Library) ===== */
.service-intro {
    margin: 3em calc(1em + 1.5625vw);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
.service-intro__text h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}
.service-intro__text p {
    line-height: 1.7;
    color: #4b5563;
}
.service-intro__image img {
    border-radius: 1rem;
    width: 100%;
}
@media (min-width: 768px) {
    .service-intro { grid-template-columns: 1fr 1fr; }
}

/* ===== GENERAL RESPONSIVE ===== */
@media (min-width: 1250px) {
    .solutions-section,
    .partners-section,
    .perf-section,
    .contact-cta,
    .form-section,
    .service-intro,
    .page-hero {
        margin-left: 150px;
        margin-right: 150px;
    }
}

/* Flash message */
.flash-msg {
    background: #dcfce7;
    color: #166534;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: none;
}
.flash-msg.active { display: block; }

/* ===== LEGAL / COOKIE PAGES ===== */
.legal-content {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 calc(1em + 1.5625vw);
}
.legal-content__inner {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1.25rem;
    padding: 3rem;
}
.legal-updated {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}
.legal-content h2 {
    font-size: 1.25rem;
    color: var(--blue-primary);
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--red-secondary);
    display: inline-block;
}
.legal-content h2::after {
    display: none;
}
.legal-content p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.legal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}
.legal-content ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #374151;
    line-height: 1.7;
}
.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red-secondary);
}
.legal-content a {
    color: var(--red-secondary);
    text-decoration: underline;
}
.legal-content strong {
    color: var(--blue-primary);
}

/* Cookie Table */
.cookie-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
}
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.cookie-table thead th {
    background: var(--blue-primary);
    color: white;
    padding: 0.85rem 1rem;
    text-align: left;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.8rem;
}
.cookie-table tbody td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}
.cookie-table tbody tr:hover {
    background: #f9fafb;
}

/* Cookie Preference Toggles */
.cookie-prefs {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cookie-pref-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    transition: all 0.2s;
}
.cookie-pref-item:hover {
    border-color: var(--red-secondary);
}
.cookie-pref-info h3 {
    font-size: 1rem;
    color: var(--blue-primary);
    margin-bottom: 0.25rem;
}
.cookie-pref-info h3::after { display: none; }
.cookie-pref-info p {
    color: #6b7280;
    font-size: 0.85rem;
    margin: 0;
}
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
    margin-left: 1rem;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #d1d5db;
    border-radius: 28px;
    transition: 0.3s;
}
.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--red-secondary);
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(24px);
}
.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .legal-content__inner {
        padding: 1.5rem;
    }
    .cookie-pref-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .cookie-toggle {
        margin-left: 0;
    }
}

/* ============================================================
   SHARED COMPONENTS — used by SSO, SIO, SSAT, Resource Library pages
   ============================================================ */

/* --- vh-btn (buttons) --- */
.vh-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1.5px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}
.vh-btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.vh-btn:hover svg { transform: translateX(3px); }
.vh-btn--solid {
    background: var(--red-secondary);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(240,46,46,0.32);
}
.vh-btn--solid:hover {
    background: #c01818;
    box-shadow: 0 10px 28px rgba(240,46,46,0.4);
    transform: translateY(-2px);
}
.vh-btn--ghost {
    background: transparent;
    color: var(--blue-primary);
    border-color: rgba(0,0,30,0.18);
}
.vh-btn--ghost:hover {
    border-color: var(--blue-primary);
    background: var(--blue-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* --- vh-divider --- */
.vh-divider {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 1rem;
    padding: 0 calc(1em + 2vw);
    box-sizing: border-box;
}

/* --- vh-clients (marquee client logos) --- */
.vh-clients {
    padding: 2.5rem calc(1em + 2vw);
    background: linear-gradient(180deg, rgba(0,0,30,0.02) 0%, transparent 100%);
    overflow: hidden;
    position: relative;
}
.vh-clients__heading {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #6b7280;
    margin-bottom: 1.75rem;
    font-weight: 600;
}
.vh-clients__track {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.vh-clients__row {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    animation: vh-marquee 30s linear infinite;
}
.vh-clients__track:hover .vh-clients__row { animation-play-state: paused; }
@keyframes vh-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.vh-clients__logo {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    height: 120px;
    width: 220px;
}
.vh-clients__logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    opacity: 1;
    transition: transform 0.3s;
}
.vh-clients__logo:hover img {
    transform: scale(1.08);
}

/* Mobile: clients grid instead of marquee */
@media (max-width: 768px) {
    .vh-clients__track {
        overflow: visible;
        mask-image: none;
        -webkit-mask-image: none;
    }
    .vh-clients__row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        width: 100%;
        animation: none;
    }
    .vh-clients__logo {
        height: 70px;
        width: 100%;
    }
    .vh-clients__logo img {
        max-height: 50px;
    }
    .vh-clients__logo--dup {
        display: none;
    }
}
@media (max-width: 400px) {
    .vh-clients__row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- solutions-list grid variants --- */
.solutions-list--2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.solutions-list--3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .solutions-list--2col {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .solutions-list--3col {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

/* --- solutions-section heading --- */
.solutions-section__heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* --- solution-card sub-list (SIO) --- */
.solution-card__list {
    list-style: disc inside;
    padding-left: 0.5rem;
    margin-top: 0.5rem;
    color: #4b5563;
    line-height: 1.8;
}
.solution-card__list li { margin-bottom: 0.25rem; }

/* --- sio-benefits-list --- */
.sio-benefits-list {
    list-style: disc inside;
    padding-left: 0.5rem;
    color: #4b5563;
    line-height: 1.8;
    margin: 0.5rem 0;
}
.sio-benefits-list li { margin-bottom: 0.25rem; }

/* --- insight-block (Resource Library) --- */
.insight-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--blue-primary);
    color: var(--white);
    box-shadow: 0 20px 50px rgba(0,0,30,0.18);
}
.insight-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 250px;
}
.insight-block__body {
    padding: 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.insight-block__heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.insight-block__text {
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    font-size: 1rem;
}
.insight-block .vh-btn--solid {
    align-self: flex-start;
    margin-top: 1.25rem;
}
@media (min-width: 768px) {
    .insight-block {
        grid-template-columns: 1fr 1fr;
    }
    .insight-block__image img {
        min-height: 350px;
    }
}

/* --- resource-video --- */
.resource-video {
    width: 100%;
    border-radius: 1rem;
    background: #000;
}

/* --- Mobile grid improvements --- */
@media (max-width: 600px) {
    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin: 2rem 1rem;
    }
    .stat-card { padding: 1.25rem 0.75rem; }
    .stat-card__number { font-size: 1.75rem; }
    .clients__list {
        --grid-column-count: 3;
        --grid-layout-gap: 1.25rem;
        --grid-item--min-width: 80px;
        margin: 0 1rem 2rem;
    }
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 1rem;
    }
    .partners-grid img { max-height: 40px; }
    .page-hero { min-height: 280px; }
    .page-hero__heading { font-size: 1.75rem; }
    .service-intro { flex-direction: column !important; }
    .service-intro__image { order: -1; max-width: 100%; }
    .service-intro__image img { max-height: 220px; }
    .insight-block__body { padding: 1.5rem; }
    .insight-block__heading { font-size: 1.25rem; }
    .contact-cta { padding: 2rem 1.25rem; margin: 2rem 1rem; }
    .contact-cta__heading { font-size: 1.25rem; }
    /* Solutions list: stack on very small */
    .solutions-list--2col,
    .solutions-list--3col {
        grid-template-columns: 1fr;
    }
}

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