/* ==================================================================
   GKS LOGISTICS — V3 Homepage redesign (Sprint 9)

   Two new homepage blocks:
     1) Services bento-grid (.home-services)
     2) Process — 5-step horizontal flow (.home-process)

   Scoped under `body.v3` to avoid collisions with legacy styles
   (which we keep loading for unrefactored sections during the
   incremental rollout).
   ================================================================== */


/* ============================================================
   1) SERVICES BENTO-GRID
   ============================================================ */

body.v3 section.home-services {
  position: relative;
  padding: clamp(4rem, 9vh, 7rem) 0 clamp(4rem, 9vh, 6rem);
  background: var(--gks-white);
  overflow: hidden;
  isolation: isolate;
}

/* Soft brand wash behind the grid */
body.v3 section.home-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 92% 8%, rgba(230, 57, 70, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 5% 95%, rgba(10, 61, 98, 0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

body.v3 .home-services__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vh, 4rem);
}

body.v3 .home-services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(10, 61, 98, 0.08);
  border: 1px solid rgba(10, 61, 98, 0.18);
  color: var(--gks-blue);
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.v3 .home-services__title {
  margin: 1rem 0 0.85rem;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--gks-blue);
}
body.v3 .home-services__title .text-red { color: var(--gks-red); }

body.v3 .home-services__lead {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted, #4a5568);
  margin: 0;
}

/* ---- The grid itself: 6 columns, 2 rows ---- */
body.v3 .home-services__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 1.25rem;
}
@media (max-width: 980px) {
  body.v3 .home-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  body.v3 .home-services__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Individual cards ---- */
body.v3 .home-service {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--gks-white);
  border: 1px solid rgba(10, 61, 98, 0.08);
  box-shadow: 0 4px 14px rgba(10, 30, 60, 0.04);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--dur-base) var(--ease-premium),
    box-shadow var(--dur-base) var(--ease-premium),
    border-color var(--dur-base) var(--ease-premium);
}
body.v3 .home-service::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(10, 61, 98, 0.03) 0%, rgba(230, 57, 70, 0.05) 100%);
  transition: opacity var(--dur-base) var(--ease-premium);
  pointer-events: none;
  z-index: -1;
}
body.v3 .home-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(10, 30, 60, 0.18);
  border-color: rgba(10, 61, 98, 0.18);
}
body.v3 .home-service:hover::before { opacity: 1; }

/* Bento span rules — Air, Sea, Land are the feature trio (2 cols each) */
body.v3 .home-service--feature { grid-column: span 2; }
body.v3 .home-service--small   { grid-column: span 2; }

@media (max-width: 980px) {
  body.v3 .home-service--feature,
  body.v3 .home-service--small { grid-column: span 1; }
}

body.v3 .home-service__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gks-blue) 0%, #1B5C8A 100%);
  color: var(--gks-white);
  font-size: 1.4rem;
  box-shadow: 0 8px 18px -6px rgba(10, 61, 98, 0.45);
  transition: transform var(--dur-base) var(--ease-premium);
}
body.v3 .home-service:hover .home-service__icon {
  transform: scale(1.06) rotate(-3deg);
}
/* Feature cards get a bigger icon in red accent */
body.v3 .home-service--feature .home-service__icon {
  width: 60px;
  height: 60px;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--gks-red) 0%, #C72333 100%);
  box-shadow: 0 10px 22px -6px rgba(230, 57, 70, 0.42);
}

body.v3 .home-service__title {
  margin: 0;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--gks-blue);
}
body.v3 .home-service--feature .home-service__title {
  font-size: 1.45rem;
}

body.v3 .home-service__desc {
  margin: 0;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted, #4a5568);
  flex: 1;
}

body.v3 .home-service__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gks-red);
  transition: gap var(--dur-fast) var(--ease-premium);
}
body.v3 .home-service__cta i {
  transition: transform var(--dur-fast) var(--ease-premium);
}
body.v3 .home-service:hover .home-service__cta { gap: 0.75rem; }
body.v3 .home-service:hover .home-service__cta i {
  transform: translateX(4px);
}

/* ---- Photo-backed feature cards ---- */
/* Photo cards: image on top, dark content body at bottom */
body.v3 .home-service--photo {
  padding: 0;
  overflow: hidden;
  background: var(--gks-blue);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px -8px rgba(6, 26, 50, 0.35);
}
body.v3 .home-service--photo::before { display: none; }
body.v3 .home-service--photo:hover {
  box-shadow: 0 28px 56px -16px rgba(6, 26, 50, 0.5);
}

/* The photo area — takes up top portion */
body.v3 .home-service__photo {
  flex: 1;
  min-height: 170px;
  overflow: hidden;
  position: relative;
}
body.v3 .home-service__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
body.v3 .home-service--photo:hover .home-service__photo img {
  transform: scale(1.06);
}

/* Dark glass content body */
body.v3 .home-service__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.25rem 1.35rem 1.4rem;
  background: linear-gradient(135deg, #062A45 0%, #0A3D62 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
body.v3 .home-service--photo .home-service__icon {
  width: 36px;
  height: 36px;
  font-size: 1rem;
  margin-bottom: 0.1rem;
}
body.v3 .home-service--photo .home-service__title {
  color: var(--gks-white, #fff);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  margin: 0;
}
body.v3 .home-service--photo .home-service__cta {
  color: #FFB3BB;
  margin-top: 0.25rem;
}
body.v3 .home-service--photo:hover .home-service__cta {
  color: #ffd7dc;
}

/* Route caption — inline inside body */
body.v3 .home-service__route {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
}

/* ---- Footer of the section: explore-all link ---- */
body.v3 .home-services__footer {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
body.v3 .home-services__footer .btn {
  min-height: 52px;
  padding: 0 2rem;
  font-size: 0.95rem;
}


/* ============================================================
   2) PROCESS — horizontal 5-step flow
   ============================================================ */

/* ── PILLARS SPLIT LAYOUT ───────────────────────────────────────── */
body.v3 .gks-pillars__body {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 860px) {
  body.v3 .gks-pillars__body {
    grid-template-columns: 1fr;
  }
}

body.v3 .gks-pillars__photo {
  position: relative;
  border-radius: var(--radius-xl, 1.25rem);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 30px 60px -20px rgba(10, 30, 60, 0.28);
  background: var(--gks-blue);
}
body.v3 .gks-pillars__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
body.v3 .gks-pillars__photo:hover img {
  transform: scale(1.04);
}
/* Bottom + right-edge gradient blends photo into the card grid */
body.v3 .gks-pillars__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(6, 26, 50, 0.55) 100%),
    linear-gradient(90deg, transparent 65%, rgba(6, 26, 50, 0.75) 100%);
  pointer-events: none;
}
@media (max-width: 860px) {
  body.v3 .gks-pillars__photo {
    aspect-ratio: 16 / 7;
  }
}

/* Override pillars grid to 2×2 inside the body split */
body.v3 .gks-pillars__body .gks-pillars__grid {
  grid-template-columns: 1fr 1fr !important;
}
@media (max-width: 480px) {
  body.v3 .gks-pillars__body .gks-pillars__grid {
    grid-template-columns: 1fr !important;
  }
}

body.v3 section.home-process {
  position: relative;
  padding: clamp(4rem, 9vh, 7rem) 0 clamp(5rem, 11vh, 8rem);
  color: var(--gks-white);
  overflow: hidden;
  isolation: isolate;
  /* Same dark base as presence — sections flow as one unified block */
  background:
    radial-gradient(ellipse 70% 55% at 90% 0%,  rgba(230, 57, 70, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 5% 100%, rgba(27, 92, 138, 0.22) 0%, transparent 55%),
    #06111e;
  margin-bottom: 0;
}
/* Subtle grid backdrop */
body.v3 section.home-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 35%, transparent 80%);
  pointer-events: none;
  z-index: -1;
}

