/* ================================================================
   VIVACITY SOLUTIONS â€” HOMEPAGE CSS (Pixel-Perfect Figma Match)
   Design Tokens: accent #F3124E | dark #07091e | Outfit + Unbounded
   ================================================================ */

/* ================================================================
   1. HERO SECTION
   ================================================================ */
/* Figma hero shell — home + inner pages using #homeHeroSec.homeHero--figma (inner shell also in about.css for About/Services until unified) */
body.site-body--home #homeHeroSec {
    position: relative;
    min-height: 760px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    margin-top: -92px !important;
    padding: 244px 20px 24px !important;
    background: transparent;
}

body.site-body--inner #homeHeroSec.homeHero--figma {
    position: relative;
    min-height: 600px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    margin-top: -92px !important;
    padding: 140px 20px 24px !important;
    background: transparent;
}

.homeHero__animatedBg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.homeHero__star {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: homeHeroStarPulse 3.6s ease-in-out infinite;
}

.homeHero__star--1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.homeHero__star--2 {
    top: 12%;
    left: 36%;
    animation-delay: 0.8s;
}

.homeHero__star--3 {
    top: 25%;
    right: 18%;
    animation-delay: 1.4s;
}

.homeHero__star--4 {
    top: 44%;
    right: 28%;
    animation-delay: 2s;
}

.homeHero__star--5 {
    top: 55%;
    left: 25%;
    animation-delay: 2.6s;
}

/* Zero-height div sitting exactly at the hero/feature-cards boundary.
   Orb-3 is absolutely positioned inside it, centred on the boundary line.
   position:relative + z-index:2 ensures it paints above both sections. */
.heroOrbBoundary {
    position: relative;
    height: 0;
    overflow: visible;
    z-index: 5;
    /* must be above #homeFeatureCards z-index:2 so orb-3 overlaps cards */
    pointer-events: none;
}

/* Hero background orbs — radar rings (Figma); sits under copy, above page canvas */
.homeHero__bgOrbs {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.homeHero__orb {
    position: absolute;
    border-radius: 50%;
}

/*
 * ORBS — smooth atmospheric glow matching Figma
 * overflow:hidden on #homeHeroSec clips filter:blur(), so we achieve
 * softness purely via a multi-stop radial gradient that fades gradually.
 * No blur filter needed — the gradient IS the softness.
 */

/* Orb 1 — upper-right: solid center visible, only soft outer glow clips at edge */
.homeHero__orb--1 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 40% 36%,
            rgba(220, 50, 78, 1.00) 0%,
            rgba(192, 26, 52, 1.00) 30%,
            rgba(150, 12, 32, 0.88) 54%,
            rgba(90, 5, 16, 0.50) 74%,
            rgba(40, 2, 8, 0.14) 90%,
            transparent 100%);
    top: 160px;
    right: 10px;
    /* fully inside viewport — no clipping */
}

/* Orb 2 — left side: solid center visible, soft outer glow clips at left edge */
.homeHero__orb--2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 38% 34%,
            rgba(210, 45, 72, 1.00) 0%,
            rgba(180, 22, 46, 1.00) 30%,
            rgba(138, 11, 28, 0.85) 54%,
            rgba(82, 4, 14, 0.46) 74%,
            rgba(36, 2, 7, 0.12) 90%,
            transparent 100%);
    top: 220px;
    left: 10px;
    /* fully inside viewport — no clipping */
}

/* Orb 3 — bottom-left: top half in hero, bottom half overlaps feature cards transparently */
.homeHero__orb--3 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle at 42% 38%,
            rgba(225, 52, 76, 1.00) 0%,
            rgba(195, 28, 54, 0.92) 22%,
            rgba(155, 14, 34, 0.72) 44%,
            rgba(95, 5, 16, 0.38) 65%,
            rgba(42, 2, 8, 0.10) 85%,
            transparent 100%);
    top: -100px;
    /* 100px in hero, 280px overlapping into feature cards */
    left: 0px;
    z-index: 5;
}

.homeHero__inner {
    position: relative;
    z-index: 3;
    /* above canvas (1) and orbs (2) */
    text-align: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Homepage hero — first-visit / refresh: staggered blur + rise (scoped to Figma home only) */
@keyframes homeHeroTitleIn {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0) scale(0.98);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes homeHeroLeadIn {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
        filter: blur(3px);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

@keyframes homeHeroCtasIn {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

#homeHeroSec.homeHero--figma .homeHero__headingLine1 {
    opacity: 0;
    animation: homeHeroTitleIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both;
}

#homeHeroSec.homeHero--figma .homeHero__headingLine2 {
    opacity: 0;
    animation: homeHeroTitleIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

#homeHeroSec.homeHero--figma .homeHero__desc {
    opacity: 0;
    animation: homeHeroLeadIn 0.92s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}

#homeHeroSec.homeHero--figma .homeHero__actions {
    opacity: 0;
    animation: homeHeroCtasIn 0.88s cubic-bezier(0.16, 1, 0.3, 1) 0.52s both;
}

@media (prefers-reduced-motion: reduce) {

    #homeHeroSec.homeHero--figma .homeHero__headingLine1,
    #homeHeroSec.homeHero--figma .homeHero__headingLine2,
    #homeHeroSec.homeHero--figma .homeHero__desc,
    #homeHeroSec.homeHero--figma .homeHero__actions {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

.homeHero__heading {
    margin: 0 0 12px;
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #ffffff;
}

.homeHero__heroLabel {
    display: block;
    margin: 0 auto 16px;
    width: fit-content;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(243, 18, 78, 0.15);
    border: 1px solid rgba(243, 18, 78, 0.45);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: #f7829f;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}

.homeHero__headingBold {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 6vw, 86px);
    color: #ffffff;
    letter-spacing: 0.4px;
    line-height: 1.05;
    text-transform: uppercase;
}

/* Home hero — Figma / PDF: two-line title (sentence case) */
.homeHero__headingBold.homeHero__headingBold--figma {
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

/* Faint radar rings (Figma hero) — decorative only */
body.site-body--home #homeHeroSec.homeHero--figma .homeHero__bgOrbs::before,
body.site-body--home #homeHeroSec.homeHero--figma .homeHero__bgOrbs::after {
    content: "";
    position: absolute;
    top: 50%;
    width: min(520px, 55vw);
    height: min(520px, 55vw);
    margin-top: calc(min(520px, 55vw) / -2);
    border-radius: 50%;
    border: 1px solid rgba(243, 18, 78, 0.22);
    pointer-events: none;
    z-index: 0;
}

body.site-body--home #homeHeroSec.homeHero--figma .homeHero__bgOrbs::before {
    left: -8%;
    box-shadow:
        0 0 0 1px rgba(243, 18, 78, 0.08),
        inset 0 0 0 56px transparent,
        inset 0 0 0 57px rgba(243, 18, 78, 0.06),
        inset 0 0 0 112px transparent,
        inset 0 0 0 113px rgba(243, 18, 78, 0.045);
}

body.site-body--home #homeHeroSec.homeHero--figma .homeHero__bgOrbs::after {
    right: -8%;
    box-shadow:
        0 0 0 1px rgba(243, 18, 78, 0.08),
        inset 0 0 0 48px transparent,
        inset 0 0 0 49px rgba(243, 18, 78, 0.055),
        inset 0 0 0 96px transparent,
        inset 0 0 0 97px rgba(243, 18, 78, 0.04);
}

.homeHero__headingLine1,
.homeHero__headingLine2 {
    display: block;
}

.homeHero__headingLine1 {
    color: #F3124E;
}

.homeHero__headingLine2 {
    color: #ffffff;
}

/* Figma home hero: pink lead line + large white second line (sentence case, not single-size block) */
#homeHeroSec.homeHero--figma .homeHero__headingBold.homeHero__headingBold--figma {
    font-size: unset;
    line-height: 1.02;
}

#homeHeroSec.homeHero--figma .homeHero__headingLine1,
#homeHeroSec.homeHero--figma .homeHero__headingLine1Row,
#homeHeroSec.homeHero--figma .homeHero__headingLine1Row--secondary {
    font-size: clamp(24px, 4.2vw, 64px);
    font-weight: 800;
    color: #f3124e;
    letter-spacing: -0.04em;
    line-height: 0.98;
}

#homeHeroSec.homeHero--figma .homeHero__headingLine2 {
    font-size: clamp(24px, 4.2vw, 64px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 0.98;
    display: inline-block;
    white-space: normal;
    overflow-wrap: break-word;
}

#homeHeroSec.homeHero--figma .homeHero__headingLine2--singleLine {
    white-space: nowrap !important;
}

#homeHeroSec.homeHero--figma .homeHero__headingLine2--wrap {
    white-space: normal !important;
    text-wrap: balance;
    overflow-wrap: break-word;
    word-break: normal;
    max-width: 100%;
}

#homeHeroSec.homeHero--figma .homeHero__headingLine2--wrap br {
    display: block;
    content: '';
    margin-top: 0.08em;
}

/*
 * site.css loads after home.css and sets global h1/h2 styles (!important).
 * Reset hero h1 so the two-line Figma title keeps correct sizes and colors.
 */
#siteMain #homeHeroSec.homeHero--figma h1.homeHero__heading {
    font-size: unset !important;
    font-weight: inherit !important;
    letter-spacing: normal !important;
    line-height: 1.05 !important;
    color: inherit !important;
    text-transform: none !important;
}

#siteMain #homeHeroSec.homeHero--figma .homeHero__headingBold.homeHero__headingBold--figma {
    color: inherit !important;
}

#siteMain #homeHeroSec.homeHero--figma .homeHero__headingLine1,
#siteMain #homeHeroSec.homeHero--figma .homeHero__headingLine1Row--secondary {
    color: #f3124e !important;
    font-size: clamp(24px, 4.2vw, 64px) !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    line-height: 0.98 !important;
}

#siteMain #homeHeroSec.homeHero--figma .homeHero__headingLine2 {
    color: #ffffff !important;
    font-size: clamp(24px, 4.2vw, 64px) !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    line-height: 0.98 !important;
}

body.site-body--inner #siteMain #homeHeroSec.homeHero--figma .homeHero__headingLine2--wrap {
    font-size: clamp(28px, 5.8vw, 78px) !important;
    line-height: 1.08 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
}

/* Home: white headline single row (see also .homeHero__headingLine2--singleLine in late-head-styles) */
body.site-body--home #siteMain #homeHeroSec.homeHero--figma .homeHero__headingLine2--singleLine {
    white-space: nowrap;
    text-wrap: nowrap;
    word-break: normal;
    overflow-wrap: normal;
    font-size: clamp(24px, 4.2vw, 64px) !important;
}

.homeHero__headingRed {
    color: #F3124E;
}

