/* =====================================================================
   JPS-iQ Solutions Group — Group Site
   Stylesheet v1.0 (rebuild 2026-04)

   Brand color:  #1A77B3
   Primary font: Avenir Next LT Pro (loaded via @font-face slot below)
   Fallback:     -apple-system, "Helvetica Neue", "Segoe UI", Arial
   ===================================================================== */

/* ---------------------------------------------------------------------
   Font slot — replace src URLs with the licensed Avenir Next LT Pro
   webfonts (woff2) when available. The site renders cleanly on the
   system fallback stack until the licensed files are dropped in.
   --------------------------------------------------------------------- */
@font-face {
  font-family: "Avenir Next LT Pro";
  src: local("Avenir Next LT Pro Regular"),
       local("AvenirNextLTPro-Regular");
  /* url("../fonts/AvenirNextLTPro-Regular.woff2") format("woff2"); */
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next LT Pro";
  src: local("Avenir Next LT Pro Medium"),
       local("AvenirNextLTPro-Medium");
  /* url("../fonts/AvenirNextLTPro-Medium.woff2") format("woff2"); */
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next LT Pro";
  src: local("Avenir Next LT Pro Demi"),
       local("AvenirNextLTPro-Demi");
  /* url("../fonts/AvenirNextLTPro-Demi.woff2") format("woff2"); */
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next LT Pro";
  src: local("Avenir Next LT Pro Bold"),
       local("AvenirNextLTPro-Bold");
  /* url("../fonts/AvenirNextLTPro-Bold.woff2") format("woff2"); */
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------------------
   Design tokens
   --------------------------------------------------------------------- */
:root {
  /* Brand */
  --c-brand:        #1A77B3;
  --c-brand-700:    #155E8E;
  --c-brand-800:    #11456A;
  --c-brand-50:     #EAF3FA;
  --c-brand-100:    #D3E6F4;

  /* Neutrals */
  --c-ink:          #0B1B2B;   /* deep navy — primary text */
  --c-ink-2:        #2A3B4D;   /* muted body */
  --c-ink-3:        #5A6B7D;   /* meta / labels */
  --c-line:         #E2E8EE;   /* hairlines */
  --c-bg:           #FFFFFF;
  --c-bg-alt:       #F5F8FB;
  --c-bg-deep:      #0B1B2B;   /* dark sections */
  --c-bg-deep-2:    #0F2438;

  /* Type */
  --ff-sans: "Avenir Next LT Pro", "Avenir Next", -apple-system,
             BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
             Helvetica, Arial, sans-serif;

  /* Scale */
  --fs-xs:   0.8125rem;  /* 13 */
  --fs-sm:   0.9375rem;  /* 15 */
  --fs-base: 1rem;       /* 16 */
  --fs-md:   1.125rem;   /* 18 */
  --fs-lg:   1.375rem;   /* 22 */
  --fs-xl:   1.75rem;    /* 28 */
  --fs-2xl:  clamp(1.875rem, 2vw + 1rem, 2.625rem);
  --fs-3xl:  clamp(2.25rem, 3vw + 1rem, 3.5rem);
  --fs-4xl:  clamp(2.75rem, 4.5vw + 1rem, 5rem);

  /* Spacing */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Layout */
  --max-w: 1240px;
  --radius: 14px;
  --radius-sm: 8px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --dur:  280ms;
}

/* ---------------------------------------------------------------------
   Reset / base
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--c-brand); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--c-brand-700); }
button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 3px solid var(--c-brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------------------------------------------------------------
   Layout helpers
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
@media (min-width: 768px) { .container { padding: 0 var(--s-6); } }
@media (min-width: 1024px) { .container { padding: 0 var(--s-7); } }

.section { padding: var(--s-9) 0; }
@media (min-width: 1024px) { .section { padding: var(--s-10) 0; } }
.section--tight { padding: var(--s-8) 0; }
.section--alt { background: var(--c-bg-alt); }
.section--deep { background: var(--c-bg-deep); color: #fff; }
.section--deep h1, .section--deep h2, .section--deep h3 { color: #fff; }
.section--deep p { color: rgba(255,255,255,0.78); }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin: 0 0 var(--s-4);
}
.section--deep .eyebrow { color: #67B7E5; }

h1, h2, h3, h4 {
  font-family: var(--ff-sans);
  color: var(--c-ink);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 var(--s-5);
}
h1 { font-size: var(--fs-4xl); letter-spacing: -0.025em; }
h2 { font-size: var(--fs-3xl); letter-spacing: -0.02em; }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p  { margin: 0 0 var(--s-4); color: var(--c-ink-2); font-size: var(--fs-md); }
.lead { font-size: clamp(1.125rem, 0.6vw + 1rem, 1.375rem); color: var(--c-ink-2); }
.kicker { font-size: var(--fs-sm); color: var(--c-ink-3); }

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.875rem 1.375rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform var(--dur) var(--ease),
              background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary {
  background: var(--c-brand);
  color: #fff;
  border-color: var(--c-brand);
}
.btn--primary:hover { background: var(--c-brand-700); border-color: var(--c-brand-700); color: #fff; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line);
}
.btn--ghost:hover { border-color: var(--c-brand); color: var(--c-brand); }
.section--deep .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.25); }
.section--deep .btn--ghost:hover { border-color: #fff; color: #fff; }
.btn--lg { padding: 1.05rem 1.75rem; font-size: var(--fs-base); }

/* ---------------------------------------------------------------------
   Header / Nav
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.site-header.is-scrolled {
  border-color: var(--c-line);
  background: rgba(255,255,255,0.96);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: var(--s-5);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  color: var(--c-ink);
  font-weight: 600;
  font-size: var(--fs-base);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--c-brand);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0;
}
.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 260px;
}
.brand-logo--footer {
  height: 52px;
  max-width: 280px;
}
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name strong { font-weight: 600; color: var(--c-ink); }
.brand-name span  { font-size: var(--fs-xs); color: var(--c-ink-3); font-weight: 500; }
.brand-name--hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--s-6);
  align-items: center;
}
.nav-links a {
  color: var(--c-ink-2);
  font-weight: 500;
  font-size: var(--fs-sm);
}
.nav-links a:hover { color: var(--c-brand); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 2px;
  background: #fff;
}
.lang-switch a {
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  color: var(--c-ink-3);
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.lang-switch a.is-active {
  background: var(--c-brand);
  color: #fff;
}
.lang-switch a:not(.is-active):hover { color: var(--c-brand); }

.nav-toggle {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--c-line);
  background: #fff;
  color: var(--c-ink);
}
.nav-toggle:hover { border-color: var(--c-brand); color: var(--c-brand); }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 76px 0 0 0;
  background: #fff;
  z-index: 49;
  padding: var(--s-6) var(--s-5);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  border-top: 1px solid var(--c-line);
  overflow-y: auto;
}
.nav-drawer.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-drawer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-4); }
.nav-drawer a { display: block; padding: var(--s-3) 0; font-size: var(--fs-md); color: var(--c-ink); font-weight: 500; border-bottom: 1px solid var(--c-line); }
.nav-drawer .btn { margin-top: var(--s-5); width: 100%; justify-content: center; }
@media (min-width: 1024px) { .nav-drawer { display: none; } }

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: var(--s-9) 0 var(--s-9);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(26,119,179,0.12), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, rgba(26,119,179,0.08), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--c-bg-alt) 100%);
  overflow: hidden;
}
@media (min-width: 1024px) { .hero { padding: var(--s-10) 0 var(--s-10); } }

.hero-grid {
  display: grid;
  gap: var(--s-7);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.25fr 1fr; gap: var(--s-9); }
}
.hero h1 {
  margin-top: var(--s-3);
  max-width: 18ch;
}
.hero .lead {
  max-width: 52ch;
  margin-bottom: var(--s-7);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.hero-meta {
  margin-top: var(--s-7);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-5);
  border-top: 1px solid var(--c-line);
  padding-top: var(--s-6);
}
.hero-meta div { font-size: var(--fs-sm); color: var(--c-ink-3); }
.hero-meta strong {
  display: block;
  font-size: var(--fs-lg);
  color: var(--c-ink);
  font-weight: 600;
  margin-bottom: 2px;
}

/* Hero visual: layered glass card */
.hero-visual {
  position: relative;
  aspect-ratio: 5 / 6;
  max-width: 520px;
  margin-left: auto;
  border-radius: 24px;
  background:
    linear-gradient(160deg, #11456A 0%, #1A77B3 60%, #67B7E5 100%);
  box-shadow:
    0 30px 60px -20px rgba(11,27,43,0.35),
    0 8px 20px -10px rgba(11,27,43,0.25);
  overflow: hidden;
  color: #fff;
  padding: var(--s-7);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-visual::before {
  content: "";
  position: absolute; inset: -40% -10% auto auto;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(255,255,255,0.35), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.hero-visual::after {
  content: "";
  position: absolute; left: -20%; bottom: -30%;
  width: 80%; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(255,255,255,0.2), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.hv-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.hv-quote {
  font-size: clamp(1.25rem, 1.2vw + 1rem, 1.6rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #fff;
  margin: var(--s-5) 0 var(--s-6);
}
.hv-attrib { font-size: var(--fs-sm); color: rgba(255,255,255,0.85); }
.hv-attrib strong { color: #fff; font-weight: 600; }

/* ---------------------------------------------------------------------
   Trust strip
   --------------------------------------------------------------------- */
.trust {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: var(--s-6) 0;
  background: #fff;
}
.trust-row {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 768px) { .trust-row { grid-template-columns: auto 1fr; gap: var(--s-7); } }
.trust-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  font-weight: 600;
}
.trust-marks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6) var(--s-7);
  align-items: center;
}
.trust-marks .mark {
  display: inline-flex;
  align-items: center; gap: var(--s-2);
  color: var(--c-ink-2);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: var(--c-bg-alt);
}
.trust-marks .mark::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--c-brand);
}

/* ---------------------------------------------------------------------
   Pillars
   --------------------------------------------------------------------- */
.pillars {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .pillars { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); } }
.pillar {
  padding: var(--s-7) var(--s-6);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--c-line);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.pillar:hover {
  transform: translateY(-2px);
  border-color: var(--c-brand-100);
  box-shadow: 0 12px 30px -16px rgba(11,27,43,0.18);
}
.pillar-num {
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--c-brand-50);
  color: var(--c-brand);
  font-weight: 700;
  align-items: center; justify-content: center;
  margin-bottom: var(--s-5);
  font-size: var(--fs-sm);
}
.pillar h3 { margin-bottom: var(--s-3); }
.pillar p { margin: 0; font-size: var(--fs-base); }