body.v3 .home-process__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vh, 4rem);
}

body.v3 .home-process__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.45);
  color: #FFD7DC;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.v3 .home-process__title {
  margin: 1rem 0 0.85rem;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--gks-white);
}
body.v3 .home-process__title .text-red { color: var(--gks-red); }

body.v3 .home-process__lead {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* ---- The flow track ---- */
body.v3 .home-process__flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding-top: 1rem;
}

/* The connecting line — draws left→right on scroll reveal */
body.v3 .home-process__flow::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 8%;
  right: 8%;
  height: 2px;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 50%
  );
  background-size: 14px 2px;
  background-repeat: repeat-x;
  z-index: 0;
  /* Line draw animation */
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
body.v3 .home-process.is-revealed .home-process__flow::before {
  transform: scaleX(1);
}

/* ── Traveler dot ─────────────────────────────────────────────── */
body.v3 .home-process__traveler {
  /* Remove from grid flow, overlay on connector line */
  position: absolute;
  top: calc(56px - 7px); /* line y=56px, dot radius=7px → centered */
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gks-red, #e63946);
  box-shadow:
    0 0 0 5px rgba(230, 57, 70, 0.22),
    0 0 20px rgba(230, 57, 70, 0.7);
  z-index: 3;
  list-style: none;
  display: block;
  pointer-events: none;
  opacity: 0;
}
body.v3 .home-process.is-revealed .home-process__traveler {
  animation: gksTraveler 4s cubic-bezier(0.4, 0, 0.2, 1) 1.8s both;
}
@keyframes gksTraveler {
  /* Each step's center is at ≈ 10%, 30%, 50%, 70%, 90% of the flow */
  /* Pause at each stop before moving on */
  0%          { left: calc(10% - 7px); opacity: 0; }
  4%          { opacity: 1; }
  18%         { left: calc(10% - 7px); }
  26%         { left: calc(30% - 7px); }
  38%         { left: calc(30% - 7px); }
  46%         { left: calc(50% - 7px); }
  58%         { left: calc(50% - 7px); }
  66%         { left: calc(70% - 7px); }
  79%         { left: calc(70% - 7px); }
  90%         { left: calc(90% - 7px); opacity: 1; }
  96%, 100%   { left: calc(90% - 7px); opacity: 0; }
}

/* Step numbers glow briefly as traveler "arrives" — piggybacks on pulse */
body.v3 .home-process.is-revealed .home-process__step:nth-child(2) .home-process__num {
  animation: home-process-pulse 2.6s ease-out infinite 0s, gksStepArrive 0.5s ease-out 2.0s both;
}
body.v3 .home-process.is-revealed .home-process__step:nth-child(3) .home-process__num {
  animation: home-process-pulse 2.6s ease-out infinite 0.4s, gksStepArrive 0.5s ease-out 2.7s both;
}
body.v3 .home-process.is-revealed .home-process__step:nth-child(4) .home-process__num {
  animation: home-process-pulse 2.6s ease-out infinite 0.8s, gksStepArrive 0.5s ease-out 3.4s both;
}
body.v3 .home-process.is-revealed .home-process__step:nth-child(5) .home-process__num {
  animation: home-process-pulse 2.6s ease-out infinite 1.2s, gksStepArrive 0.5s ease-out 4.1s both;
}
body.v3 .home-process.is-revealed .home-process__step:nth-child(6) .home-process__num {
  animation: home-process-pulse 2.6s ease-out infinite 1.6s, gksStepArrive 0.5s ease-out 4.7s both;
}
@keyframes gksStepArrive {
  0%   { filter: brightness(1); }
  40%  { filter: brightness(1.5) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)); }
  100% { filter: brightness(1); }
}

@media (max-width: 880px) {
  body.v3 .home-process__flow {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-left: 0;
  }
  body.v3 .home-process__flow::before { display: none; }
  body.v3 .home-process__traveler { display: none !important; }
}

body.v3 .home-process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}

body.v3 .home-process__num {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(135deg, var(--gks-red) 0%, #C72333 100%);
  color: var(--gks-white);
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 2rem;
  font-weight: 900;
  box-shadow:
    0 14px 30px -8px rgba(230, 57, 70, 0.55),
    inset 0 0 30px rgba(0, 0, 0, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.12);
  transition: transform var(--dur-base) var(--ease-premium),
              box-shadow var(--dur-base) var(--ease-premium);
}
body.v3 .home-process__num i {
  font-size: 1.6rem;
  font-weight: 400;
}
body.v3 .home-process__step:hover .home-process__num {
  transform: scale(1.08) translateY(-4px);
  box-shadow:
    0 20px 38px -8px rgba(230, 57, 70, 0.7),
    inset 0 0 30px rgba(0, 0, 0, 0.2);
}

/* Pulsing ring around the medallion (paused for reduced-motion) */
body.v3 .home-process__num::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(230, 57, 70, 0.35);
  animation: home-process-pulse 2.6s ease-out infinite;
  pointer-events: none;
}
body.v3 .home-process__step:nth-child(2) .home-process__num::after { animation-delay: 0.4s; }
body.v3 .home-process__step:nth-child(3) .home-process__num::after { animation-delay: 0.8s; }
body.v3 .home-process__step:nth-child(4) .home-process__num::after { animation-delay: 1.2s; }
body.v3 .home-process__step:nth-child(5) .home-process__num::after { animation-delay: 1.6s; }

@keyframes home-process-pulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.35); opacity: 0;   }
  100% { transform: scale(1.35); opacity: 0;   }
}