.homeHero__headingSub {
    display: block;
    margin-top: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(15px, 1.6vw, 22px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.homeHero__desc {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin: 20px auto 40px !important;
    max-width: min(640px, 92vw);
    letter-spacing: 0.1px;
}

.homeHero__desc a,
.homeHero__desc a * {
    color: var(--viva-pink) !important;
    font-weight: 600 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.homeHero__desc a:hover,
.homeHero__desc a:hover * {
    color: #fff !important;
    text-shadow: 0 0 10px var(--viva-pink-glow);
}

/* Home hero (PDF/Figma): lead paragraph — Figma hero only */
#homeHeroSec.homeHero--figma .homeHero__desc {
    font-size: clamp(17px, 2.1vw, 22px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
    margin: 22px auto 40px !important;
    max-width: min(720px, 94vw);
    letter-spacing: 0.01em;
}

.homeHero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

#homeHeroSec.homeHero--figma .homeHero__actions {
    gap: clamp(14px, 2vw, 22px);
}

/* Figma CTAs: taller pill, clearer border, larger arrow disc */
#homeHeroSec.homeHero--figma .homeHero__btn--outline {
    padding: 18px 32px 18px 36px;
    min-height: 68px;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.48);
    background: rgba(8, 10, 26, 0.68);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

#homeHeroSec.homeHero--figma .homeHero__btn--outline:hover {
    background: rgba(16, 18, 40, 0.88);
    border-color: rgba(255, 255, 255, 0.6);
}

#homeHeroSec.homeHero--figma .homeHero__btn--outline .homeHero__btnIcon {
    width: 38px;
    height: 38px;
}

#homeHeroSec.homeHero--figma .homeHero__btn--outline .homeHero__btnIcon svg {
    width: 17px;
    height: 17px;
}

/* PDF Case Studies hero: solid white CTA + dark text */
#homeHeroSec.homeHero--figma .homeHero__btn--light {
    padding: 18px 32px 18px 36px;
    min-height: 68px;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    background: #ffffff;
    color: #0a0c14;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

#homeHeroSec.homeHero--figma .homeHero__btn--light:hover {
    background: #f0f2f8;
    color: #05070d;
    transform: translateY(-1px);
}

#homeHeroSec.homeHero--figma .homeHero__btn--light .homeHero__btnIcon {
    background: rgba(243, 18, 78, 0.12);
    border: 1px solid rgba(243, 18, 78, 0.35);
}

#homeHeroSec.homeHero--figma .homeHero__btn--light .homeHero__btnIcon svg {
    stroke: #f3124e;
}

#homeHeroSec.homeHero--figma .homeHero__btn--primary {
    padding: 18px 32px 18px 36px;
    min-height: 68px;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
}

#homeHeroSec.homeHero--figma .homeHero__btn--primary .homeHero__btnIcon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

#homeHeroSec.homeHero--figma .homeHero__btn--primary .homeHero__btnIcon svg {
    width: 17px;
    height: 17px;
}

.homeHero__visualWrap {
    margin-top: 40px;
}

/* Figma hero: three vertical images with soft brand glow */
.homeHero__visualRow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 2vw, 20px);
    max-width: 1100px;
    margin: 0 auto;
}

.homeHero__visualThumb {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.45),
        0 0 48px rgba(243, 18, 78, 0.12);
}

.homeHero__visualThumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.homeHero__visualCard {
    max-width: 860px;
    margin: 0 auto;
    height: 320px;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        radial-gradient(circle at 20% 20%, rgba(243, 18, 78, 0.26), transparent 45%),
        linear-gradient(140deg, #2a0b20 0%, #0d1734 52%, #070b1e 100%);
}

.homeHero__visualGrid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.2;
}

.homeHero__visualGlow {
    position: absolute;
    left: 18%;
    top: 18%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 18, 78, 0.36) 0%, rgba(243, 18, 78, 0.05) 60%, transparent 100%);
    filter: blur(4px);
}

.homeHero__laptop {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: min(86%, 620px);
}

.homeHero__laptopTop {
    height: 190px;
    border-radius: 18px 18px 8px 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(160deg, rgba(22, 26, 49, 0.95), rgba(13, 17, 36, 0.96));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.homeHero__windowDots {
    display: flex;
    gap: 6px;
    padding: 12px 14px;
}

.homeHero__windowDots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

.homeHero__screenLines {
    display: grid;
    gap: 10px;
    padding: 12px 18px;
}

.homeHero__screenLines span {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(243, 18, 78, 0.82), rgba(255, 255, 255, 0.18));
    animation: homeHeroLines 3s ease-in-out infinite;
}

.homeHero__screenLines span:nth-child(2) {
    width: 72%;
    animation-delay: 0.5s;
}

.homeHero__screenLines span:nth-child(3) {
    width: 48%;
    animation-delay: 1s;
}

.homeHero__laptopBottom {
    width: 110%;
    margin-left: -5%;
    height: 16px;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(180deg, #b3bdd1, #7b879f);
}

@keyframes homeHeroStarPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.95;
        transform: scale(1.4);
    }
}

@keyframes homeHeroLines {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(8px);
    }
}

.homeHero__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 26px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.2px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    cursor: pointer;
}

.homeHero__btn--primary {
    background: #F3124E;
    color: #ffffff;
    box-shadow: 0 4px 24px rgba(243, 18, 78, 0.28);
}

.homeHero__btn--primary:hover {
    background: #d9104a;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(243, 18, 78, 0.38);
    color: #ffffff;
}

/* Figma / PDF: dark pill, light border, pink arrow disc */
.homeHero__btn--outline {
    background: rgba(7, 9, 30, 0.82);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.homeHero__btn--outline:hover {
    background: rgba(16, 20, 48, 0.92);
    border-color: rgba(255, 255, 255, 0.52);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.homeHero__btn--outline .homeHero__btnIcon {
    background: #F3124E;
}

.homeHero__btn--outline:hover .homeHero__btnIcon {
    background: #d9104a;
}

.homeHero__btnIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.homeHero__btn:hover .homeHero__btnIcon {
    background: rgba(255, 255, 255, 0.3);
}

.homeHero__btnIcon svg {
    width: 15px;
    height: 15px;
}

/* Feature cards grid: see feature-cards-sections.css (About, Resources, Industries — not homepage). */

/* ——— Feature Banner (One image block) ——— */
#homeFeatureBanner {
    padding: 0 20px;
    margin-bottom: 0;
    position: relative;
    z-index: 4;
}

.featureBanner__inner {
    max-width: 1160px;
    margin: 0 auto;
}

.featureBanner__imageWrap {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    /* Flat bottom so the stats column can meet the banner without a curved gap */
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    background: rgba(11, 14, 40, 0.35);
}

.featureBanner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featureBanner__gridOverlay {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 40%,
            rgba(243, 18, 78, 0.08) 60%,
            rgba(7, 9, 30, 0.95) 100%);
}

.featureBanner__card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: clamp(20px, 2.4vw, 26px) clamp(18px, 2vw, 24px);
}

.featureBanner__card p {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(15px, 1.2vw, 19px);
    font-weight: 400;
    color: #ffffff !important;
    line-height: 1.3;
    margin: 0;
    letter-spacing: 0.01em;
}

.featureBanner__card p strong {
    font-weight: 800;
    display: block;
    margin-top: 2px;
    font-size: clamp(25px, 1.9vw, 30px);
    color: #ffffff !important;
    line-height: 1.18;
    letter-spacing: -0.01em;
}

/* Third card copy (Build / high-performance): nudge slightly right */
.featureBanner__card:nth-child(3) p {
    margin-left: clamp(20px, 2.1vw, 34px);
}

/* First card: keep exactly two rows — "Turn data" / "into Insights" */
.featureBanner__card:nth-child(1) p strong {
    display: inline;
    margin-top: 0;
    font-size: inherit;
    line-height: inherit;
}

@media (max-width: 992px) {
    .featureBanner__gridOverlay {
        grid-template-columns: 1fr;
    }
}

/* Dual image strip — Figma: two halves, zero gutter, brand color wash */
.homeAdStripSec {
    padding: clamp(28px, 4vw, 48px) 20px;
    margin: 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.homeAdStrip {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    overflow: hidden;
    line-height: 0;
    border-radius: 0;
}

.homeAdStrip__half {
    position: relative;
    flex: 1 1 50%;
    min-width: 0;
    min-height: clamp(180px, 22vw, 320px);
    aspect-ratio: 8 / 5;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    overflow: hidden;
}

.homeAdStrip__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.homeAdStrip__half::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.homeAdStrip__half--left::after {
    background:
        linear-gradient(100deg, rgba(243, 18, 78, 0.42) 0%, rgba(243, 18, 78, 0.08) 45%, transparent 72%),
        linear-gradient(180deg, transparent 0%, rgba(7, 9, 30, 0.35) 100%);
}

.homeAdStrip__half--right::after {
    background:
        linear-gradient(260deg, rgba(99, 102, 241, 0.38) 0%, rgba(59, 130, 246, 0.14) 42%, transparent 70%),
        linear-gradient(180deg, transparent 0%, rgba(7, 9, 30, 0.38) 100%);
}

@media (max-width: 640px) {
    .homeAdStrip {
        flex-direction: column;
        gap: 10px;
    }

    .homeAdStrip__half {
        flex: 1 1 auto;
        aspect-ratio: 16 / 10;
    }
}

/* 3. REAL RESULTS + STATS (only inside #homeResultsSec — Home / About / Services) */
#homeResultsSec {
    padding: 0 20px 80px;
    /* Stats column has no top padding — red strip meets flat bottom of banner (Figma) */
    margin-top: -1px;
    background: transparent;
    position: relative;
    z-index: 3;
}

#homeResultsSec .homeResults__inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 0;
    align-items: stretch;
}

#homeResultsSec .homeResults__content {
    padding-right: 0;
    min-width: 0;
}

/* Homepage only: overlap offset for feature banner row */
body.site-body--home #homeResultsSec .homeResults__content {
    padding-top: 220px;
}

#homeResultsSec .homeResults__stats {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    min-width: 0;
    min-height: 0;
}

#homeResultsSec .homeResults__headBlock {
    margin-bottom: 36px;
}

#homeResultsSec .homeResults__preHeading {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 2.75vw, 42px);
    color: #F3124E;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

#homeResultsSec .homeResults__heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 5.5vw, 76px);
    color: #ffffff;
    margin: 0.12em 0 24px;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

#homeResultsSec .homeResults__desc {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 1.8vw, 30px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.58;
    margin: 0;
}

/* Staff augmentation — Figma: large dark circular “disk” behind + overlapping rounded-rect photo */
#homeResultsSec .homeResults__staffCard {
    display: grid;
    grid-template-columns: minmax(232px, 268px) 1fr;
    gap: 0;
    background: linear-gradient(152deg, #505770 0%, #42485c 45%, #383e50 100%);
    border-radius: 16px 0 16px 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

#homeResultsSec .homeResults__staffCardImg {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 10px 20px 18px;
    background: rgba(0, 0, 0, 0.14);
    min-height: 220px;
    overflow: hidden;
}

/* Dark circular plate (Figma background behind the photo) */
#homeResultsSec .homeResults__staffCardImg::before {
    content: '';
    position: absolute;
    width: min(218px, 92%);
    aspect-ratio: 1;
    border-radius: 50%;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle at 32% 28%, #5a6278 0%, #3a4154 42%, #252a3a 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.07),
        0 14px 36px rgba(0, 0, 0, 0.4);
    z-index: 0;
    pointer-events: none;
}