/* Section heading layout */
.section-head {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
  margin-bottom: var(--s-8);
  max-width: 880px;
}
@media (min-width: 1024px) {
  .section-head { grid-template-columns: 1fr; }
}
.section-head .lead { max-width: 56ch; }

/* ---------------------------------------------------------------------
   Method (Strategy → Systems → Operations)
   --------------------------------------------------------------------- */
.method {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .method { grid-template-columns: repeat(3, 1fr); } }
.method-step {
  padding: var(--s-7) var(--s-6);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  position: relative;
}
.method-step .num {
  display: inline-block;
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #67B7E5;
  font-weight: 600;
  margin-bottom: var(--s-4);
}
.method-step h3 { color: #fff; margin-bottom: var(--s-3); font-size: var(--fs-lg); }
.method-step p { color: rgba(255,255,255,0.78); font-size: var(--fs-base); margin: 0; }

/* ---------------------------------------------------------------------
   Business Units
   --------------------------------------------------------------------- */
.bu-grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .bu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bu-grid { grid-template-columns: repeat(3, 1fr); } }

.bu {
  display: flex;
  flex-direction: column;
  padding: var(--s-7) var(--s-6);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.bu::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--c-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.bu:hover {
  border-color: var(--c-brand-100);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(11,27,43,0.18);
}
.bu:hover::after { transform: scaleX(1); }
.bu-tag {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: var(--s-3);
}
.bu h3 { margin-bottom: var(--s-3); font-size: var(--fs-xl); }
.bu p { margin-bottom: var(--s-5); font-size: var(--fs-base); color: var(--c-ink-2); }
.bu-meta {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  font-size: var(--fs-sm);
  color: var(--c-ink-3);
}
.bu-meta .arrow {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  color: var(--c-brand);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.bu:hover .bu-meta .arrow {
  background: var(--c-brand);
  color: #fff;
  border-color: var(--c-brand);
}

/* ---------------------------------------------------------------------
   Industries
   --------------------------------------------------------------------- */
.industries {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .industries { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .industries { grid-template-columns: repeat(4, 1fr); } }
.industry {
  padding: var(--s-6);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--c-line);
  display: flex; flex-direction: column; gap: var(--s-3);
  min-height: 180px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.industry:hover { border-color: var(--c-brand); background: var(--c-brand-50); }
.industry .ico {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--c-brand-50);
  color: var(--c-brand);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: var(--fs-sm);
}
.industry h4 { font-size: var(--fs-md); margin: 0; }
.industry p { font-size: var(--fs-sm); margin: 0; color: var(--c-ink-3); }

/* ---------------------------------------------------------------------
   Founder
   --------------------------------------------------------------------- */
.founder {
  display: grid;
  gap: var(--s-7);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) {
  .founder { grid-template-columns: 1fr 1.25fr; gap: var(--s-9); }
}
.founder-card {
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  background: #fff;
  padding: var(--s-7);
  text-align: center;
}
.founder-photo {
  width: 160px; height: 160px;
  border-radius: 999px;
  margin: 0 auto var(--s-5);
  object-fit: cover;
  display: block;
  border: 3px solid #FFFFFF;
  box-shadow: 0 8px 28px rgba(11, 27, 43, 0.12), 0 0 0 1px var(--c-line);
}
.founder-card h3 { font-size: var(--fs-lg); margin-bottom: var(--s-1); }
.founder-card .role { font-size: var(--fs-sm); color: var(--c-ink-3); margin: 0 0 var(--s-5); }
.founder-card .linkedin {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: var(--fs-sm); font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--c-line);
}
.founder-card .linkedin:hover { border-color: var(--c-brand); }
.founder-quote {
  font-size: clamp(1.25rem, 1vw + 1rem, 1.625rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.45;
  color: var(--c-ink);
  position: relative;
  padding-left: var(--s-6);
}
.founder-quote::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--c-brand);
  border-radius: 2px;
}