@media (prefers-reduced-motion: reduce) {
  body.v3 .home-process__num,
  body.v3 .home-process__num::after {
    animation: none !important;
    transition: none !important;
  }
}

body.v3 .home-process__step-title {
  margin: 1.25rem 0 0.5rem;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.005em;
  color: var(--gks-white);
}

body.v3 .home-process__step-desc {
  margin: 0;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  max-width: 220px;
}

/* CTA at the foot of the process section */
body.v3 .home-process__footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: clamp(2.5rem, 5vh, 4rem);
}
body.v3 .home-process__footer .btn--ghost-dark {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--gks-white);
}
body.v3 .home-process__footer .btn--ghost-dark:hover {
  background: var(--gks-white);
  color: var(--gks-blue);
  border-color: var(--gks-white);
}


/* ==================================================================
   SPRINT 10 — Homepage redesign part 2: ABOUT SNAPSHOT, INDUSTRIES,
   PRESENCE TEASER, TESTIMONIALS
   ================================================================== */


/* ============================================================
   3) ABOUT SNAPSHOT
   ============================================================ */

body.v3 section.home-about {
  position: relative;
  padding: clamp(4rem, 9vh, 7rem) 0;
  background: var(--gks-white);
  overflow: hidden;
  isolation: isolate;
}
body.v3 section.home-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 8% 10%, rgba(10, 61, 98, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 95% 95%, rgba(230, 57, 70, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

body.v3 .home-about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 980px) {
  body.v3 .home-about__grid { grid-template-columns: 1fr; }
}

/* ---- Left column: copy + stats ---- */
body.v3 .home-about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.25);
  color: var(--gks-red);
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
body.v3 .home-about__title {
  margin: 1rem 0 1rem;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--gks-blue);
}
body.v3 .home-about__title .text-red { color: var(--gks-red); }

body.v3 .home-about__lead {
  margin: 0 0 0.85rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted, #4a5568);
}
body.v3 .home-about__lead:last-of-type { margin-bottom: 1.75rem; }

body.v3 .home-about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin: 0 0 2rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(10, 61, 98, 0.04) 0%, rgba(230, 57, 70, 0.04) 100%);
  border: 1px solid rgba(10, 61, 98, 0.1);
}
@media (max-width: 720px) {
  body.v3 .home-about__stats { grid-template-columns: repeat(2, 1fr); }
}
body.v3 .home-about__stat {
  text-align: center;
}
body.v3 .home-about__stat-value {
  display: block;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  line-height: 1;
  color: var(--gks-blue);
  letter-spacing: -0.02em;
}
body.v3 .home-about__stat-label {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted, #4a5568);
}

body.v3 .home-about__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---- Right column: image card with caption ---- */
/* Collage wrapper — lets secondary image protrude below/left */
body.v3 .home-about__media-wrap {
  position: relative;
  padding-bottom: 4rem;
  padding-left: 1.5rem;
}

body.v3 .home-about__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(10, 30, 60, 0.35);
  aspect-ratio: 4 / 5;
  background: var(--gks-blue);
}

/* Secondary inset photo — bottom-left, slightly overlapping */
body.v3 .home-about__media-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg, 1rem);
  overflow: hidden;
  border: 4px solid var(--gks-white, #fff);
  box-shadow: 0 16px 40px -10px rgba(10, 30, 60, 0.38);
  z-index: 2;
  background: var(--gks-grey-100, #f1f5f9);
}
body.v3 .home-about__media-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-premium, cubic-bezier(0.22,1,0.36,1));
}
body.v3 .home-about__media-wrap:hover .home-about__media-2 img {
  transform: scale(1.06);
}
@media (max-width: 980px) {
  body.v3 .home-about__media-wrap {
    padding-bottom: 3rem;
    padding-left: 1rem;
  }
  body.v3 .home-about__media-2 {
    width: 48%;
  }
}
body.v3 .home-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-premium);
}
body.v3 .home-about__media:hover img { transform: scale(1.05); }
body.v3 .home-about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 42, 69, 0.55) 75%, rgba(6, 42, 69, 0.85) 100%);
  pointer-events: none;
}
body.v3 .home-about__caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(10, 30, 50, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--gks-white);
}
body.v3 .home-about__caption-title {
  display: block;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
body.v3 .home-about__caption-text {
  display: block;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

/* Floating badge over the image (top-right) */
body.v3 .home-about__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--gks-red);
  color: var(--gks-white);
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px -8px rgba(230, 57, 70, 0.55);
}


/* ============================================================
   4) INDUSTRIES WE SERVE
   ============================================================ */

body.v3 section.home-industries {
  position: relative;
  padding: clamp(4rem, 9vh, 7rem) 0;
  background:
    linear-gradient(180deg, rgba(244,248,251,0.96) 0%, rgba(255,255,255,0.97) 100%),
    url('/assets/logistics-3.png') center / cover no-repeat;
  overflow: hidden;
  isolation: isolate;
}

body.v3 .home-industries__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vh, 3.5rem);
}
body.v3 .home-industries__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(10, 61, 98, 0.08);
  border: 1px solid rgba(10, 61, 98, 0.18);
  color: var(--gks-blue);
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
body.v3 .home-industries__title {
  margin: 1rem 0 0.85rem;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--gks-blue);
}
body.v3 .home-industries__title .text-red { color: var(--gks-red); }
body.v3 .home-industries__lead {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted, #4a5568);
  margin: 0;
}

body.v3 .home-industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 880px) {
  body.v3 .home-industries__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  body.v3 .home-industries__grid { grid-template-columns: 1fr; }
}

body.v3 .home-industry {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--gks-white);
  border: 1px solid rgba(10, 61, 98, 0.1);
  box-shadow: 0 4px 14px rgba(10, 30, 60, 0.04);
  transition:
    transform var(--dur-base) var(--ease-premium),
    box-shadow var(--dur-base) var(--ease-premium),
    border-color var(--dur-base) var(--ease-premium);
}
body.v3 .home-industry:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -12px rgba(10, 30, 60, 0.18);
  border-color: rgba(230, 57, 70, 0.35);
}
body.v3 .home-industry__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(10, 61, 98, 0.08) 0%, rgba(230, 57, 70, 0.08) 100%);
  color: var(--gks-blue);
  font-size: 1.25rem;
  transition:
    background var(--dur-base) var(--ease-premium),
    color var(--dur-base) var(--ease-premium),
    transform var(--dur-base) var(--ease-premium);
}
body.v3 .home-industry:hover .home-industry__icon {
  background: linear-gradient(135deg, var(--gks-blue) 0%, var(--gks-red) 100%);
  color: var(--gks-white);
  transform: scale(1.06) rotate(-3deg);
}
body.v3 .home-industry__title {
  margin: 0;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.005em;
  color: var(--gks-blue);
}
body.v3 .home-industry__desc {
  margin: 0;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted, #4a5568);
}