#homeResultsSec .homeResults__staffCardImgInner {
    position: relative;
    z-index: 1;
    width: min(168px, 72%);
    max-width: 168px;
    margin-left: 44px;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.12);
}

#homeResultsSec .homeResults__staffCardImgInner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(243, 18, 78, 0.52) 0%,
            rgba(110, 48, 140, 0.42) 50%,
            rgba(25, 30, 50, 0.38) 100%);
    pointer-events: none;
    z-index: 1;
}

#homeResultsSec .homeResults__staffCardImgInner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Small accent: code / IDE — overlaps bottom-right of staff photo column */
#homeResultsSec .homeResults__staffCardMini {
    position: absolute;
    right: 10px;
    bottom: 14px;
    z-index: 2;
    width: clamp(72px, 18vw, 96px);
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.14);
    pointer-events: none;
}

#homeResultsSec .homeResults__staffCardMini img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

/* Single small image (no large portrait) — centered in the image column */
#homeResultsSec .homeResults__staffCard--soloImage {
    grid-template-columns: minmax(120px, 168px) 1fr;
}

#homeResultsSec .homeResults__staffCard--soloImage .homeResults__staffCardImg {
    justify-content: center;
    padding: 20px 14px;
    min-height: 160px;
}

#homeResultsSec .homeResults__staffCard--soloImage .homeResults__staffCardImg::before {
    width: min(140px, 88%);
    left: 50%;
    transform: translate(-50%, -50%);
}

#homeResultsSec .homeResults__staffCardMini--solo {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: clamp(88px, 20vw, 112px);
    margin: 0;
}

#homeResultsSec .homeResults__staffCardText {
    padding: 22px 26px 22px 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
}

#homeResultsSec .homeResults__staffCardText p {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(18px, 1.45vw, 22px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.62;
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
    text-align-last: left;
}

/* Stats Panel â€” Figma: vertical red gradient, centered numbers */
#homeResultsSec .homeResults__statsPanel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    --stats-divider-yellow: #ffeb3b;
    --stats-divider-inset: 12px;
    background: linear-gradient(180deg, #F3124E 0%, #be0c3c 100%);
    border-radius: 0 0 18px 18px;
    padding: 32px 28px;
    text-align: center;
    min-height: 0;
}

#homeResultsSec .homeResults__statsTitle {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin: 0 0 24px;
}

#homeResultsSec .homeResults__statItem {
    position: relative;
    padding: 18px 0 20px;
    border-bottom: none;
}

/* Figma: bright yellow rule under each block, inset — not full bleed; none after last row */
#homeResultsSec .homeResults__statItem:not(:last-child)::after {
    content: '';
    position: absolute;
    left: var(--stats-divider-inset, 12px);
    right: var(--stats-divider-inset, 12px);
    bottom: 0;
    height: 1px;
    background: var(--stats-divider-yellow, #ffeb3b);
    border-radius: 1px;
}

#homeResultsSec .homeResults__statItem:last-child {
    padding-bottom: 0;
}

#homeResultsSec .homeResults__statNumber {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 3.6vw, 48px);
    color: #ffffff;
    line-height: 1.08;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

#homeResultsSec .homeResults__statLabel {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.2px;
}

/* ================================================================
   4. MARQUEE TICKER
   ================================================================ */
/* Figma-style ticker: solid magenta band, bold white caps, comfortable height */
#homeMarquee,
#homeMarquee2,
#homeMarquee3 {
    background: #f3124e;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.homeMarquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    min-height: 22px;
    animation: marqueeScroll 32s linear infinite;
}

.homeMarquee__content {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-right: 28px;
    flex-shrink: 0;
}

.homeMarquee__content span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(12px, 1.05vw, 15px);
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.homeMarquee__dot {
    font-size: 14px !important;
    opacity: 0.85;
    letter-spacing: 0 !important;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ================================================================
   5. TRUSTED BY
   ================================================================ */
#homeTrustedSec {
    padding: clamp(72px, 9vw, 120px) 20px clamp(80px, 9vw, 96px);
    background: transparent;
}

.homeTrusted__inner {
    max-width: min(1600px, 100%);
    margin: 0 auto;
    text-align: center;
}

.homeTrusted__head {
    margin-bottom: clamp(48px, 6vw, 64px);
}

.homeTrusted__preHeading {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    /* Figma / Company Overview eyebrow — same token as inner pages (--viva-overview-eyebrow-fs in design-system-inner.css) */
    font-size: var(--viva-overview-eyebrow-fs, clamp(22px, 1.85vw, 30px));
    color: #F3124E;
    margin: 0 0 clamp(12px, 1.6vw, 18px);
    letter-spacing: 0.14em;
    line-height: 1.25;
    text-transform: uppercase;
}

.homeTrusted__heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 3.6vw, 50px);
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.4px;
    line-height: 1.15;
}

.homeTrusted__desc {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(17px, 1.5vw, 22px);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.9);
    max-width: min(42rem, 92vw);
    margin: clamp(20px, 2.8vw, 32px) auto 0;
    text-align: justify;
    text-justify: inter-word;
    text-align-last: center;
}

.homeTrusted__logos {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Infinite horizontal marquee (two rows; second row scrolls opposite direction) — no bordered “cells” */
.homeTrusted__marqueeRow {
    overflow: hidden;
    padding: 8px 0;
}

/* Same infinite pattern as #homeMarquee / .homeMarquee__track (duplicate chunks + translateX -50%) */
.homeTrusted__marqueeTrack {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: marqueeScroll 40s linear infinite;
}

.homeTrusted__marqueeTrack--reverse {
    animation-duration: 48s;
    animation-direction: reverse;
}

.homeTrusted__marqueeRow:hover .homeTrusted__marqueeTrack {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .homeTrusted__marqueeTrack {
        animation-duration: 120s;
    }

    .homeIndustries__marqueeTrack {
        animation-duration: 150s;
    }

    .homeIndustries__marqueeTrack--reverse {
        animation-duration: 160s;
    }

    .homeTestimonials__marqueeTrack {
        animation-duration: 180s;
    }

    .homeTestimonials__marqueeTrack--reverse {
        animation-duration: 190s;
    }
}

.homeTrusted__marqueeChunk {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: clamp(24px, 4vw, 64px);
    padding-right: clamp(24px, 4vw, 64px);
    box-sizing: border-box;
}

.homeTrusted__logoBox {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 2.6vw, 34px) clamp(16px, 2.2vw, 22px);
    transition: opacity 0.3s ease;
    min-height: clamp(76px, 7.5vw, 88px);
    flex: 0 0 auto;
    box-sizing: border-box;
}

.homeTrusted__logoBox:hover {
    opacity: 1;
}

.homeTrusted__logoBox img {
    max-width: min(182px, 28vw);
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.65;
    transition: opacity 0.3s ease;
}

.homeTrusted__logoBox:hover img {
    opacity: 1;
}

/* ================================================================
   6. CORE CAPABILITIES
   ================================================================ */
#homeCapabilitiesSec {
    padding: 96px 20px 96px;
    background: transparent;
}

.homeCap__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.homeCap__head {
    text-align: center;
    margin-bottom: 56px;
}

.homeCap__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F3124E;
    color: #ffffff;
    padding: 9px 20px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-decoration: none !important;
}

.homeCap__badgeIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.homeCap__badgeIcon svg {
    width: 12px;
    height: 12px;
}

.homeCap__headingGroup {
    margin: 0 auto 52px;
}

.homeCap__preHeading {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 2.8vw, 36px);
    color: #F3124E;
    margin: 0 0 -5px;
    /* Tighter grouping */
    letter-spacing: -0.01em;
    line-height: 1;
}

.homeCap__heading {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(48px, 6vw, 82px);
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.04em;
    line-height: 0.95;
}

/* ── Bento Grid: 4 columns × 2 rows ── */
.homeCap__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Sleeker heights */
    grid-template-rows: 280px 260px;
    gap: 16px;
    position: relative;
}

/* â”€â”€ Base card: FULL BLEED image + overlay text at bottom â”€â”€ */
.homeCap__card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #0d1025;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Full-bleed image fills entire card — keep photo visible; readability via bottom scrim */
.homeCap__cardImg {
    position: absolute;
    inset: 0;
    max-width: none;
    /* global img { max-width:100% } must not shrink full-bleed card photos */
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}

/* Lighter gradient so background art shows; stronger only behind text band */
.homeCap__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(7, 9, 30, 0.94) 0%,
            rgba(7, 9, 30, 0.72) 22%,
            rgba(7, 9, 30, 0.28) 48%,
            rgba(7, 9, 30, 0.06) 72%,
            transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Text content lives above gradient — top inset + flex-end so tall stacks (e.g. Software) never kiss the card edge */
.homeCap__cardContent {
    position: absolute;
    top: clamp(16px, 3.5vw, 40px);
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 20px;
    z-index: 2;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0;
}