/* ---------------------------------------------------------------------
   Insights
   --------------------------------------------------------------------- */
.insights {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .insights { grid-template-columns: repeat(3, 1fr); } }
.insight {
  display: flex;
  flex-direction: column;
  padding: var(--s-6);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  text-decoration: none;
  color: inherit;
}
.insight:hover {
  border-color: var(--c-brand-100);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -18px rgba(11,27,43,0.16);
}
.insight .topic {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: var(--s-3);
}
.insight h4 { font-size: var(--fs-lg); margin-bottom: var(--s-3); }
.insight p { font-size: var(--fs-base); color: var(--c-ink-2); margin: 0 0 var(--s-5); }
.insight .meta {
  margin-top: auto;
  font-size: var(--fs-sm);
  color: var(--c-ink-3);
  display: flex; justify-content: space-between; align-items: center;
}

/* ---------------------------------------------------------------------
   Final CTA
   --------------------------------------------------------------------- */
.cta-final {
  background: linear-gradient(135deg, #0B1B2B 0%, #11456A 60%, #1A77B3 120%);
  color: #fff;
  border-radius: 24px;
  padding: var(--s-9) var(--s-7);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute; inset: -30% -10% auto auto;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(255,255,255,0.18), transparent 70%);
  filter: blur(16px);
}
.cta-final h2 { color: #fff; max-width: 22ch; margin: 0 auto var(--s-5); }
.cta-final p { color: rgba(255,255,255,0.85); max-width: 56ch; margin: 0 auto var(--s-7); }
.cta-final-actions { display: inline-flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; }

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.site-footer {
  background: #0B1B2B;
  color: rgba(255,255,255,0.78);
  padding: var(--s-9) 0 var(--s-7);
  margin-top: var(--s-9);
}
.footer-grid {
  display: grid;
  gap: var(--s-7);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s-7); } }