/* ============================================================
   5) PRESENCE TEASER (compact replacement for the 9-card carousel)
   ============================================================ */

body.v3 section.home-presence {
  position: relative;
  padding: clamp(4rem, 9vh, 7rem) 0;
  padding-bottom: clamp(6rem, 12vh, 9rem); /* extra room for the blend fade */
  color: var(--gks-white);
  overflow: hidden;
  isolation: isolate;
  margin-top: 0;
  margin-bottom: 0;
  /* Globe-forward: oversized globe (140 %) — vignette kills the outer halo */
  background:
    linear-gradient(to bottom, #06111e 0%, transparent 8%),
    linear-gradient(to right, rgba(8, 16, 28, 0.96) 0%, rgba(8, 16, 28, 0.74) 35%, rgba(8, 16, 28, 0.22) 62%, rgba(8, 16, 28, 0.06) 100%),
    radial-gradient(ellipse 48% 62% at 68% 50%, transparent 42%, rgba(6, 17, 30, 0.72) 68%, #06111e 100%),
    url('/assets/world presence.png') center / 140% auto no-repeat,
    #06111e;
}
/* Bottom-to-philosophy gradient bridge */
body.v3 section.home-presence::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent 0%, #062A45 100%);
  pointer-events: none;
  z-index: 0;
}

body.v3 section.home-presence::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 35%, transparent 80%);
  pointer-events: none;
  z-index: -1;
}

body.v3 .home-presence__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 980px) {
  body.v3 .home-presence__grid { grid-template-columns: 1fr; }
}

body.v3 .home-presence__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.45);
  color: #FFD7DC;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
body.v3 .home-presence__title {
  margin: 1rem 0 1rem;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--gks-white);
}
body.v3 .home-presence__title .text-red { color: var(--gks-red); }
body.v3 .home-presence__lead {
  margin: 0 0 1.75rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

body.v3 .home-presence__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0 0 2rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
body.v3 .home-presence__stat-value {
  display: block;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  line-height: 1;
  color: var(--gks-white);
  letter-spacing: -0.02em;
}
body.v3 .home-presence__stat-label {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

/* ---- Right column: tabs + country pills ---- */
body.v3 .home-presence__panel {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.5);
}

body.v3 .gks-hero__aside--globe {
  display: flex;
  justify-content: center;
  align-items: center;
}

body.v3 .gks-hero__globe {
  width: min(470px, 100%);
  max-width: 470px;
}

@media (max-width: 520px) {
  body.v3 .gks-hero__globe {
    max-width: min(360px, 100%);
  }
}

@media (max-width: 1100px) {
  body.v3 .gks-hero__aside--globe {
    display: none !important;
  }
}

body.v3 .home-presence__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
body.v3 .home-presence__tab {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-premium);
}
body.v3 .home-presence__tab:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--gks-white);
}
body.v3 .home-presence__tab.is-active {
  background: var(--gks-red);
  border-color: var(--gks-red);
  color: var(--gks-white);
  box-shadow: 0 6px 14px -4px rgba(230, 57, 70, 0.55);
}

body.v3 .home-presence__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
body.v3 .home-presence__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--gks-white);
  text-decoration: none;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--dur-fast) var(--ease-premium);
}
body.v3 .home-presence__pill[hidden] { display: none !important; }
body.v3 .home-presence__pill:hover {
  background: var(--gks-white);
  border-color: var(--gks-white);
  color: var(--gks-blue);
  transform: translateY(-2px);
}
body.v3 .home-presence__pill-flag {
  font-size: 1rem;
  line-height: 1;
}

body.v3 .home-presence__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: var(--gks-red);
  color: var(--gks-white);
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--dur-fast) var(--ease-premium);
  box-shadow: 0 12px 24px -8px rgba(230, 57, 70, 0.5);
}
body.v3 .home-presence__cta:hover {
  background: #C72333;
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -8px rgba(230, 57, 70, 0.6);
}
body.v3 .home-presence__cta i {
  transition: transform var(--dur-fast) var(--ease-premium);
}
body.v3 .home-presence__cta:hover i { transform: translateX(4px); }

/* ---- Pills fade-transition when switching tabs ---- */
body.v3 .home-presence__pills {
  transition: opacity 0.18s ease;
}
body.v3 .home-presence__pills.is-filtering {
  opacity: 0;
  pointer-events: none;
}