.homeCap__cardTitle {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(18px, 1.5vw, 24px);
    color: var(--viva-pink, #F3124E);
    margin: 0 0 8px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.homeCap__cardDesc {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.48;
    margin: 0;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
}

/* â”€â”€ Row 1 placement â”€â”€ */
.homeCap__card--cloud {
    grid-column: 1;
    grid-row: 1;
}

.homeCap__card--center {
    grid-column: 2 / 4;
    grid-row: 1;
}

.homeCap__card--staff {
    grid-column: 4;
    grid-row: 1;
}

/* â”€â”€ Row 2 placement â”€â”€ */
.homeCap__card--software {
    grid-column: 1;
    grid-row: 2;
}

.homeCap__card--ai {
    grid-column: 2;
    grid-row: 2;
}

.homeCap__card--platforms {
    grid-column: 3;
    grid-row: 2;
}

.homeCap__card--marketing {
    grid-column: 4;
    grid-row: 2;
}

/* ── Centre red card — Figma: solid #F3124E, NO image ── */
.homeCap__card--center {
    background: #F3124E;
    border: none;
    display: flex;
    align-items: flex-start;
    /* text stays in upper portion; circle straddles below */
    justify-content: center;
    padding: 24px 20px 0;
    text-align: center;
    width: min(100%, 88%);
    justify-self: center;
}

/* Override ::after gradient on center card */
.homeCap__card--center::after {
    display: none;
}

.homeCap__centerText {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(23px, 2.05vw, 32px);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.24;
    margin: 0;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.homeCap__centerText strong {
    font-weight: 800;
    color: #ffffff;
}

/*
 * Logo Circle â€” direct child of .homeCap__grid (position: relative).
 * Sits on the boundary between row-1 (400px) and row-2.
 * top matches row-1 height so the mark sits on the row boundary;
 * transform: translate(-50%, -50%) centres it on that edge so the
 * top half sits inside the red card and the bottom half overlaps row-2.
 * left: 50% centres it horizontally across the full grid (cols 2-3 of 4
 * equal columns = 25%â€“75% â†’ midpoint 50%).
 */
/* =========================================
   CENTER LOGO CIRCLE
========================================= */
.homeCap__logoCircle {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #080c1d;
    border: 3px solid rgba(255, 255, 255, 0.12);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 20;

    /* Center between sections — nudge right to align with red card */
    top: 280px;
    left: calc(50% + 36px);
    transform: translate(-50%, -50%);

    overflow: visible;

    box-shadow:
        0 0 0 8px rgba(243, 18, 78, 0.10),
        0 16px 40px rgba(0, 0, 0, 0.75);
}

/* =========================================
   USE EXACT HEADER LOGO STYLE
========================================= */
.homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: auto;
    max-width: max-content;

    padding: 0;
    margin: 0;

    text-decoration: none !important;

    /* IMPORTANT */
    transform: none !important;
    scale: 1 !important;
}

/* =========================================
   WORDMARK CONTAINER
========================================= */
.homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo .brandLogoWordmark {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: fit-content;
    max-width: fit-content;

    margin: 0;
    padding: 0;
}

/* =========================================
   PRIMARY TEXT — vivacity
========================================= */
.homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo .brandLogoWordmark__primary,
.homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo .brandLogoWordmark__primInner {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;

    /* Header style explicitly set */
    font-size: clamp(26px, 2.52vw, 36px) !important;
    font-weight: 800 !important;
    font-family: 'Outfit', sans-serif !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;

    color: #F3124E !important;
    -webkit-text-fill-color: #F3124E !important;

    margin: 0;
    padding: 0;
}

/* =========================================
   SECONDARY TEXT — SOLUTIONS
========================================= */
.homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo .brandLogoWordmark__secondary {
    width: 100%;

    text-align: center;

    /* Header style explicitly set */
    font-size: clamp(10px, 0.92vw, 11px) !important;
    font-weight: 400 !important;
    font-family: 'Outfit', sans-serif !important;
    line-height: 1 !important;
    letter-spacing: 5.5px !important;

    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    margin: 9px 0 0 0 !important;
    padding: 0;
    padding-left: 5.5px !important;
}

/* =========================================
   OPTIONAL HOVER EFFECT
========================================= */
.homeCap__logoCircle:hover {
    transform: translate(-50%, -50%) scale(1.03);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* â”€â”€ View All Services button â”€â”€ */
.homeCap__viewAllBtn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px 14px 28px;
    border-radius: 100px;
    background: #F3124E;
    border: none;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(16px, 1.45vw, 20px);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-decoration: none !important;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 3;
    margin-top: 10px;
    min-height: 48px;
}

.homeCap__viewAllBtn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-1px);
}

.homeCap__viewAllBtnIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #000;
    flex-shrink: 0;
}

.homeCap__viewAllBtnIcon svg {
    width: 16px;
    height: 16px;
}

/* ================================================================
   7. GLOBAL UTILITY
   ================================================================ */
.text-accent {
    color: #F3124E !important;
}

/* ================================================================
   8. RESPONSIVE
   ================================================================ */

/* â€” XL Desktops (â‰¥1400px) â€” */
@media (min-width: 1400px) {
    .homeHero__headingBold {
        font-size: 86px;
    }

    #homeHeroSec.homeHero--figma .homeHero__headingLine1,
    #homeHeroSec.homeHero--figma .homeHero__headingLine1Row {
        font-size: 64px;
    }

    body.site-body--home #siteMain #homeHeroSec.homeHero--figma .homeHero__headingLine2--singleLine {
        font-size: 64px !important;
    }

    #homeHeroSec.homeHero--figma .homeHero__headingLine2 {
        font-size: 64px;
    }

    .homeHero__desc {
        font-size: 17px;
        max-width: 620px;
    }

    #homeHeroSec.homeHero--figma .homeHero__desc {
        font-size: 22px;
        max-width: 720px;
        margin-bottom: 40px;
        line-height: 1.55;
        font-weight: 400;
    }

    #homeHeroSec.homeHero--figma .homeHero__btn--outline {
        min-height: 58px;
        font-size: 16px;
        padding: 17px 26px 17px 32px;
    }

    #homeHeroSec.homeHero--figma .homeHero__btn--outline .homeHero__btnIcon {
        width: 40px;
        height: 40px;
    }

    #homeHeroSec.homeHero--figma .homeHero__btn--outline .homeHero__btnIcon svg {
        width: 18px;
        height: 18px;
    }

    .homeIndustries__preHeading {
        font-size: 50px;
    }

    .homeIndustries__heading {
        font-size: 64px;
    }

    .homeIndustries__desc {
        font-size: clamp(21px, 1.15vw, 24px);
    }

    .homeCaseStudies__preHeading {
        font-size: 36px;
    }

    .homeCaseStudies__heading {
        font-size: 58px;
    }

    .homeCaseStudies__desc {
        font-size: clamp(21px, 1.15vw, 24px);
    }

    .homeWhy__preHeading {
        font-size: 28px;
    }

    .homeWhy__heading {
        font-size: 56px;
    }

    .homeWhy__desc {
        font-size: clamp(21px, 1.15vw, 23px);
    }

    .homeHowWork__preHeading {
        font-size: 26px;
    }

    .homeHowWork__heading {
        font-size: 52px;
    }

    .homeHowWork__desc {
        font-size: clamp(21px, 1.15vw, 23px);
    }

    .homeTestimonials__preHeading {
        font-size: 30px;
    }

    .homeTestimonials__heading {
        font-size: 64px;
    }

    .homeTestimonials__desc {
        font-size: clamp(20px, 1.12vw, 22px);
    }

    .homeExperts__preHeading {
        font-size: 30px;
    }

    .homeExperts__heading {
        font-size: 64px;
    }

    .homeExperts__desc {
        font-size: clamp(20px, 1.12vw, 22px);
    }

    /* FAQ + contact heading stack uses --viva-overview-* in base .homeFaqContact__* (do not shrink here) */
}

/* â€” Desktop < 1200px â€” */
@media (max-width: 1200px) {
    .homeCap__grid {
        gap: 12px;
    }

    .homeCap__card--center {
        padding: 36px 28px;
        min-height: 300px;
    }

    /* row-1 still 380px, gap now 12px â†’ mid of gap = 386px */
    .homeCap__logoCircle {
        width: 168px;
        height: 168px;
        top: 406px;
        left: calc(50% + 30px);
    }

    .homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo {
        transform: scale(1.08);
    }

    .homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo .brandLogoWordmark {
        max-width: 178px;
    }

    .homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo .brandLogoWordmark__primary,
    .homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo .brandLogoWordmark__primInner {
        font-size: 30px !important;
    }

    .homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo .brandLogoWordmark__secondary {
        font-size: 10px !important;
        letter-spacing: 5px !important;
    }

    #homeResultsSec .homeResults__inner {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
        gap: 0;
    }

    #homeResultsSec .homeResults__statNumber {
        font-size: 38px;
    }
}

/* â€” Tablet (â‰¤992px) â€” */
@media (max-width: 992px) {

    body.site-body--home #homeHeroSec,
    body.site-body--inner #homeHeroSec.homeHero--figma {
        margin-top: -60px;
        padding: 208px 20px 80px;
        min-height: auto;
    }

    .homeHero__headingBold {
        font-size: 52px;
    }

    #homeHeroSec.homeHero--figma .homeHero__headingLine1,
    #homeHeroSec.homeHero--figma .homeHero__headingLine1Row {
        font-size: 22px;
    }

    #homeHeroSec.homeHero--figma .homeHero__headingLine2 {
        font-size: 52px;
    }

    .homeHero__headingSub {
        font-size: 15px;
        letter-spacing: 1px;
    }

    #homeHeroSec.homeHero--figma .homeHero__desc {
        font-size: 19px;
        max-width: 640px;
        line-height: 1.5;
    }

    #homeHeroSec.homeHero--figma .homeHero__btn--outline {
        min-height: 52px;
        font-size: 14px;
        padding: 14px 20px 14px 24px;
    }

    #homeHeroSec.homeHero--figma .homeHero__btn--outline .homeHero__btnIcon {
        width: 36px;
        height: 36px;
    }

    .homeHero__visualRow {
        gap: 12px;
    }

    .homeHero__visualThumb {
        aspect-ratio: 10 / 13;
    }

    .homeHero__orb--1 {
        width: 120px;
        height: 120px;
        top: 130px;
        right: 8px;
    }

    .homeHero__orb--2 {
        width: 100px;
        height: 100px;
        top: 190px;
        left: 8px;
    }

    .homeHero__orb--3 {
        width: 200px;
        height: 200px;
        top: -100px;
        left: -40px;
    }

    .featureBanner__imageWrap {
        border-radius: 18px;
    }

    #homeResultsSec .homeResults__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #homeResultsSec .homeResults__stats {
        max-width: 360px;
        padding-top: 0;
        margin-inline: auto;
    }

    #homeResultsSec {
        margin-top: 0;
        padding: 60px 20px;
    }

    #homeResultsSec .homeResults__content {
        padding-top: 0;
        padding-right: 0;
    }

    body.site-body--home #homeResultsSec .homeResults__content {
        padding-top: 0;
    }

    #homeResultsSec .homeResults__statsPanel {
        border-radius: 18px;
    }

    #homeResultsSec .homeResults__staffCard {
        grid-template-columns: minmax(200px, 240px) 1fr;
    }

    #homeResultsSec .homeResults__staffCard--soloImage {
        grid-template-columns: minmax(120px, 160px) 1fr;
    }

    .homeTrusted__logosRow {
        grid-template-columns: repeat(3, 1fr);
    }

    .homeTrusted__logosRow .homeTrusted__logoBox:nth-child(3) {
        border-right: none;
    }

    .homeCap__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 300px 340px 260px 260px;
    }

    .homeCap__card--cloud {
        grid-column: 1;
        grid-row: 1;
    }

    .homeCap__card--center {
        grid-column: 2;
        grid-row: 1;
    }

    .homeCap__card--staff {
        grid-column: 1;
        grid-row: 2;
    }

    .homeCap__card--software {
        grid-column: 2;
        grid-row: 2;
    }

    .homeCap__card--ai {
        grid-column: 1;
        grid-row: 3;
    }

    .homeCap__card--platforms {
        grid-column: 2;
        grid-row: 3;
    }

    .homeCap__card--marketing {
        grid-column: 1 / 3;
        grid-row: 4;
    }

    .homeCap__card--center {
        padding: 36px 28px;
    }

    /*
     * 2-col grid, row-1 = 300px, gap = 12px.
     * Center card is col-2 â†’ left: 75% (center of right col in 2-col grid).
     * top: mid-gap = 300 + 6 = 306px.
     */
    .homeCap__logoCircle {
        width: 132px;
        height: 132px;
        top: 306px;
        left: calc(75% + 22px);
    }

    .homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo {
        transform: scale(1);
    }

    .homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo .brandLogoWordmark {
        max-width: 144px;
    }

    .homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo .brandLogoWordmark__primary,
    .homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo .brandLogoWordmark__primInner {
        font-size: 23px !important;
    }

    .homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo .brandLogoWordmark__secondary {
        font-size: 8.5px !important;
        letter-spacing: 4px !important;
        margin: 7px 0 0 0 !important;
        padding-left: 4px !important;
    }
}