.footer-grid h5 {
  color: #fff;
  font-size: var(--fs-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 var(--s-4);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-2); }
.footer-grid a { color: rgba(255,255,255,0.78); font-size: var(--fs-sm); }
.footer-grid a:hover { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: var(--fs-sm); max-width: 38ch; }
.footer-legal {
  margin-top: var(--s-8);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-6);
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
}
.footer-legal a { color: rgba(255,255,255,0.7); }
.footer-legal a:hover { color: #fff; }
.footer-entities {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-top: var(--s-6);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
}
@media (min-width: 768px) { .footer-entities { grid-template-columns: repeat(2, 1fr); } }
.footer-entities strong { display: block; color: #fff; font-weight: 600; margin-bottom: 2px; font-size: var(--fs-sm); }

/* ---------------------------------------------------------------------
   Reveal on scroll (progressive enhancement)
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ---------------------------------------------------------------------
   Utility
   --------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-brand); color: #fff;
  padding: 0.6rem 1rem; border-radius: 0 0 8px 8px;
  z-index: 100;
}
.skip-link:focus { left: 12px; }


/* =========================================================================
   LAUNCH FIX PATCH — applied across all BU sites
   ========================================================================= */

/* --- 1. Contact-box ghost buttons on dark gradient --- */
.cta-final .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.04);
}
.cta-final .btn--ghost:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.10);
}
.cta-final .eyebrow { color: #A6D6F0 !important; }

/* --- 2. Header compactness — prevent brand-block wrapping --- */
.site-header .nav { gap: var(--s-5); }
.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: nowrap;
  min-width: 0;
  max-width: 100%;
}
.site-header .brand-logo {
  height: 40px;
  width: auto;
  max-width: 180px;
  flex-shrink: 0;
}
.site-header .brand-name {
  min-width: 0;
  flex-shrink: 1;
}
.site-header .brand-name strong {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 320px;
}
/* Logo itself already says 'JPS-iQ SOLUTIONS' → entity sub-line and
   'part of JPS-iQ Solutions Group' are redundant in the HEADER.
   Both remain visible in the footer and imprint. */