/* ---- Staggered cascade: pills animate in on section reveal ---- */
@keyframes pillArrive {
  from { opacity: 0; transform: translateY(10px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
body.v3 .home-presence.is-revealed .home-presence__pills > li {
  animation: pillArrive 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}
body.v3 .home-presence.is-revealed .home-presence__pills > li:nth-child(1)  { animation-delay: 0.05s; }
body.v3 .home-presence.is-revealed .home-presence__pills > li:nth-child(2)  { animation-delay: 0.10s; }
body.v3 .home-presence.is-revealed .home-presence__pills > li:nth-child(3)  { animation-delay: 0.15s; }
body.v3 .home-presence.is-revealed .home-presence__pills > li:nth-child(4)  { animation-delay: 0.20s; }
body.v3 .home-presence.is-revealed .home-presence__pills > li:nth-child(5)  { animation-delay: 0.25s; }
body.v3 .home-presence.is-revealed .home-presence__pills > li:nth-child(6)  { animation-delay: 0.30s; }
body.v3 .home-presence.is-revealed .home-presence__pills > li:nth-child(7)  { animation-delay: 0.35s; }
body.v3 .home-presence.is-revealed .home-presence__pills > li:nth-child(8)  { animation-delay: 0.40s; }
body.v3 .home-presence.is-revealed .home-presence__pills > li:nth-child(9)  { animation-delay: 0.45s; }
body.v3 .home-presence.is-revealed .home-presence__pills > li:nth-child(10) { animation-delay: 0.50s; }

/* ---- Sonar rings — radiating outward from a center point ---- */
body.v3 .home-presence__sonar {
  position: absolute;
  top: 50%;
  left: 30%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
body.v3 .home-presence__sonar span {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  animation: gksSonarRing 3.8s ease-out infinite;
  pointer-events: none;
}
body.v3 .home-presence__sonar span:nth-child(2) { animation-delay: 1.27s; }
body.v3 .home-presence__sonar span:nth-child(3) { animation-delay: 2.53s; }
@keyframes gksSonarRing {
  from { transform: scale(0); opacity: 0.75; }
  to   { transform: scale(7); opacity: 0; }
}

/* ---- Floating location pins ---- */
body.v3 .home-presence__pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
body.v3 .home-presence__pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gks-red, #e63946);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.25);
  animation: pinPulse 2.8s ease-in-out infinite;
}
body.v3 .home-presence__pin::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(230, 57, 70, 0.4);
  animation: pinRing 2.8s ease-out infinite;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(230, 57, 70, 0.10); }
}
@keyframes pinRing {
  from { transform: scale(1); opacity: 0.6; }
  to   { transform: scale(2.8); opacity: 0; }
}
/* Pin positions — loosely geographic relative to the section */
body.v3 .home-presence__pin--africa  { top: 62%; left: 12%; animation-delay: 0s; }
body.v3 .home-presence__pin--europe  { top: 22%; left: 38%; animation-delay: 0.7s; }
body.v3 .home-presence__pin--me      { top: 35%; left: 58%; animation-delay: 1.4s; }
body.v3 .home-presence__pin--asia    { top: 20%; left: 74%; animation-delay: 2.1s; }

/* Country name labels on pins */
body.v3 .home-presence__pin-label {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gks-white);
  background: rgba(10, 20, 40, 0.88);
  border: 1px solid rgba(230, 57, 70, 0.45);
  padding: 3px 7px 2px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
/* Show label on hover and always after section reveals */
body.v3 .home-presence__pin:hover .home-presence__pin-label,
body.v3 .home-presence.is-revealed .home-presence__pin-label {
  opacity: 1;
}
/* Stagger label fade-in on reveal */
body.v3 .home-presence.is-revealed .home-presence__pin--africa  .home-presence__pin-label { transition-delay: 0.4s; }
body.v3 .home-presence.is-revealed .home-presence__pin--europe  .home-presence__pin-label { transition-delay: 0.7s; }
body.v3 .home-presence.is-revealed .home-presence__pin--me      .home-presence__pin-label { transition-delay: 1.1s; }
body.v3 .home-presence.is-revealed .home-presence__pin--asia    .home-presence__pin-label { transition-delay: 1.5s; }

/* Hide decorative elements on very narrow screens */
@media (max-width: 640px) {
  body.v3 .home-presence__sonar,
  body.v3 .home-presence__pins { display: none; }
}

/* prefers-reduced-motion: disable all presence animations */
@media (prefers-reduced-motion: reduce) {
  body.v3 .home-presence__sonar span,
  body.v3 .home-presence__pin,
  body.v3 .home-presence__pin::after,
  body.v3 .home-presence.is-revealed .home-presence__pills > li { animation: none; }
  body.v3 .home-presence.is-revealed .home-presence__pills > li { opacity: 1; transform: none; }
  body.v3 .home-presence__pills { transition: none; }
}


/* ============================================================
   6) TESTIMONIALS — premium slider re-skin
   ============================================================ */

body.v3 section.home-testimonials {
  position: relative;
  padding: clamp(4rem, 9vh, 7rem) 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FB 100%);
  overflow: hidden;
  isolation: isolate;
}
body.v3 section.home-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 90% 0%, rgba(230, 57, 70, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 100%, rgba(10, 61, 98, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

body.v3 .home-testimonials__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vh, 3.5rem);
}
body.v3 .home-testimonials__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.25);
  color: var(--gks-red);
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
body.v3 .home-testimonials__title {
  margin: 1rem 0 0.85rem;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--gks-blue);
}
body.v3 .home-testimonials__title .text-red { color: var(--gks-red); }
body.v3 .home-testimonials__lead {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted, #4a5568);
  margin: 0;
}

/* Horizontal scrolling track with snap */
body.v3 .home-testimonials__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 1fr);
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.5rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(10, 61, 98, 0.25) transparent;
}
body.v3 .home-testimonials__track::-webkit-scrollbar { height: 8px; }
body.v3 .home-testimonials__track::-webkit-scrollbar-track { background: transparent; }
body.v3 .home-testimonials__track::-webkit-scrollbar-thumb {
  background: rgba(10, 61, 98, 0.25);
  border-radius: 999px;
}

@media (min-width: 1100px) {
  body.v3 .home-testimonials__track {
    grid-auto-columns: minmax(0, 1fr);
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: row;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
  }
}

body.v3 .home-testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--gks-white);
  border: 1px solid rgba(10, 61, 98, 0.1);
  box-shadow: 0 8px 24px -8px rgba(10, 30, 60, 0.08);
  scroll-snap-align: start;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform var(--dur-base) var(--ease-premium),
    box-shadow var(--dur-base) var(--ease-premium),
    border-color var(--dur-base) var(--ease-premium);
}
body.v3 .home-testimonial::before {
  content: "\201C";
  position: absolute;
  top: -1.5rem;
  right: 0.5rem;
  font-family: 'Georgia', serif;
  font-size: 9rem;
  color: rgba(230, 57, 70, 0.08);
  line-height: 1;
  z-index: -1;
  pointer-events: none;
}
body.v3 .home-testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(10, 30, 60, 0.18);
  border-color: rgba(230, 57, 70, 0.3);
}

body.v3 .home-testimonial__rating {
  display: inline-flex;
  gap: 0.2rem;
  color: #F5B700;
  font-size: 0.95rem;
}
body.v3 .home-testimonial__rating .far { color: rgba(245, 183, 0, 0.3); }

body.v3 .home-testimonial__quote {
  margin: 0;
  flex: 1;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1rem;
  line-height: 1.65;
  color: #1a202c;
  font-style: italic;
}
body.v3 .home-testimonial__quote::before { content: "\201C"; }
body.v3 .home-testimonial__quote::after { content: "\201D"; }

body.v3 .home-testimonial__person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 61, 98, 0.08);
}
body.v3 .home-testimonial__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gks-blue) 0%, #1B5C8A 100%);
  color: var(--gks-white);
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  flex-shrink: 0;
}
body.v3 .home-testimonial__name {
  display: block;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gks-blue);
  letter-spacing: -0.005em;
}
body.v3 .home-testimonial__role {
  display: block;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.82rem;
  color: var(--text-muted, #4a5568);
  margin-top: 0.15rem;
}

body.v3 .home-testimonials__footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vh, 3rem);
}

/* ── Testimonials carousel (sliding track) ── */
body.v3 .home-testimonials-carousel {
  position: relative;
  margin-top: 0.25rem;
  padding: 0 2.75rem 3rem;
}
@media (max-width: 720px) {
  body.v3 .home-testimonials-carousel { padding-left: 2.25rem; padding-right: 2.25rem; }
}
body.v3 .home-testimonials-carousel__viewport {
  overflow: hidden;
  margin: 0 auto;
  max-width: 1200px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 2%,
    #000 98%,
    transparent
  );
  mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}
body.v3 .home-testimonials-carousel__viewport:focus-visible {
  outline: 2px solid var(--gks-red);
  outline-offset: 4px;
  border-radius: var(--radius-lg);
}
body.v3 .home-testimonials-carousel__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