/* — Mobile (≤768px) — */
@media (max-width: 768px) {

    body.site-body--home #homeHeroSec,
    body.site-body--inner #homeHeroSec.homeHero--figma {
        margin-top: -60px;
        padding: 180px 16px 28px;
    }

    .homeHero__headingBold {
        font-size: 40px;
    }

    #homeHeroSec.homeHero--figma .homeHero__headingLine1,
    #homeHeroSec.homeHero--figma .homeHero__headingLine1Row {
        font-size: 18px;
    }

    #homeHeroSec.homeHero--figma .homeHero__headingLine2 {
        font-size: 34px;
    }

    #homeHeroSec.homeHero--figma .homeHero__desc {
        font-size: 17px;
        margin: 16px auto 28px;
        max-width: 90%;
    }

    #homeHeroSec.homeHero--figma .homeHero__btn--outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        min-height: 52px;
        font-size: 14px;
        padding: 14px 22px;
    }

    .homeHero__heroLabel {
        margin-bottom: 12px;
    }

    .homeHero__headingSub {
        font-size: 13px;
    }

    .homeHero__visualRow {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .homeHero__visualThumb {
        aspect-ratio: 16 / 10;
        border-radius: 16px;
    }

    .homeHero__orb--1 {
        width: 90px;
        height: 90px;
        top: 120px;
        right: 8px;
    }

    .homeHero__orb--2 {
        width: 75px;
        height: 75px;
        top: 170px;
        left: 8px;
    }

    .homeHero__orb--3 {
        width: 150px;
        height: 150px;
        top: -75px;
        left: -28px;
    }

    .homeHero__desc {
        font-size: 15px;
    }

    .homeHero__desc br {
        display: none;
    }

    .homeHero__actions {
        flex-direction: column;
        gap: 12px;
    }

    .homeHero__btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    #homeResultsSec {
        padding: 0 16px 60px;
        margin-top: 0;
    }

    #homeResultsSec .homeResults__content {
        padding-top: 0;
        padding-right: 0;
    }

    body.site-body--home #homeResultsSec .homeResults__content {
        padding-top: 0;
    }

    #homeResultsSec .homeResults__stats {
        padding-top: 0;
    }

    #homeResultsSec .homeResults__staffCard {
        grid-template-columns: 1fr;
        border-radius: 14px 0 14px 0;
    }

    #homeResultsSec .homeResults__staffCardImg {
        min-height: auto;
        padding: 20px 18px 16px;
        justify-content: center;
    }

    #homeResultsSec .homeResults__staffCardImg::before {
        width: min(200px, 78vw);
        left: 50%;
        transform: translate(-62%, -50%);
    }

    #homeResultsSec .homeResults__staffCardImgInner {
        margin-left: 0;
        max-width: 200px;
        width: min(200px, 70vw);
    }

    #homeResultsSec .homeResults__staffCardMini {
        right: max(14px, 5vw);
        bottom: 18px;
        width: clamp(64px, 22vw, 88px);
    }

    #homeResultsSec .homeResults__staffCardText {
        padding: 18px 18px 20px 18px;
    }

    #homeResultsSec .homeResults__staffCardText p {
        font-size: 14px;
        line-height: 1.55;
    }

    #homeResultsSec .homeResults__staffCard--soloImage .homeResults__staffCardImg::before {
        transform: translate(-50%, -50%);
        left: 50%;
    }

    #homeResultsSec .homeResults__staffCardMini--solo {
        right: auto;
        bottom: auto;
        width: clamp(72px, 28vw, 100px);
    }

    #homeResultsSec .homeResults__desc br {
        display: none;
    }

    #homeTrustedSec {
        padding: 68px 16px 34px;
    }

    #homeTrustedSec .homeTrusted__head {
        text-align: center;
        max-width: min(340px, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    #homeTrustedSec .homeTrusted__preHeading {
        font-size: clamp(14px, 3.4vw, 18px);
        letter-spacing: 0.06em;
        line-height: 1.28;
        margin-bottom: 10px;
        text-wrap: balance;
    }

    #homeTrustedSec .homeTrusted__heading {
        font-size: clamp(24px, 7vw, 34px);
        line-height: 1.12;
        letter-spacing: -0.02em;
        text-wrap: balance;
    }

    #homeTrustedSec .homeTrusted__desc {
        text-align: center;
        font-size: clamp(13px, 3.4vw, 15px);
        line-height: 1.6;
        max-width: min(320px, 100%);
        margin-left: auto;
        margin-right: auto;
        margin-top: 14px;
        text-wrap: pretty;
    }

    .homeTrusted__logosRow {
        grid-template-columns: repeat(2, 1fr);
    }

    .homeTrusted__logosRow .homeTrusted__logoBox:nth-child(2) {
        border-right: none;
    }

    .homeTrusted__logosRow .homeTrusted__logoBox:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.07);
    }

    .homeTrusted__logoBox {
        padding: 20px 12px;
        min-height: 64px;
    }

    .homeTrusted__logoBox img {
        max-width: min(120px, 42vw);
        max-height: 40px;
    }

    #homeFaqContactSec .homeFaqContact__badge {
        font-size: clamp(18px, 5vw, 22px);
        letter-spacing: 0.1em;
    }

    #homeCapabilitiesSec {
        padding: 36px 16px 64px;
    }

    .homeAdStripSec {
        padding: 16px 16px 24px;
    }

    .homeCap__grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-left: 6px;
        padding-right: 6px;
    }

    .homeCap__card--cloud {
        order: 1;
        height: 240px;
    }

    .homeCap__card--center {
        order: 2;
        height: 220px;
        padding: 28px 20px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        justify-self: stretch;
    }

    .homeCap__card--center::after {
        display: none;
    }

    .homeCap__logoCircle {
        order: 3;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: -25px auto -25px;
        width: 144px;
        height: 144px;
    }

    .homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo {
        transform: scale(1);
    }

    .homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo .brandLogoWordmark {
        max-width: 120px;
    }

    .homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo .brandLogoWordmark__primary,
    .homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo .brandLogoWordmark__primInner {
        font-size: 26px !important;
    }

    .homeCap__logoCircle .homeCap__brandLogo.mainNavbarLogo .brandLogoWordmark__secondary {
        font-size: 9px !important;
        letter-spacing: 4.5px !important;
        margin: 4px 0 0 0 !important;
        padding-left: 5px !important;
    }

    .homeCap__card--staff {
        order: 4;
        height: 260px;
    }

    .homeCap__card--software {
        order: 5;
        min-height: 280px;
        height: auto;
    }

    .homeCap__card--ai {
        order: 6;
        height: 220px;
    }

    .homeCap__card--platforms {
        order: 7;
        height: 220px;
    }

    .homeCap__card--marketing {
        order: 8;
        height: 220px;
    }

    .homeCap__viewAllBtn {
        justify-content: center;
        gap: 10px;
        padding: 11px 14px 11px 18px;
        font-size: 13px;
        line-height: 1.15;
        min-height: 42px;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .homeCap__viewAllBtnIcon {
        position: static;
        transform: none;
        width: 30px;
        height: 30px;
    }

    .homeCap__viewAllBtnIcon svg {
        width: 14px;
        height: 14px;
    }

    #siteMain .homeCap__centerText {
        font-size: clamp(18px, 4.5vw, 22px) !important;
    }
}

/* â€” Small Mobile (â‰¤480px) â€” */
@media (max-width: 480px) {

    body.site-body--home #homeHeroSec,
    body.site-body--inner #homeHeroSec.homeHero--figma {
        margin-top: -60px;
        padding: 152px 14px 48px;
    }

    .homeHero__headingBold {
        font-size: 32px;
    }

    #homeHeroSec.homeHero--figma .homeHero__headingLine1,
    #homeHeroSec.homeHero--figma .homeHero__headingLine1Row {
        font-size: 16px;
    }

    #homeHeroSec.homeHero--figma .homeHero__headingLine2 {
        font-size: 28px;
    }

    #homeHeroSec.homeHero--figma .homeHero__desc {
        font-size: 15px;
    }

    #homeHeroSec.homeHero--figma .homeHero__btn--outline {
        min-height: 50px;
        font-size: 13px;
        padding: 12px 18px;
    }

    #homeHeroSec.homeHero--figma .homeHero__btn--outline .homeHero__btnIcon {
        width: 32px;
        height: 32px;
    }

    .homeHero__headingSub {
        font-size: 12px;
        letter-spacing: 0.6px;
    }

    .homeHero__visualThumb {
        aspect-ratio: 16 / 10;
        border-radius: 14px;
    }

    .homeHero__btn {
        padding: 11px 18px;
        font-size: 13px;
        gap: 10px;
    }

    .homeHero__btnIcon {
        width: 26px;
        height: 26px;
    }

    /* Smaller orbs at very small screens */
    .homeHero__orb--1 {
        width: 70px;
        height: 70px;
        top: 125px;
        right: 6px;
    }

    .homeHero__orb--2 {
        width: 58px;
        height: 58px;
        top: 175px;
        left: 6px;
    }

    .homeHero__orb--3 {
        width: 110px;
        height: 110px;
        top: -55px;
        left: -20px;
    }

    #homeResultsSec .homeResults__statsPanel {
        padding: 24px 20px;
    }

    #homeResultsSec .homeResults__statNumber {
        font-size: 32px;
    }

    #homeTrustedSec .homeTrusted__preHeading {
        font-size: 14px;
        letter-spacing: 0.05em;
    }

    #homeTrustedSec .homeTrusted__heading {
        font-size: clamp(22px, 7.2vw, 30px);
    }

    #homeTrustedSec .homeTrusted__desc {
        font-size: 13px;
        line-height: 1.58;
    }

    .homeCap__viewAllBtn {
        font-size: 12px;
        padding: 10px 12px 10px 15px;
    }

    .homeCap__viewAllBtnIcon {
        width: 28px;
        height: 28px;
    }

    #homeFaqContactSec .homeFaqContact__badge {
        font-size: 18px;
        letter-spacing: 0.08em;
    }

    #siteMain .homeCap__cardTitle {
        font-size: clamp(18px, 4.2vw, 22px) !important;
    }

    #siteMain .homeCap__cardDesc {
        font-size: clamp(15px, 3.6vw, 17px) !important;
    }
}

@media (max-width: 768px) {

    /* Keep all 3 banner captions visible on narrow screens. */
    #homeFeatureBanner {
        padding-top: 0;
        margin-top: -2px;
    }

    #homeFeatureBanner .featureBanner__inner {
        margin-top: 0;
    }

    #homeFeatureBanner .featureBanner__imageWrap {
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 12px;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
    }

    #homeFeatureBanner .featureBanner__gridOverlay {
        grid-template-columns: repeat(3, 1fr);
    }

    #homeFeatureBanner .featureBanner__card {
        padding: 10px 8px;
    }

    #homeFeatureBanner .featureBanner__card p {
        font-size: 10px;
        line-height: 1.2;
    }

    #homeFeatureBanner .featureBanner__card p strong {
        font-size: 13px;
        line-height: 1.15;
    }

    #homeFeatureBanner .featureBanner__card:nth-child(3) p {
        margin-left: 0;
    }
}