.site-header .brand-name > span { display: none !important; }
.site-header .brand-parent     { display: none !important; }

@media (max-width: 900px) {
  .site-header .brand-name { display: none; }
  .site-header .brand-logo { height: 36px; max-width: 160px; }
}

/* --- 3. Hero partner strip — own row, cleaner styling --- */
.hero-partner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.75rem 0 0;
  padding: 0.55rem 0.9rem;
  background: #FFFFFF;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(11, 27, 43, 0.05);
}
.hero-partner img {
  display: block;
  height: 36px;
  width: auto;
  max-height: 36px;
}
/* Hide the redundant 'PARTNER PROOF' label — the logo is self-explanatory */
.hero-partner .hp-label { display: none; }

/* Ensure hero-badge and hero-partner stack instead of sitting side-by-side */
.hero-badge + .hero-partner,
.hero-partner { display: flex; width: max-content; max-width: 100%; }


/* =========================================================================
   TRUST-STRIP: partner logos on white chips for uniform visual weight
   ========================================================================= */
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5) var(--s-6);
  align-items: center;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(11, 27, 43, 0.04);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.trust-chip:hover {
  box-shadow: 0 4px 14px rgba(11, 27, 43, 0.08);
  transform: translateY(-1px);
}
.trust-chip img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
/* SAP Partner: official logo already has full blue background and built-in padding.
   Render it tight to the chip edge and slightly taller so the wordmark matches
   the visual weight of the other marks. */
.trust-chip--tight { padding: 0; overflow: hidden; }
.trust-chip--tight img { height: 72px; max-width: 130px; }
@media (max-width: 640px) {
  .trust-logos { gap: var(--s-4) var(--s-5); }
  .trust-chip { height: 56px; padding: 8px 12px; }
  .trust-chip img { height: 34px; max-width: 170px; }
  .trust-chip--tight img { height: 56px; max-width: 100px; }
}

/* =========================================================================
   BU-CARD partner credential chip (homepage business-unit grid)
   ========================================================================= */
.bu-partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 var(--s-4);
  padding: 6px 10px;
  min-height: 42px;
  background: #ffffff;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  align-self: flex-start;
}
.bu-partner img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
/* SAP Partner chip with built-in blue background */
.bu-partner--tight { padding: 0; overflow: hidden; min-height: 42px; }
.bu-partner--tight img { height: 42px; max-width: 90px; }

/* ==================== LEADERSHIP SECTION ==================== */
.leadership-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}
.leader-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(10, 40, 80, 0.10);
  border-radius: 20px;
  box-shadow: 0 10px 32px rgba(10, 40, 80, 0.08);
}
.leader-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A77B3 0%, #0F4A72 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Spectral', Georgia, serif;
  font-weight: 600;
  font-size: 44px;
  letter-spacing: 1px;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.20), 0 6px 18px rgba(26,119,179,0.30);
  flex-shrink: 0;
}
.leader-body { min-width: 0; }
.leader-name {
  font-family: 'Spectral', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #0A2850;
  margin: 0 0 6px;
  line-height: 1.2;
}
.leader-role {
  font-size: 15px;
  font-weight: 600;
  color: #1A77B3;
  letter-spacing: 0.3px;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.leader-entity {
  font-size: 14px;
  color: rgba(10, 40, 80, 0.70);
  margin: 0 0 16px;
}
.leader-quote {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(10, 40, 80, 0.90);
  margin: 0 0 18px;
  font-style: italic;
  padding-left: 16px;
  border-left: 3px solid #1A77B3;
}
.leader-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.leader-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(26, 119, 179, 0.08);
  color: #1A77B3;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(26, 119, 179, 0.20);
  transition: background 0.2s ease, color 0.2s ease;
}
.leader-linkedin:hover { background: #1A77B3; color: #ffffff; }
.leader-linkedin::before {
  content: "in";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #0A66C2;
  color: #fff;
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
}
.leader-linkedin:hover::before { background: #ffffff; color: #1A77B3; }
.leader-tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(10, 40, 80, 0.70);
  background: rgba(10, 40, 80, 0.06);
  border-radius: 999px;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .leader-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
    text-align: center;
  }
  .leader-avatar { margin: 0 auto; width: 96px; height: 96px; font-size: 36px; }
  .leader-quote { text-align: left; }
  .leader-meta { justify-content: center; }
}