body.v3 .home-testimonials-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(10, 61, 98, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--gks-blue);
  box-shadow: 0 8px 28px rgba(10, 30, 60, 0.12);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition:
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}
body.v3 .home-testimonials-carousel__arrow:hover {
  transform: translateY(-50%) scale(1.06);
  background: var(--gks-blue);
  color: var(--gks-white);
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(10, 61, 98, 0.25);
}
body.v3 .home-testimonials-carousel__arrow:active {
  transform: translateY(-50%) scale(0.96);
}
body.v3 .home-testimonials-carousel__arrow--prev { left: 0; }
body.v3 .home-testimonials-carousel__arrow--next { right: 0; }

body.v3 .home-testimonials-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.75rem;
  min-height: 1rem;
}
body.v3 .home-testimonials-carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(10, 61, 98, 0.18);
  cursor: pointer;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.28s;
}
body.v3 .home-testimonials-carousel__dot:hover {
  transform: scale(1.25);
  background: rgba(10, 61, 98, 0.35);
}
body.v3 .home-testimonials-carousel__dot.is-active {
  background: var(--gks-red);
  width: 26px;
  border-radius: 999px;
  transform: none;
}

/* Reduced motion / static fallback */
body.v3 .home-testimonials-carousel--static {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1rem;
}
body.v3 .home-testimonials-carousel--static .home-testimonials-carousel__viewport {
  -webkit-mask-image: none;
  mask-image: none;
}
body.v3 .home-testimonials-carousel--static .home-testimonials-carousel__track {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  transition: none;
}
body.v3 .home-testimonials-carousel--static .home-testimonial--carousel {
  flex: 1 1 min(100%, 360px);
  width: auto;
  max-width: 440px;
}

@media (prefers-reduced-motion: reduce) {
  body.v3 .home-testimonials-carousel__track {
    transition: none;
  }
}

/* ── Trust logo grid (above testimonial quotes) ── */
body.v3 .home-trust__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 0 auto clamp(2rem, 4vh, 3rem);
  max-width: 900px;
}
@media (max-width: 640px) {
  body.v3 .home-trust__logos { grid-template-columns: repeat(2, 1fr); }
}
body.v3 .home-trust__logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  background: var(--gks-white);
  border: 1px solid rgba(10, 61, 98, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(10, 61, 98, 0.06);
  transition: transform var(--dur-fast) var(--ease-premium),
              box-shadow var(--dur-fast) var(--ease-premium);
}
body.v3 .home-trust__logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(10, 61, 98, 0.12);
}
body.v3 .home-trust__logo-card img {
  max-height: 52px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: transform var(--dur-base) var(--ease-premium);
}
body.v3 .home-trust__logo-card:hover img {
  transform: scale(1.04);
}
/* ==================================================================
   SPRINT 11 — Homepage redesign part 3: INSIGHTS HUB, PARTNERS,
   CLOSING CTA
   ================================================================== */


/* ============================================================
   7) INSIGHTS & RESOURCES HUB
   ============================================================ */

body.v3 section.home-insights {
  position: relative;
  padding: clamp(4rem, 9vh, 7rem) 0;
  background: var(--gks-white);
  overflow: hidden;
  isolation: isolate;
}
body.v3 section.home-insights::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 92% 8%, rgba(10, 61, 98, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 5% 95%, rgba(230, 57, 70, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

body.v3 .home-insights__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 0 auto clamp(2.5rem, 5vh, 3.5rem);
}
body.v3 .home-insights__header-copy {
  max-width: 640px;
}
body.v3 .home-insights__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(10, 61, 98, 0.08);
  border: 1px solid rgba(10, 61, 98, 0.18);
  color: var(--gks-blue);
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
body.v3 .home-insights__title {
  margin: 1rem 0 0.85rem;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--gks-blue);
}
body.v3 .home-insights__title .text-red { color: var(--gks-red); }
body.v3 .home-insights__lead {
  margin: 0;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted, #4a5568);
}
body.v3 .home-insights__seeall {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gks-red);
  text-decoration: none;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: all var(--dur-fast) var(--ease-premium);
}
body.v3 .home-insights__seeall:hover {
  border-bottom-color: var(--gks-red);
  gap: 0.7rem;
}

body.v3 .home-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) {
  body.v3 .home-insights__grid { grid-template-columns: 1fr; }
}

body.v3 .home-insight {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: var(--gks-white);
  border: 1px solid rgba(10, 61, 98, 0.1);
  box-shadow: 0 8px 24px -8px rgba(10, 30, 60, 0.06);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    transform var(--dur-base) var(--ease-premium),
    box-shadow var(--dur-base) var(--ease-premium),
    border-color var(--dur-base) var(--ease-premium);
  isolation: isolate;
}
body.v3 .home-insight:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -20px rgba(10, 30, 60, 0.22);
  border-color: rgba(230, 57, 70, 0.3);
}

body.v3 .home-insight__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gks-blue);
}
body.v3 .home-insight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-premium);
}
body.v3 .home-insight:hover .home-insight__media img { transform: scale(1.07); }
body.v3 .home-insight__type-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 30, 50, 0.65);
  color: var(--gks-white);
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
body.v3 .home-insight__type-pill--red {
  background: var(--gks-red);
  border-color: var(--gks-red);
}

body.v3 .home-insight__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem;
  flex: 1;
}
body.v3 .home-insight__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted, #4a5568);
  letter-spacing: 0.02em;
}
body.v3 .home-insight__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}
body.v3 .home-insight__title {
  margin: 0;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--gks-blue);
}
body.v3 .home-insight:hover .home-insight__title { color: var(--gks-red); }
body.v3 .home-insight__desc {
  margin: 0;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted, #4a5568);
  flex: 1;
}
body.v3 .home-insight__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gks-red);
}
body.v3 .home-insight__cta i { transition: transform var(--dur-fast) var(--ease-premium); }
body.v3 .home-insight:hover .home-insight__cta i { transform: translateX(4px); }


/* ============================================================
   8) PARTNERS MARQUEE — premium re-skin
   (.home-partners__marquee / __track / __logo — see v3-partners-marquee.css)
   ============================================================ */

body.v3 section.home-partners {
  position: relative;
  padding: clamp(3rem, 6vh, 5rem) 0;
  background: linear-gradient(180deg, #F4F8FB 0%, #FFFFFF 100%);
  overflow: hidden;
  isolation: isolate;
}

body.v3 .home-partners__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
body.v3 .home-partners__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(10, 61, 98, 0.08);
  border: 1px solid rgba(10, 61, 98, 0.18);
  color: var(--gks-blue);
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
body.v3 .home-partners__title {
  margin: 1rem 0 0.6rem;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--gks-blue);
}
body.v3 .home-partners__lead {
  margin: 0;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-muted, #4a5568);
}