/* ================================================================
   9. EXISTING PARTIAL STYLES
   (Blog Cards, CTA, FAQ, Contact / Quote)
   ================================================================ */

/* â€” Blog Cards â€” */
#homeBlogSec {
    padding: 96px 20px;
    background: transparent;
}

.homeBlogSecInnerHead {
    text-align: center;
    margin-bottom: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.homeBlogSecInnerHead h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.homeBlogSecInnerHead h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 44px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.15;
}

.homeBlogSecInnerHead p {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #a7adbe;
    line-height: 1.6;
}

.homeBlogSecInner {
    max-width: 1200px;
    margin: 0 auto;
}

.homeBlogSecInnerBoxRow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.homeBlogSecInnerBox {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.homeBlogSecInnerBox:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.homeBlogSecInnerBoxImg {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1f3a, #0d1025);
}

.homeBlogSecInnerBoxImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.homeBlogSecInnerBox:hover .homeBlogSecInnerBoxImg img {
    transform: scale(1.04);
}

.homeBlogSecInnerBoxContent {
    padding: 22px;
}

.homeBlogSecInnerBoxMeta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.homeBlogSecInnerBoxMetaCategory {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #F3124E;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.homeBlogSecInnerBoxMeta .iconify {
    font-size: 4px;
    color: #a7adbe;
}

.homeBlogSecInnerBoxMetaDate {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #a7adbe;
}

.homeBlogSecInnerBoxContent h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 14px;
    line-height: 1.38;
}

.homeBlogSecInnerBoxReadMoreBtn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #F3124E;
    text-decoration: none !important;
    transition: gap 0.3s ease;
}

.homeBlogSecInnerBoxReadMoreBtn:hover {
    gap: 10px;
    color: #F3124E;
}

.homeBlogSecInnerBoxReadMoreBtn .iconify {
    font-size: 18px;
}

.homeBlogSecInnerActionBox {
    text-align: center;
    margin-top: 40px;
}

.homeBlogSecInnerActionBoxViewAllBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 26px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.homeBlogSecInnerActionBoxViewAllBtn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.homeBlogSecInnerActionBoxViewAllBtn .iconify {
    font-size: 16px;
}

/* â€” CTA Section â€” */
#homeCtaSec {
    padding: 40px 20px 96px;
    background: transparent;
}

.homeCtaSecInner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 56px;
    border-radius: 22px;
}

.homeCtaSecInnerBox h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 22px;
    line-height: 1.15;
}

.homeCtaSecInnerActionBtns {
    margin-top: 22px;
}

/* â€” Quote / Contact Form â€” */
#homeQuoteSec {
    padding: 96px 20px;
    background: transparent;
}

.homeQuoteSecInner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.homeQuoteSecInnerBox {
    position: relative;
}

.homeQuoteSecInnerBoxContent {
    margin-bottom: 36px;
}

.homeQuoteSecReviewStars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.homeQuoteSecReviewStars .iconify {
    font-size: 20px;
    color: #f5c518;
}

.homeQuoteSecInnerBoxContent>h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: capitalize;
    line-height: 1.2;
}

.homeQuoteSecInnerBoxContent>p {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #a7adbe;
    line-height: 1.6;
    margin-bottom: 22px;
}

.homeQuoteSecInnerBoxChecklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.homeQuoteSecInnerBoxChecklistItem {
    display: flex;
    align-items: center;
    gap: 12px;
}

.homeQuoteSecInnerBoxChecklistItemIcon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(243, 18, 78, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.homeQuoteSecInnerBoxChecklistItemIcon .iconify {
    font-size: 13px;
    color: #F3124E;
}

.homeQuoteSecInnerBoxChecklistItem h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.homeQuoteSecInnerSliderBox {
    margin-top: 36px;
    overflow: hidden;
    border-radius: 16px;
}

.homeQuoteSecSliderInner {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 22px;
}

.homeQuoteSecSliderReviewStars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.homeQuoteSecSliderReviewStars .iconify {
    font-size: 15px;
    color: #f5c518;
}

.homeQuoteSecSliderComment {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #cbd7d7;
    line-height: 1.6;
    margin-bottom: 18px;
    font-style: italic;
}

.homeQuoteSecSliderMeta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.homeQuoteSecSliderMeta img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    background: #1a1f3a;
}

.homeQuoteSecSliderMetaInner h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.homeQuoteSecSliderMetaInner p {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #a7adbe;
    margin: 0;
}

.quoteFormModern {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    padding: 36px;
}

.quoteFormModern .form-control-standard {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 11px 14px;
    color: #ffffff;
    font-size: 14px;
}

.quoteFormModern .form-control-standard:focus {
    border-color: #F3124E;
    box-shadow: 0 0 0 2px rgba(243, 18, 78, 0.08);
}

.quoteFormModern textarea.form-control-standard {
    resize: vertical;
    min-height: 96px;
}

/* ================================================================
   INDUSTRIES WE SERVE
   ================================================================ */
#homeIndustriesSec {
    padding: 100px clamp(16px, 4vw, 42px) 80px;
    background: #050810;
}

.homeIndustries__inner {
    max-width: min(1680px, 100%);
    margin: 0 auto;
}

/* â”€â”€ Head â”€â”€ */
.homeIndustries__head {
    text-align: center;
    margin-bottom: 64px;
}

.homeIndustries__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 7px 16px 7px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 24px;
}

.homeIndustries__badgeIcon {
    width: 24px;
    height: 24px;
    background: #F3124E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.homeIndustries__preHeading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(30px, 4.6vw, 50px);
    font-weight: 800;
    color: #F3124E;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 2px;
}

.homeIndustries__heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    color: #ffffff;
    margin: 0.08em 0 18px;
    line-height: 1.05;
    letter-spacing: 1px;
}

.homeIndustries__desc {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(19px, 1.45vw, 23px);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.88);
    max-width: min(44rem, 92vw);
    margin: clamp(6px, 0.8vw, 12px) auto 0;
    text-align: justify;
    text-justify: inter-word;
    text-align-last: center;
}

/* â”€â”€ Two scrolling rows (4 + 4 cards), same infinite pattern as .homeMarquee__track â”€â”€ */
.homeIndustries__marqueeRows {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    margin-bottom: 52px;
}

.homeIndustries__marqueeWrap {
    overflow: hidden;
    width: 100%;
    padding: 4px 0;
}

.homeIndustries__marqueeTrack {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: marqueeScroll 56s linear infinite;
}

.homeIndustries__marqueeTrack--reverse {
    animation-duration: 64s;
    animation-direction: reverse;
}

.homeIndustries__marqueeWrap:hover .homeIndustries__marqueeTrack {
    animation-play-state: paused;
}

.homeIndustries__marqueeChunk {
    display: flex;
    flex-shrink: 0;
    align-items: stretch;
    gap: 14px;
    padding-right: 14px;
    box-sizing: border-box;
}

.homeIndustries__card {
    background: #1a1e3c;
    border-radius: 24px;
    padding: 36px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.25s ease, border-color 0.25s ease;
    min-height: 170px;
    flex: 0 0 clamp(240px, 22vw, 300px);
    width: clamp(240px, 22vw, 300px);
    max-width: 85vw;
    box-sizing: border-box;
}

.homeIndustries__card:hover {
    background: #21264a;
    border-color: rgba(243, 18, 78, 0.3);
}

.homeIndustries__cardIcon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.homeIndustries__cardLabel {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

/* â”€â”€ CTA button â”€â”€ */
.homeIndustries__cta {
    text-align: center;
}

.homeIndustries__viewAllBtn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #F3124E;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.homeIndustries__viewAllBtn:hover {
    background: #d10f42;
    color: #fff;
}

.homeIndustries__viewAllBtnIcon {
    width: 36px;
    height: 36px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ================================================================
   CASE STUDIES
   ================================================================ */
#homeCaseStudiesSec {
    background: transparent;
}

.homeCaseStudies__inner {
    max-width: none;
    width: 100%;
    margin: 0 auto;
}

/* â”€â”€ Head â”€â”€ */
.homeCaseStudies__head {
    text-align: center;
    margin-bottom: 60px;
}

.homeCaseStudies__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 7px 16px 7px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 24px;
}

.homeCaseStudies__badgeIcon {
    width: 24px;
    height: 24px;
    background: #F3124E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.homeCaseStudies__preHeading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 800;
    color: #F3124E;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1.1;
}

.homeCaseStudies__heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    color: #ffffff;
    margin: 0.1em 0 16px;
    line-height: 1.1;
}

.homeCaseStudies__desc {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(19px, 1.45vw, 23px);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.88);
    max-width: min(44rem, 92vw);
    margin: clamp(6px, 0.8vw, 12px) auto 0;
    text-align: justify;
    text-justify: inter-word;
    text-align-last: center;
}

/* Scroll reveal: JS adds .case-studies--animate then .case-studies-inview (no-JS: no hide) */
#homeCaseStudiesSec.case-studies--animate .homeCaseStudies__head,
#homeCaseStudiesSec.case-studies--animate .homeCaseStudies__timeline {
    opacity: 0;
    transform: translate3d(0, 52px, 0);
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

#homeCaseStudiesSec.case-studies--animate.case-studies-inview .homeCaseStudies__head,
#homeCaseStudiesSec.case-studies--animate.case-studies-inview .homeCaseStudies__timeline {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

#homeCaseStudiesSec.case-studies--animate.case-studies-inview .homeCaseStudies__head {
    transition-delay: 0.06s;
}

#homeCaseStudiesSec.case-studies--animate.case-studies-inview .homeCaseStudies__timeline {
    transition-delay: 0.16s;
}

@media (prefers-reduced-motion: reduce) {

    #homeCaseStudiesSec.case-studies--animate .homeCaseStudies__head,
    #homeCaseStudiesSec.case-studies--animate .homeCaseStudies__timeline {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        will-change: auto !important;
    }
}

/* Timeline — Figma: solid magenta frame, 2×2 dark cards, pink titles + white copy */
.homeCaseStudies__timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2.2vw, 24px);
    background: #f3124e;
    border-radius: clamp(18px, 2.2vw, 28px);
    padding: clamp(22px, 3.2vw, 36px);
    box-sizing: border-box;
    width: 100%;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 24px 60px rgba(0, 0, 0, 0.35);
}

.homeCaseStudies__timelineCard {
    background: #050814;
    border-radius: clamp(14px, 1.5vw, 20px);
    padding: clamp(26px, 3.2vw, 40px) clamp(22px, 2.8vw, 36px);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 0;
}

.homeCaseStudies__timelineTitle {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 2.8vw, 38px);
    font-weight: 800;
    color: #f3124e;
    margin: 0 0 clamp(12px, 1.5vw, 18px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-align: left;
}

.homeCaseStudies__timelineDesc {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    opacity: 0.95;
}

/* ================================================================
   WHY VIVACITY SOLUTIONS
   ================================================================ */
#homeWhySec {
    padding: clamp(104px, 11vw, 128px) 20px 96px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.homeWhy__inner {
    max-width: 1224px;
    margin: 0 auto;
}

/* â”€â”€ Head â”€â”€ */
.homeWhy__head {
    text-align: center;
    margin-bottom: clamp(52px, 6vw, 64px);
    max-width: min(44rem, 92vw);
    margin-left: auto;
    margin-right: auto;
}

.homeWhy__headingGroup {
    margin: 0 auto 14px;
}

.homeWhy__preHeading {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 800;
    color: #f3124e;
    margin: 0 0 -4px;
    line-height: 1;
    letter-spacing: -0.01em;
}

.homeWhy__heading {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 800;
    font-synthesis: none;
    color: #fdfcf7;
    margin: 0;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.homeWhy__desc {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(19px, 1.45vw, 23px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    line-height: 1.65;
    letter-spacing: 0.02em;
    max-width: min(44rem, 92vw);
    margin-left: auto;
    margin-right: auto;
}

/* —— 3×2 grid — Figma: middle column stepped down; icon overlaps card top —— */
.homeWhy__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(20px, 2.5vw, 32px);
    row-gap: clamp(36px, 4.5vw, 52px);
    align-items: start;
}

.homeWhy__grid .homeWhy__item:nth-child(3n + 2) {
    margin-top: clamp(40px, 5vw, 56px);
}

/* Globe image is the bottom layer; lighter overlays so the art stays visible (first layer = on top) */
.homeWhy__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 100%;
    min-height: 0;
    padding: 52px 26px 34px;
    border-radius: 28px;
    background-color: #07091e;
    background-image:
        linear-gradient(180deg,
            rgba(5, 7, 18, 0.78) 0%,
            rgba(5, 7, 18, 0.38) 38%,
            rgba(5, 7, 18, 0.15) 58%,
            rgba(5, 7, 18, 0.35) 100%),
        radial-gradient(ellipse 100% 52% at 50% 100%, rgba(76, 92, 220, 0.22) 0%, transparent 56%),
        radial-gradient(ellipse 72% 42% at 18% 88%, rgba(243, 18, 78, 0.1) 0%, transparent 54%),
        url('../images/home-why-card-bg.png');
    background-size: cover, 100% 100%, 100% 100%, cover;
    background-position: center top, center bottom, center bottom, center bottom;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 20px 50px rgba(0, 0, 0, 0.45);
    -webkit-backdrop-filter: blur(10px) saturate(125%);
    backdrop-filter: blur(10px) saturate(125%);
    overflow: visible;
    isolation: isolate;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.homeWhy__item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(ellipse 90% 48% at 50% 100%, rgba(120, 110, 255, 0.16) 0%, transparent 58%),
        radial-gradient(ellipse 55% 35% at 78% 88%, rgba(56, 189, 248, 0.08) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

.homeWhy__item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 24px 56px rgba(0, 0, 0, 0.5);
}

.homeWhy__iconWrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: -40px 0 18px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.homeWhy__circleRing {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
}

.homeWhy__circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f3124e;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.homeWhy__circleArrow {
    display: block;
    transform: translate(1px, 1px);
}

.homeWhy__item:hover .homeWhy__circle {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(243, 18, 78, 0.35), 0 10px 28px rgba(0, 0, 0, 0.42);
}

.homeWhy__itemTitle {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(19px, 1.55vw, 24px);
    font-weight: 700;
    color: #f3124e;
    margin: 0 0 12px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    text-align: center;
    align-self: stretch;
    width: 100%;
    max-width: none;
}

.homeWhy__itemDesc {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(15px, 1.25vw, 18px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 1;
    text-align: center;
    align-self: stretch;
    width: 100%;
    max-width: none;
}

/* —— Responsive: Industries / Case Studies / Why —— */
@media (max-width: 1200px) {
    .homeIndustries__marqueeChunk {
        gap: 12px;
        padding-right: 12px;
    }

    .homeWhy__grid {
        column-gap: 16px;
    }
}

@media (max-width: 1024px) {
    .homeWhy__grid .homeWhy__item:nth-child(3n + 2) {
        margin-top: 0;
    }
}

@media (max-width: 992px) {
    .homeCaseStudies__timeline {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .homeCaseStudies__timelineCard {
        padding: 28px 22px;
    }

    .homeWhy__grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 32px;
        column-gap: 20px;
    }
}

@media (max-width: 600px) {
    #homeIndustriesSec {
        padding: 40px 16px 44px;
    }

    #homeCaseStudiesSec,
    #homeWhySec {
        padding: 56px 16px 50px;
    }

    .homeIndustries__head {
        margin-bottom: 30px;
    }

    .homeIndustries__marqueeChunk {
        gap: 10px;
        padding-right: 10px;
    }

    .homeIndustries__card {
        flex-basis: 240px;
        width: 240px;
        padding: 28px 18px 22px;
        min-height: 140px;
    }

    .homeIndustries__cardLabel {
        font-size: 14px;
    }

    .homeCaseStudies__timeline {
        padding: 16px;
        gap: 12px;
        border-radius: 18px;
    }

    .homeCaseStudies__timelineCard {
        padding: 22px 18px;
    }

    .homeWhy__grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .homeWhy__circleRing {
        width: 92px;
        height: 92px;
    }

    .homeWhy__circle {
        width: 62px;
        height: 62px;
    }

    .homeWhy__iconWrap {
        margin-top: -36px;
    }
}

/* ================================================================
   HOW WE WORK — SVG hex diagram (vector, not raster screenshot)
   ================================================================ */
#homeHowWorkSec {
    padding: clamp(88px, 10vw, 120px) clamp(16px, 4vw, 24px) 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.homeHowWork__inner {
    max-width: min(960px, 100%);
    margin: 0 auto;
}

.homeHowWork__head {
    text-align: center;
    margin: 0 auto clamp(40px, 5vw, 56px);
    max-width: min(44rem, 92vw);
}

.homeHowWork__preHeading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(20px, 2.2vw, 27px);
    font-weight: 800;
    font-style: normal;
    text-transform: none;
    color: #f3124e;
    margin: 0 0 clamp(10px, 1.2vw, 14px);
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.homeHowWork__heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(34px, 4.8vw, 54px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 clamp(12px, 1.6vw, 18px);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.homeHowWork__desc {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(19px, 1.45vw, 23px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 auto;
    line-height: 1.65;
    letter-spacing: 0.02em;
    max-width: min(44rem, 92vw);
}

.homeHowWork__diagramWrap {
    width: 100%;
    max-width: min(960px, 100%);
    margin: 0 auto;
    padding: 20px 0 0;
    background: transparent;
    line-height: 0;
}

.homeHowWork__svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}


/* ================================================================
   CLIENT TESTIMONIALS — infinite horizontal marquee
   ================================================================ */
#homeTestimonialsSec {
    padding: 100px clamp(16px, 4vw, 42px) 80px;
    background: transparent;
}

.homeTestimonials__inner {
    max-width: min(1680px, 100%);
    margin: 0 auto;
}

.homeTestimonials__head {
    text-align: center;
    margin-bottom: 60px;
}

.homeTestimonials__headingGroup {
    margin: 0 auto 16px;
}

.homeTestimonials__preHeading {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 800;
    color: #F3124E;
    margin: 0 0 -4px;
    line-height: 1;
    letter-spacing: -0.01em;
}

.homeTestimonials__heading {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.homeTestimonials__desc {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(18px, 1.45vw, 22px);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 auto;
    max-width: min(44rem, 92vw);
}

/* Two scrolling rows (3 + 3 cards) — duplicate chunks + marqueeScroll */
.homeTestimonials__marqueeRows {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    margin-bottom: 52px;
}

.homeTestimonials__marqueeWrap {
    overflow: hidden;
    width: 100%;
    padding: 4px 0;
}

.homeTestimonials__marqueeTrack {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: marqueeScroll 70s linear infinite;
}

.homeTestimonials__marqueeTrack--reverse {
    animation-duration: 82s;
    animation-direction: reverse;
}

.homeTestimonials__marqueeWrap:hover .homeTestimonials__marqueeTrack {
    animation-play-state: paused;
}

.homeTestimonials__marqueeChunk {
    display: flex;
    flex-shrink: 0;
    align-items: stretch;
    gap: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

.homeTestimonials__card {
    background: #141830;
    border-radius: 20px;
    padding: 36px 26px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    flex: 0 0 clamp(300px, 28vw, 400px);
    width: clamp(300px, 28vw, 400px);
    max-width: min(400px, 92vw);
    box-sizing: border-box;
    border: 1px solid transparent;
}

.homeTestimonials__card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(243, 18, 78, 0.2);
}

/* Avatar with outer ring */
.homeTestimonials__avatarWrap {
    width: 78px;
    height: 78px;
}

.homeTestimonials__avatarRing {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 2.5px solid #F3124E;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.homeTestimonials__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(243, 18, 78, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.homeTestimonials__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Stars row */
.homeTestimonials__stars {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.homeTestimonials__stars svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.homeTestimonials__name {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(17px, 1.25vw, 20px);
    font-weight: 700;
    color: #F3124E;
    margin: 0;
    line-height: 1.3;
}

.homeTestimonials__quote {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(15px, 1.22vw, 18px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    line-height: 1.7;
}

/* CTA */
.homeTestimonials__cta {
    text-align: center;
}

.homeTestimonials__readMoreBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F3124E;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
}

.homeTestimonials__readMoreBtn:hover {
    background: #c50d3c;
    color: #fff;
    transform: translateY(-2px);
}

.homeTestimonials__readMoreIcon {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    justify-content: center;
    flex-shrink: 0;
}

/* ================================================================
   MEET OUR EXPERTS — team photo rows
   ================================================================ */
#homeExpertsSec {
    padding: 100px 20px 80px;
    background: transparent;
    overflow: visible;
}

.homeExperts__inner {
    max-width: 1160px;
    margin: 0 auto;
    overflow: visible;
}

.homeExperts__head {
    text-align: center;
    margin-bottom: 60px;
}

.homeExperts__headingGroup {
    margin: 0 auto 16px;
}

.homeExperts__preHeading {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 800;
    color: #F3124E;
    margin: 0 0 -4px;
    line-height: 1;
    letter-spacing: -0.01em;
}

.homeExperts__heading {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.homeExperts__desc {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(18px, 1.45vw, 22px);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 auto;
    max-width: min(44rem, 92vw);
}

/* Flattened grid for all experts */
.homeExperts__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(36px, 5vw, 56px);
    margin-bottom: 48px;
}

.homeExperts__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 80px;
    /* Room for overlapping avatar */
    width: 100%;
    max-width: 320px;

    /* Premium Glassmorphic Card */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 0 24px 32px;
    overflow: visible;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.05),
        0 24px 48px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.homeExperts__card:hover {
    z-index: 4;
    transform: translateY(-8px);
    border-color: rgba(243, 18, 78, 0.5);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.1),
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(243, 18, 78, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .homeExperts__card {
        transition: none;
    }

    .homeExperts__card:hover {
        transform: none;
    }
}

.homeExperts__photoWrap {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(243, 18, 78, 0.15) 0%, rgba(13, 7, 23, 1) 80%);
    margin: -80px auto 24px;
    position: relative;
    border: 6px solid #07091e;
    /* Creates a cut-out effect against the card */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
}