/* Marquee / track / logo tiles: shared in v3.css (commercial + homepage) */

/* ============================================================
   9) CLOSING CTA — "Ready to ship?"
   ============================================================ */

body.v3 section.home-finalcta {
  position: relative;
  padding: clamp(5rem, 12vh, 8rem) 0;
  color: var(--gks-white);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 55% at 92% 0%, rgba(230, 57, 70, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 5% 100%, rgba(27, 92, 138, 0.55) 0%, transparent 55%),
    linear-gradient(135deg, #062A45 0%, #0A3D62 55%, #1B5C8A 100%);
}
/* Animated grid + faint plane silhouette layer */
body.v3 section.home-finalcta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 30%, transparent 85%);
  pointer-events: none;
  z-index: -1;
}

body.v3 .home-finalcta__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

body.v3 .home-finalcta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.18);
  border: 1px solid rgba(230, 57, 70, 0.5);
  color: #FFD7DC;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.v3 .home-finalcta__title {
  margin: 1.25rem 0 1rem;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--gks-white);
}
body.v3 .home-finalcta__title .text-red { color: var(--gks-red); }
body.v3 .home-finalcta__title .text-gradient {
  background: linear-gradient(135deg, #FFB5BC 0%, var(--gks-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.v3 .home-finalcta__lead {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

body.v3 .home-finalcta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
body.v3 .home-finalcta__actions .btn {
  min-height: 56px;
  padding: 0 2rem;
  font-size: 0.95rem;
}
body.v3 .home-finalcta__actions .btn--ghost-dark {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--gks-white);
}
body.v3 .home-finalcta__actions .btn--ghost-dark:hover {
  background: var(--gks-white);
  color: var(--gks-blue);
  border-color: var(--gks-white);
}

/* Reassurance pills row */
body.v3 .home-finalcta__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
body.v3 .home-finalcta__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
body.v3 .home-finalcta__pill i {
  color: var(--gks-red);
  font-size: 0.9rem;
}

/* ===== Philosophy Section ===== */
/* ================================================================
   PHILOSOPHY — V3 premium redesign
   Layout: sticky intro label (left) + 3 content cards (right)
   ================================================================ */
/* ============================================================
   PHILOSOPHY — Vision, Mission & Valeurs (redesigned)
   Full-width header + 3 horizontal cards + numbered background
   ============================================================ */
body.v3 .home-philosophy {
  background: linear-gradient(160deg, #062A45 0%, #0A3D62 55%, #0d4e7a 100%);
  padding: clamp(4rem, 9vh, 7rem) 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
body.v3 .home-philosophy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at -5% 55%,  rgba(230, 57, 70, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 105% 45%, rgba(255,255,255, 0.03) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(27, 92, 138, 0.35) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
body.v3 .home-philosophy > .container {
  position: relative;
  z-index: 1;
}

/* ── Centered header ──────────────────────────────────────────── */
body.v3 .home-philosophy__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
body.v3 .home-philosophy__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gks-white, #fff);
  margin-bottom: 1.1rem;
}
body.v3 .home-philosophy__title {
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: clamp(1.9rem, 3.8vw, 2.75rem);
  font-weight: 800;
  color: var(--gks-white, #fff);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
}
body.v3 .home-philosophy__title .text-red { color: var(--gks-red, #e63946); }
body.v3 .home-philosophy__lead {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  margin: 0;
}

/* ── 3-column card grid ───────────────────────────────────────── */
body.v3 .home-philosophy__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
@media (max-width: 860px) {
  body.v3 .home-philosophy__cards { grid-template-columns: 1fr; }
}

/* ── Card base ────────────────────────────────────────────────── */
body.v3 .phi-card {
  position: relative;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl, 1.25rem);
  padding: 2.25rem 2rem 2.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    background 0.35s var(--ease-premium),
    border-color 0.35s var(--ease-premium),
    transform 0.35s var(--ease-premium);
}
body.v3 .phi-card:hover {
  background: rgba(255, 255, 255, 0.095);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  border-left-color:   rgba(255, 255, 255, 0.18);
  border-right-color:  rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
}
/* Colored top accent per card on hover */
body.v3 .phi-card--vision:hover  { border-top-color: #60a5fa; }
body.v3 .phi-card--mission:hover { border-top-color: var(--gks-red, #e63946); }
body.v3 .phi-card--values:hover  { border-top-color: #F59E0B; }

/* ── Large background number ──────────────────────────────────── */
body.v3 .phi-card__num {
  position: absolute;
  bottom: -0.5rem;
  right: 0.8rem;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: clamp(5.5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.038);
  pointer-events: none;
  user-select: none;
  transition: color 0.35s ease;
}
body.v3 .phi-card:hover .phi-card__num { color: rgba(255, 255, 255, 0.072); }

/* ── Icon ─────────────────────────────────────────────────────── */
body.v3 .phi-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-premium);
}
body.v3 .phi-card:hover .phi-card__icon { transform: scale(1.1) rotate(-3deg); }
body.v3 .phi-card--vision  .phi-card__icon { background: rgba(96, 165, 250, 0.18); color: #93c5fd; }
body.v3 .phi-card--mission .phi-card__icon { background: rgba(230, 57, 70, 0.22);  color: #fca5a5; }
body.v3 .phi-card--values  .phi-card__icon { background: rgba(245, 158, 11, 0.18); color: #FCD34D; }

/* ── Title + body ─────────────────────────────────────────────── */
body.v3 .phi-card__title {
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gks-white, #fff);
  margin: 0 0 0.8rem;
  letter-spacing: -0.01em;
}
body.v3 .phi-card__body {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* ── Values checklist ─────────────────────────────────────────── */
body.v3 .phi-values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 0.5rem;
  flex: 1;
}
body.v3 .phi-values li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
body.v3 .phi-values li i {
  color: #FCD34D;
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ── Footer CTA ───────────────────────────────────────────────── */
body.v3 .home-philosophy__footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}
body.v3 .home-philosophy__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gks-white, #fff);
  text-decoration: none;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  transition: all var(--dur-fast) var(--ease-premium);
}
body.v3 .home-philosophy__link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}
body.v3 .home-philosophy__link i {
  font-size: 0.7rem;
  transition: transform 0.2s;
}
body.v3 .home-philosophy__link:hover i { transform: translateX(3px); }

/* Suppress old accordion styles from leaking in */
body.v3 .home-philosophy .philosophy-accordion-section { display: none; }
body.v3 .home-philosophy .section-header              { display: none; }

/* ===== Video & Events Section ===== */
body.v3 .home-media {
  background: var(--gks-white, #fff);
  padding: 5rem 0;
}
body.v3 .home-media__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
body.v3 .home-media__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gks-red, #e63946);
  margin-bottom: 0.75rem;
}
body.v3 .home-media__title {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gks-grey-900, #0f172a);
  line-height: 1.2;
  margin: 0 0 1rem;
}
body.v3 .home-media__lead {
  font-size: 1rem;
  color: var(--gks-grey-600, #475569);
  line-height: 1.7;
  margin: 0;
}
body.v3 .home-media__videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
body.v3 .home-media__video-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(10,61,98,0.1);
  background: #000;
}
body.v3 .home-media__video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
body.v3 .home-media__video-caption {
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gks-grey-800, #1e293b);
  background: #fff;
  margin: 0;
}
body.v3 .home-media__events-title {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gks-grey-900, #0f172a);
  margin: 0 0 1.5rem;
  text-align: center;
}
body.v3 .home-media__events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
body.v3 .home-media__event-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(10,61,98,0.08);
  background: #000;
}
body.v3 .home-media__event-thumb {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
body.v3 .home-media__event-label {
  display: block;
  padding: 0.6rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gks-grey-800, #1e293b);
  background: #fff;
}
body.v3 .home-media__cta {
  text-align: center;
}
@media (max-width: 860px) {
  body.v3 .home-media__videos { grid-template-columns: 1fr; }
  body.v3 .home-media__events-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  body.v3 .home-media__events-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   PREMIUM ANIMATIONS — Phase 2
   ================================================================= */

/* ── 1. SERVICE CARDS — 3D tilt base setup ──────────────────────── */
body.v3 .home-services__grid {
  perspective: 1200px;
}
/* Smooth spring-back after tilt (JS sets inline transform; this handles return) */
body.v3 .home-service {
  transform-style: flat;
  will-change: transform;
  /* Extend existing transition to ensure smooth spring-back */
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow var(--dur-base) var(--ease-premium),
    border-color var(--dur-base) var(--ease-premium);
}
/* Disable CSS hover translateY on desktop — JS tilt provides the lift */
@media (hover: hover) {
  body.v3 .home-service:hover {
    transform: none;
  }
}

/* ── 2. AMBIENT ORB — drifts slowly across dark sections ────────── */
@keyframes gksOrbDrift {
  0%   { transform: translate(0%,    0%);    }
  33%  { transform: translate(30%,  -15%);   }
  66%  { transform: translate(-15%,  20%);   }
  100% { transform: translate(0%,    0%);    }
}

body.v3 section.home-process {
  isolation: isolate;
}
/* ── Cargo-flow particle stream: tiny dots drift left→right ──── */
body.v3 section.home-process::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(230, 57,  70,  0.16) 1px,   transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.09) 2px,   transparent 2px);
  background-size:   64px 44px, 96px 66px, 48px 56px;
  background-position: 0 0,     32px 22px, 16px 36px;
  animation: gksCargoFlow 20s linear infinite;
  pointer-events: none;
  z-index: 0;
  /* Fade particles at section edges so they don't hard-clip */
  mask-image: radial-gradient(ellipse 90% 68% at 50% 50%, black 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 90% 68% at 50% 50%, black 25%, transparent 72%);
}
@keyframes gksCargoFlow {
  from { background-position:    0 0,    32px 22px,    16px 36px; }
  to   { background-position: 1920px 0, 1952px 22px, 1936px 36px; }
}
/* Ensure process content sits above the orb */
body.v3 .home-process__header,
body.v3 .home-process__flow {
  position: relative;
  z-index: 1;
}

/* ── 3. MODERN CTA / HOME TRUST — ambient background shift ──────── */
@keyframes gksGradientPulse {
  0%, 100% { background-position: 0% 50%;   }
  50%      { background-position: 100% 50%; }
}
body.v3 .modern-cta-section {
  background-size: 220% 220%;
  animation: gksGradientPulse 14s ease infinite;
}

/* ── 4. HERO BACKGROUND — refined moving light pass ─────────────── */
.gks-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.08) 38%, transparent 64%);
  background-size: 220% 100%;
  mix-blend-mode: soft-light;
  opacity: 0.55;
  animation: gksHeroLightSweep 8.5s ease-in-out infinite;
}

/* ── 5. KPI STRIP — subtle shimmer on the card ──────────────────── */
@keyframes gksKpiShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center;  }
}
body.v3 .gks-kpis__grid {
  position: relative;
  overflow: hidden;
}
body.v3 .gks-kpis__grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.06) 50%,
    transparent 80%
  );
  background-size: 200% 100%;
  animation: gksKpiShimmer 5s linear 2.5s infinite;
  pointer-events: none;
  z-index: 1;
}

/* ── 6. ABOUT SECTION — stats counter visual enhancement ────────── */
body.v3 .home-about__stat-value {
  display: block;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s var(--ease-premium);
}

/* =============================================================
   MOBILE POLISH — small-viewport refinements
   ============================================================= */

/* Presence stats: reduce crowding on narrow phones */
@media (max-width: 540px) {
  body.v3 .home-presence__stats {
    gap: 0.5rem;
    padding: 0.85rem 0.75rem;
  }
  body.v3 .home-presence__stat-value {
    font-size: 1.35rem;
  }
  body.v3 .home-presence__stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
  }
}

/* Presence stats: stack to 1-col on very narrow screens */
@media (max-width: 380px) {
  body.v3 .home-presence__stats {
    grid-template-columns: 1fr;
  }
}

/* Philosophy values checklist: single column on tiny screens */
@media (max-width: 420px) {
  body.v3 .phi-values {
    grid-template-columns: 1fr;
  }
  body.v3 .phi-card {
    padding: 1.75rem 1.35rem;
  }
}

/* Service photo cards: tighter padding on phones */
@media (max-width: 560px) {
  body.v3 .home-service__body {
    padding: 1rem 1.1rem 1.15rem;
  }
  body.v3 .home-service__photo {
    min-height: 140px;
  }
}

/* About media wrap: remove offset decorative padding on small screens */
@media (max-width: 640px) {
  body.v3 .home-about__media-wrap {
    padding-bottom: 0;
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.v3 section.home-process::after,
  .gks-hero__media::after,
  body.v3 .gks-kpis__grid::after,
  body.v3 .modern-cta-section {
    animation: none !important;
  }
  /* Process-section specific overrides */
  body.v3 section.home-process {
    animation: none !important;
  }
  body.v3 .home-process__flow::before {
    transform: scaleX(1) !important;
    transition: none !important;
  }
  body.v3 .home-process__traveler {
    display: none !important;
  }
  body.v3 .home-process.is-revealed .home-process__step:nth-child(n) .home-process__num {
    animation: home-process-pulse 2.6s ease-out infinite !important;
  }
}