.homeExperts__card:hover .homeExperts__photoWrap {
    transform: scale(1.05);
    box-shadow: 0 16px 32px rgba(243, 18, 78, 0.25);
}

.homeExperts__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 1;
}

.homeExperts__photoPlaceholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homeExperts__info {
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.homeExperts__name {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(20px, 1.5vw, 24px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}

.homeExperts__role {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 600;
    color: #F3124E;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    line-height: 1.4;
}

/* ================================================================
   FAQS + CONTACT FORM — 2-column layout
   ================================================================ */
#homeFaqContactSec {
    padding: 100px 20px 100px;
    background: transparent;
}

.homeFaqContact__inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Centred heading */
.homeFaqContact__head {
    text-align: center;
    margin-bottom: 64px;
}

.homeFaqContact__badge {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(22px, 2.15vw, 30px);
    font-weight: 800;
    color: #F3124E;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-bottom: clamp(14px, 1.6vw, 20px);
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
}

.homeFaqContact__heading {
    font-family: 'Outfit', sans-serif;
    font-size: var(--viva-overview-heading-fs, clamp(44px, 5.2vw, 76px));
    font-weight: 800;
    color: #fff;
    margin: 0 0 clamp(14px, 1.8vw, 20px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.homeFaqContact__subDesc {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(20px, 1.5vw, 26px);
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
    line-height: 1.65;
    letter-spacing: 0.02em;
    max-width: min(48rem, 94vw);
}

/* 2-column body */
.homeFaqContact__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ── LEFT: Accordion ── */
.homeFaqContact__faqCol {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.homeFaqContact__accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.homeFaqContact__faqItem {
    background: #131629;
    border-radius: 12px;
    overflow: hidden;
}

.homeFaqContact__faqBtn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 24px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(17px, 1.32vw, 20px);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

/* Ensure FAQ controls remain hover/clickable above decorative layers on all pages */
#homeFaqContactSec .homeFaqContact__faqCol,
#homeFaqContactSec .homeFaqContact__accordion,
#homeFaqContactSec .homeFaqContact__faqItem,
#homeFaqContactSec .homeFaqContact__faqBtn {
    position: relative;
    z-index: 6;
    pointer-events: auto;
}

/* Home FAQ still uses Bootstrap collapse (button + .collapsed), not <details open> */
.homeFaqContact__faqBtn:not(.collapsed) {
    color: #F3124E;
}

.homeFaqContact__faqBtn:not(.collapsed) .homeFaqContact__faqArrow {
    color: #F3124E;
    transform: rotate(180deg);
}

.homeFaqContact__faqArrow {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.75);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.homeFaqContact__faqBody {
    padding: 0 24px 22px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(16px, 1.22vw, 19px);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.72;
}

/* ── RIGHT: Contact Form ── */
.homeFaqContact__formCol {
    background: #0e1228;
    border-radius: 20px;
    padding: 40px 36px;
}

.homeFaqContact__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.homeFaqContact__formRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.homeFaqContact__formGroup {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.homeFaqContact__formGroup label {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(16px, 1.18vw, 19px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.homeFaqContact__formGroup input,
.homeFaqContact__formGroup select,
.homeFaqContact__formGroup textarea {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(17px, 1.2vw, 19px);
    padding: 15px 18px;
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.homeFaqContact__formGroup input::placeholder,
.homeFaqContact__formGroup textarea::placeholder {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(16px, 1.12vw, 18px);
}

.homeFaqContact__formGroup input:focus,
.homeFaqContact__formGroup select:focus,
.homeFaqContact__formGroup textarea:focus {
    border-color: #F3124E;
}

.homeFaqContact__formGroup select option {
    background: #07091e;
    color: rgba(255, 255, 255, 0.8);
}

.homeFaqContact__formGroup textarea {
    resize: vertical;
    min-height: 100px;
}

.homeFaqContact__formCheck {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.homeFaqContact__formCheck input[type="checkbox"] {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #F3124E;
    flex-shrink: 0;
    cursor: pointer;
}

.homeFaqContact__formCheck label {
    flex: 1;
    min-width: 0;
    font-size: clamp(16px, 1.1vw, 18px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    margin: 0;
    text-align: left;
}

.homeFaqContact__submitBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #F3124E;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(17px, 1.18vw, 19px);
    font-weight: 600;
    padding: 17px 34px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
    width: 100%;
    margin-top: 4px;
}

.homeFaqContact__submitBtn:hover {
    background: #c50d3c;
    transform: translateY(-2px);
}

.homeFaqContact__submitIcon {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    justify-content: center;
    flex-shrink: 0;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
    .homeExperts__row--4 {
        grid-template-columns: repeat(4, 190px);
        gap: clamp(24px, 3.5vw, 40px);
    }

    .homeExperts__row--3 {
        grid-template-columns: repeat(3, 190px);
        gap: clamp(24px, 3.5vw, 40px);
    }

    .homeExperts__photoWrap {
        width: 190px;
        height: 230px;
    }
}

@media (max-width: 992px) {

    #homeHowWorkSec,
    #homeTestimonialsSec,
    #homeExpertsSec,
    #homeFaqContactSec {
        padding: 70px 20px 60px;
    }

    .homeTestimonials__marqueeChunk {
        gap: 18px;
        padding-right: 18px;
    }

    .homeExperts__row--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .homeExperts__row--3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .homeExperts__photoWrap {
        width: 100%;
        height: 220px;
    }

    .homeFaqContact__body {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .homeFaqContact__formCol {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .homeTestimonials__card {
        flex-basis: min(300px, 88vw);
        width: min(300px, 88vw);
    }

    .homeExperts__row--3,
    .homeExperts__row--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .homeExperts__row--4 .homeExperts__card:last-child {
        grid-column: 1 / -1;
        max-width: 220px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {

    #homeHowWorkSec,
    #homeTestimonialsSec,
    #homeExpertsSec,
    #homeFaqContactSec {
        padding: 60px 16px 50px;
    }

    .homeExperts__row--3,
    .homeExperts__row--4 {
        grid-template-columns: 1fr 1fr;
    }

    .homeFaqContact__formRow {
        grid-template-columns: 1fr;
    }

    .homeHowWork__diagramWrap {
        overflow: visible;
        padding: 0;
        max-width: 100%;
    }

    .homeHowWork__svg {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

/* — Responsive: Partials (kept) — */
@media (max-width: 992px) {
    .homeBlogSecInnerBoxRow {
        grid-template-columns: repeat(2, 1fr);
    }

    .homeCtaSecInner {
        grid-template-columns: 1fr;
        padding: 36px 28px;
    }

    .homeQuoteSecInner {
        grid-template-columns: 1fr;
    }

    .homeBlogSecInnerHead h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .homeBlogSecInnerBoxRow {
        grid-template-columns: 1fr;
    }

    #homeBlogSec,
    #homeQuoteSec {
        padding: 56px 16px;
    }

    .homeCtaSecInner {
        padding: 28px 18px;
    }

    .quoteFormModern {
        padding: 22px;
    }

    .homeCtaSecInnerBox h2 {
        font-size: 26px;
    }

    .homeQuoteSecInnerBoxContent>h4 {
        font-size: 26px;
    }
}

/* ── Ensure all page sections render ABOVE the particle canvas (z-index:1) ── */
#homeHeroSec,
#homeFeatureBanner,
#homeResultsSec,
#homeMarquee,
#homeMarquee2,
#homeMarquee3,
#homeTrustedSec,
#homeCapabilitiesSec,
#homeAdStripSec,
#homeIndustriesSec,
#homeCaseStudiesSec,
#homeWhySec,
#homeHowWorkSec,
#homeTestimonialsSec,
#homeExpertsSec,
#homeFaqContactSec {
    position: relative;
    z-index: 2;
}

/* Home mobile alignment pass:
   keep consistent horizontal gutters and avoid double side-padding stacks. */
@media (max-width: 768px) {
    body.site-body--home #siteMain.site-main {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    body.site-body--home #homeHeroSec,
    body.site-body--home #homeFeatureBanner,
    body.site-body--home #homeResultsSec,
    body.site-body--home #homeTrustedSec,
    body.site-body--home #homeCapabilitiesSec,
    body.site-body--home .homeAdStripSec,
    body.site-body--home #homeIndustriesSec,
    body.site-body--home #homeCaseStudiesSec,
    body.site-body--home #homeWhySec,
    body.site-body--home #homeHowWorkSec,
    body.site-body--home #homeTestimonialsSec,
    body.site-body--home #homeExpertsSec,
    body.site-body--home #homeFaqContactSec {
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box;
    }

    body.site-body--home #homeHeroSec .homeHero__inner,
    body.site-body--home #homeResultsSec .homeResults__inner,
    body.site-body--home #homeTrustedSec .homeTrusted__inner,
    body.site-body--home #homeCapabilitiesSec .homeCap__inner,
    body.site-body--home #homeIndustriesSec .homeIndustries__inner,
    body.site-body--home #homeHowWorkSec .homeHowWork__inner,
    body.site-body--home #homeTestimonialsSec .homeTestimonials__inner,
    body.site-body--home #homeExpertsSec .homeExperts__inner,
    body.site-body--home #homeFaqContactSec .homeFaqContact__inner {
        margin-left: auto;
        margin-right: auto;
    }

    body.site-body--home #homeFaqContactSec .homeFaqContact__faqBtn {
        text-align: center !important;
        justify-content: center;
    }

    body.site-body--home #homeFaqContactSec .homeFaqContact__faqBtn span:first-child {
        text-align: center;
    }

    body.site-body--home #homeFaqContactSec .homeFaqContact__faqBody {
        text-align: center;
    }

    body.site-body--home #homeHowWorkSec .homeHowWork__desc {
        text-align: justify;
        text-justify: inter-word;
        text-align-last: center;
        max-width: min(320px, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    body.site-body--home #homeCapabilitiesSec .homeCap__cardContent {
        align-items: center;
        text-align: center;
    }

    body.site-body--home #homeCapabilitiesSec .homeCap__cardTitle,
    body.site-body--home #homeCapabilitiesSec .homeCap__cardDesc {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
        max-width: min(260px, 100%);
    }

    body.site-body--home #homeWhySec .homeWhy__item {
        align-items: center;
        text-align: center;
        padding: 34px 18px 22px;
    }

    body.site-body--home #homeWhySec .homeWhy__itemTitle {
        text-align: center !important;
        align-self: center;
        width: 100%;
        max-width: min(260px, 100%);
        display: block;
        margin-top: 0;
        margin-bottom: 8px;
        margin-left: auto;
        margin-right: auto;
    }

    body.site-body--home #homeWhySec .homeWhy__itemDesc {
        text-align: center !important;
        text-justify: auto;
        text-align-last: center;
        align-self: center;
        width: 100%;
        max-width: min(260px, 100%);
        margin-left: auto;
        margin-right: auto;
        line-height: 1.42;
        margin-top: 0;
    }

    body.site-body--home #homeWhySec .homeWhy__iconWrap {
        margin: -16px 0 10px;
    }
}