/* =================================================================
   ISIMIRI GROUP OF COMPANIES — GLOBAL STYLESHEET
   Premium · Bright · Image-led · 2026 corporate
   ================================================================= */

/* ----- TOKENS ----- */
:root{
  --navy:        #0a2347;
  --navy-deep:   #061731;
  --navy-soft:   #14366b;
  --royal:       #1f54d6;
  --royal-soft:  #4a7af0;
  --royal-tint:  #eaf1ff;
  --green:       #1aa466;
  --green-bright:#23c47a;
  --green-tint:  #e4f8ee;
  --ink:         #0b1220;
  --ink-2:       #1f2937;
  --muted:       #5b6878;
  --muted-2:     #8593a6;
  --line:        #e3e9f2;
  --line-2:      #eef2f8;
  --white:       #ffffff;
  --cream:       #f6f9fd;
  --paper:       #fbfcfe;
  --shadow-sm:   0 1px 2px rgba(11,18,32,.04), 0 1px 1px rgba(11,18,32,.03);
  --shadow-md:   0 8px 24px -8px rgba(10,35,71,.18), 0 2px 6px rgba(10,35,71,.06);
  --shadow-lg:   0 30px 60px -20px rgba(10,35,71,.25), 0 10px 24px -10px rgba(10,35,71,.12);
  --shadow-glow: 0 20px 60px -16px rgba(31,84,214,.35);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-2xl: 48px;

  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);

  --sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Instrument Serif', 'Newsreader', Georgia, serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ----- BASE ----- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body{
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

/* ----- TYPOGRAPHY ----- */
h1,h2,h3,h4{ font-family: var(--sans); color: var(--navy); letter-spacing: -0.02em; line-height: 1.08; margin: 0; font-weight: 700; }
.h-display{ font-size: clamp(40px, 6vw, 78px); letter-spacing: -0.035em; line-height: 1.02; }
.h-1{ font-size: clamp(34px, 4.6vw, 60px); }
.h-2{ font-size: clamp(28px, 3.4vw, 44px); }
.h-3{ font-size: clamp(22px, 2.2vw, 30px); }
.serif-italic{ font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.lead{ font-size: clamp(16px, 1.2vw, 19px); color: var(--muted); max-width: 60ch; line-height: 1.6; }
p{ margin: 0 0 1em; color: var(--ink-2); }
.eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--royal); font-weight: 600;
}
.eyebrow .ico{ display: inline-flex; }
.eyebrow .ico svg{ width: 22px; height: 22px; }
.eyebrow.green{ color: var(--green); }
.eyebrow.white{ color: rgba(255,255,255,.85); }
.eyebrow.white .ico svg path,
.eyebrow.white .ico svg circle{ stroke: rgba(255,255,255,.85); }

/* ----- BUTTONS ----- */
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 600; font-size: 14.5px;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--royal); color: var(--white); box-shadow: 0 12px 30px -10px rgba(31,84,214,.55); }
.btn-primary:hover{ background: #1748be; box-shadow: 0 18px 36px -10px rgba(31,84,214,.65); }
.btn-dark{ background: var(--navy); color: var(--white); }
.btn-dark:hover{ background: var(--navy-deep); }
.btn-green{ background: var(--green); color: var(--white); box-shadow: 0 12px 30px -10px rgba(26,164,102,.5); }
.btn-green:hover{ background: #168a55; }
.btn-ghost{ background: transparent; color: var(--navy); border-color: rgba(10,35,71,.18); }
.btn-ghost:hover{ border-color: var(--navy); background: var(--white); }
.btn-light{ background: rgba(255,255,255,.95); color: var(--navy); }
.btn-light:hover{ background: #fff; }
.btn-outline-white{ background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover{ background: rgba(255,255,255,.12); border-color: #fff; }
.btn .arrow{ transition: transform .25s ease; }
.btn:hover .arrow{ transform: translateX(3px); }
.btn-icon{ width: 14px; height: 14px; }

/* ----- HEADER ----- */
.site-header{
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled{
  background: rgba(255,255,255,.95);
  border-bottom-color: var(--line-2);
  box-shadow: 0 6px 24px -16px rgba(10,35,71,.18);
}
.header-inner{
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand{
  display: flex; align-items: center; gap: 12px;
  color: var(--navy);
}
.brand-mark{
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
}
.brand-mark svg{ width: 40px; height: 40px; }
.brand-text{ display: flex; flex-direction: column; line-height: 1; }
.brand-text .name{ font-weight: 800; font-size: 17px; color: var(--navy); letter-spacing: -0.02em; }
.brand-text .sub{ font-size: 10.5px; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; margin-top: 3px; }

.nav-desktop{ display: flex; align-items: center; gap: 4px; }
.nav-desktop a{
  padding: 10px 14px; border-radius: 999px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: background .2s ease, color .2s ease;
  position: relative;
}
.nav-desktop a:hover{ background: var(--cream); color: var(--navy); }
.nav-desktop a.active{ color: var(--navy); font-weight: 600; }
.nav-desktop a.active::after{
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--green); border-radius: 2px;
}

.header-cta{ display: flex; align-items: center; gap: 10px; }
.wa-btn{
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -8px rgba(26,164,102,.55);
  transition: transform .2s ease;
}
.wa-btn:hover{ transform: translateY(-2px); }
.wa-btn svg{ width: 20px; height: 20px; }

.hamburger{
  display: none;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cream); border: 1px solid var(--line);
  align-items: center; justify-content: center;
}
.hamburger span{
  display: block; width: 18px; height: 2px; background: var(--navy); border-radius: 2px;
  position: relative;
}
.hamburger span::before, .hamburger span::after{
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: transform .3s ease, top .3s ease;
}
.hamburger span::before{ top: -6px; }
.hamburger span::after{ top: 6px; }
.hamburger.open span{ background: transparent; }
.hamburger.open span::before{ top: 0; transform: rotate(45deg); }
.hamburger.open span::after{ top: 0; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu{
  position: fixed; inset: 72px 0 0 0; z-index: 55;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  padding: 32px var(--pad-x) 48px;
  transform: translateY(-12px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  overflow-y: auto;
}
.mobile-menu.open{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu nav{ display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a{
  padding: 14px 4px;
  font-size: 22px; font-weight: 600; color: var(--navy);
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--line-2);
}
.mobile-menu nav a.active{ color: var(--royal); }
.mobile-menu .mm-cta{
  display: flex; gap: 10px; margin-top: 24px;
}
.mobile-menu .mm-contact{
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px; color: var(--muted);
}

/* ----- HERO (homepage slider) ----- */
.hero{
  position: relative;
  min-height: clamp(560px, 86vh, 820px);
  overflow: hidden;
  background: linear-gradient(180deg, #f3f7ff 0%, #ffffff 60%);
}
.hero-bg-shapes{
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-bg-shapes .blob{ position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; }
.hero-bg-shapes .b1{ top: -120px; left: -120px; width: 480px; height: 480px; background: radial-gradient(circle at 30% 30%, #c9dcff 0%, transparent 70%); }
.hero-bg-shapes .b2{ bottom: -150px; right: -140px; width: 520px; height: 520px; background: radial-gradient(circle at 50% 50%, #d5f5e3 0%, transparent 70%); opacity: .6; }
.hero-bg-shapes .arc{
  position: absolute; right: -180px; top: 20%;
  width: 700px; height: 700px; border-radius: 50%;
  border: 1px dashed rgba(31,84,214,.18);
  opacity: .8;
}
.hero-bg-shapes .arc.a2{ right: -120px; top: 28%; width: 580px; height: 580px; border-color: rgba(26,164,102,.18); }

.hero-grid{
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 8vw, 96px);
}
.hero-slide{
  display: none;
  animation: heroIn .9s cubic-bezier(.2,.6,.2,1) both;
}
.hero-slide.active{ display: block; }

.hero-text .eyebrow{ margin-bottom: 22px; }
.hero-text h1{
  font-size: clamp(36px, 5.4vw, 70px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--navy);
  margin-bottom: 22px;
}
.hero-text h1 .accent{ color: var(--green); }
.hero-text h1 .swap{
  display: inline-block;
  background: linear-gradient(90deg, #1f54d6 0%, #1aa466 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-text p{
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--muted); max-width: 56ch;
  margin-bottom: 32px;
}
.hero-cta{ display: flex; gap: 12px; flex-wrap: wrap; }

.hero-meta{
  display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap;
}
.hero-meta .m{ display: flex; flex-direction: column; gap: 4px; }
.hero-meta .num{ font-family: var(--serif); font-style: italic; font-size: 36px; color: var(--navy); letter-spacing: -.02em; }
.hero-meta .lbl{ font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* Hero visual collage */
.hero-visual{
  position: relative;
  height: clamp(420px, 56vw, 620px);
}
.hv-img{
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream);
}
.hv-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.hv-img:hover img{ transform: scale(1.05); }

/* Layout 1 */
.hv-1 .a{
  width: 56%; height: 64%;
  top: 4%; left: 6%;
  border-radius: 28px 28px 90px 28px;
}
.hv-1 .b{
  width: 44%; height: 46%;
  bottom: 4%; right: 4%;
  border-radius: 26px 90px 26px 26px;
}
.hv-1 .c{
  width: 34%; height: 36%;
  bottom: 6%; left: 4%;
  border-radius: 18px 18px 18px 60px;
}
.hv-1 .d{
  width: 36%; height: 30%;
  top: 0; right: 0;
  border-radius: 100px 22px 22px 22px;
}

/* Layout 2 */
.hv-2 .a{
  width: 100%; height: 62%;
  top: 0; left: 0;
  border-radius: 32px 80px 32px 32px;
}
.hv-2 .b{
  width: 48%; height: 36%;
  bottom: 2%; left: 0;
  border-radius: 22px 22px 80px 22px;
}
.hv-2 .c{
  width: 48%; height: 36%;
  bottom: 2%; right: 0;
  border-radius: 22px 22px 22px 80px;
}

/* Layout 3 */
.hv-3 .a{
  width: 60%; height: 100%;
  top: 0; right: 0;
  border-radius: 200px 32px 200px 32px;
}
.hv-3 .b{
  width: 46%; height: 42%;
  top: 6%; left: 2%;
  border-radius: 28px;
}
.hv-3 .c{
  width: 40%; height: 36%;
  bottom: 4%; left: 6%;
  border-radius: 100px 28px 28px 28px;
}

.hv-tag{
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
  font-size: 12px; font-weight: 600; color: var(--navy);
  border: 1px solid var(--line-2);
}
.hv-tag .dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.hv-tag .dot.b{ background: var(--royal); }
.hv-tag.t1{ top: 8%; right: 38%; animation: floaty 4.5s ease-in-out infinite; }
.hv-tag.t2{ bottom: 28%; right: 2%; animation: floaty 5s ease-in-out infinite reverse; }

/* Slider controls */
.hero-controls{
  position: absolute; left: 0; right: 0; bottom: 28px;
  z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: var(--pad-x);
}
.hero-dots{ display: flex; gap: 8px; }
.hero-dots button{
  width: 32px; height: 4px; border-radius: 4px;
  background: rgba(10,35,71,.12); border: none; padding: 0;
  cursor: pointer; transition: background .25s ease, width .25s ease;
}
.hero-dots button.active{ background: var(--navy); width: 56px; }
.hero-nav{ display: flex; gap: 8px; }
.hero-nav button{
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: background .2s ease, transform .2s ease;
}
.hero-nav button:hover{ background: var(--navy); color: #fff; transform: translateY(-2px); }

/* ----- COMMON SECTION ----- */
section{ position: relative; }
.section{
  padding: clamp(64px, 9vw, 128px) 0;
  position: relative;
}
.section-head{
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 32px; align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head h2{ margin: 12px 0 0; }
.section-head .lead{ margin: 0; }

@media (max-width: 880px){
  .section-head{ grid-template-columns: 1fr; align-items: start; }
}

/* ----- PAGE BANNER (inner pages) ----- */
.page-banner{
  position: relative; overflow: hidden;
  padding: clamp(72px, 11vw, 132px) 0 clamp(48px, 6vw, 80px);
  background: linear-gradient(180deg, #eaf1ff 0%, #ffffff 100%);
}
.page-banner::before{
  content: ""; position: absolute; right: -160px; top: -80px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #d4e3ff 0%, transparent 70%);
  filter: blur(20px);
}
.page-banner::after{
  content: ""; position: absolute; left: -120px; bottom: -150px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #cdf1de 0%, transparent 70%);
  filter: blur(20px);
}
.page-banner-inner{ position: relative; z-index: 2; max-width: 880px; }
.crumbs{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--muted); letter-spacing: .04em;
  margin-bottom: 16px;
}
.crumbs a{ color: var(--royal); }
.crumbs svg{ width: 12px; height: 12px; opacity: .5; }
.page-banner h1{
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: var(--navy);
  margin: 0 0 18px;
}
.page-banner h1 .swap{
  background: linear-gradient(90deg, #1f54d6 0%, #1aa466 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-family: var(--serif); font-style: italic; font-weight: 400;
}
.page-banner p{ font-size: clamp(15px, 1.15vw, 18px); color: var(--muted); max-width: 60ch; margin: 0; }

/* page banner image strip */
.banner-strip{
  display: flex; gap: 14px; margin-top: 36px;
  overflow: hidden;
}
.banner-strip .b-img{
  flex: 1; min-width: 0;
  height: 110px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
}
.banner-strip .b-img.tall{ height: 150px; transform: translateY(-20px); }
.banner-strip .b-img img{ width: 100%; height: 100%; object-fit: cover; }
.banner-strip .b-img:nth-child(2){ border-radius: 16px 16px 80px 16px; }
.banner-strip .b-img:nth-child(3){ border-radius: 16px; }
.banner-strip .b-img:nth-child(4){ border-radius: 80px 16px 16px 16px; }

/* ----- WHO WE ARE / SPLIT BAND ----- */
.split-band{
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.split-band.text-left{ grid-template-columns: 1.05fr .95fr; }
.split-band .copy h2{ margin-bottom: 20px; }
.split-band .copy p{ color: var(--muted); }
.split-band .copy .pts{
  margin: 24px 0 32px; padding: 0; list-style: none;
  display: grid; gap: 12px;
}
.split-band .copy .pts li{
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--ink-2);
}
.split-band .copy .pts li::before{
  content: ""; flex: 0 0 22px; height: 22px; border-radius: 50%;
  background: var(--green-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231aa466' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  margin-top: 2px;
}

.collage{
  position: relative;
  aspect-ratio: 4 / 5;
}
.collage .c-img{ position: absolute; overflow: hidden; box-shadow: var(--shadow-md); }
.collage .c-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.collage .c-img:hover img{ transform: scale(1.06); }
.collage .ci-1{ top: 0; left: 0; width: 62%; height: 56%; border-radius: 28px 28px 120px 28px; }
.collage .ci-2{ bottom: 0; right: 0; width: 56%; height: 50%; border-radius: 120px 28px 28px 28px; box-shadow: var(--shadow-lg); }
.collage .ci-3{ bottom: 6%; left: 4%; width: 36%; height: 26%; border-radius: 24px; box-shadow: var(--shadow-md); }
.collage .stat{
  position: absolute; top: 50%; right: -8%;
  background: #fff; padding: 18px 22px; border-radius: 18px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 2px;
}
.collage .stat .n{ font-family: var(--serif); font-style: italic; font-size: 32px; color: var(--navy); line-height: 1; }
.collage .stat .l{ font-size: 11px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }
.collage .ring{
  position: absolute; bottom: -4%; left: -4%;
  width: 80px; height: 80px; border-radius: 50%;
  border: 1.5px dashed var(--royal); opacity: .4;
}

/* ----- BUSINESSES SECTION (image-led, not cards) ----- */
.biz-stack{ display: flex; flex-direction: column; gap: clamp(72px, 9vw, 128px); }
.biz-row{
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 5vw, 72px); align-items: center;
  position: relative;
}
.biz-row.reverse{ grid-template-columns: .9fr 1.1fr; direction: rtl; }
.biz-row.reverse > *{ direction: ltr; }
.biz-row .biz-num{
  font-family: var(--serif); font-style: italic;
  color: var(--royal-tint); font-size: 180px;
  line-height: 1; position: absolute;
  top: -40px; left: -10px; z-index: 0; pointer-events: none;
}
.biz-row.green .biz-num{ color: var(--green-tint); }
.biz-row .biz-copy{ position: relative; z-index: 2; }
.biz-row .biz-copy .tag{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--royal-tint); color: var(--royal);
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  margin-bottom: 18px;
}
.biz-row.green .biz-copy .tag{ background: var(--green-tint); color: var(--green); }
.biz-row.cyan .biz-copy .tag{ background: #e3f4fb; color: #0e87b8; }
.biz-row .biz-copy h3{
  font-size: clamp(28px, 3.3vw, 44px);
  margin-bottom: 16px; color: var(--navy);
}
.biz-row .biz-copy .italic-line{
  font-family: var(--serif); font-style: italic;
  color: var(--green); font-size: 18px;
  margin-bottom: 14px;
}
.biz-row.cyan .biz-copy .italic-line{ color: #0e87b8; }
.biz-row .biz-copy p{ color: var(--muted); margin-bottom: 22px; max-width: 52ch; }
.biz-row .biz-copy .biz-pts{
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px;
  margin: 0 0 28px; padding: 0; list-style: none;
}
.biz-row .biz-copy .biz-pts li{
  font-size: 13.5px; color: var(--ink-2); position: relative; padding-left: 16px;
}
.biz-row .biz-copy .biz-pts li::before{
  content: ""; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--royal);
}
.biz-row.green .biz-copy .biz-pts li::before{ background: var(--green); }
.biz-row.cyan .biz-copy .biz-pts li::before{ background: #0e87b8; }

.biz-visual{
  position: relative; aspect-ratio: 5 / 4;
}
.biz-visual .v1{
  position: absolute; inset: 0;
  border-radius: 32px 120px 32px 120px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.biz-visual.green .v1{ border-radius: 120px 32px 120px 32px; }
.biz-visual.cyan .v1{ border-radius: 32px 32px 120px 32px; }
.biz-visual .v1 img{ width: 100%; height: 100%; object-fit: cover; }
.biz-visual .v2{
  position: absolute; width: 42%; height: 50%;
  bottom: -8%; right: -6%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.biz-visual.reverse-stack .v2{ right: auto; left: -6%; }
.biz-visual .v2 img{ width: 100%; height: 100%; object-fit: cover; }
.biz-visual .badge{
  position: absolute; top: -18px; left: -18px;
  background: #fff; padding: 12px 16px; border-radius: 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line-2);
  font-size: 12.5px; font-weight: 600; color: var(--navy);
}
.biz-visual .badge .ic{
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--royal-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--royal);
}
.biz-visual.green .badge .ic{ background: var(--green-tint); color: var(--green); }
.biz-visual.cyan .badge .ic{ background: #e3f4fb; color: #0e87b8; }

/* ----- VALUES (flowing) ----- */
.values-flow{
  position: relative;
  padding: 40px 0;
}
.values-flow .v-row{
  display: grid; grid-template-columns: 80px 1.1fr 1fr;
  align-items: center;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-2);
  position: relative;
}
.values-flow .v-row:last-child{ border-bottom: none; }
.values-flow .v-row .v-no{
  font-family: var(--serif); font-style: italic;
  font-size: 56px; color: var(--royal); opacity: .9;
  line-height: 1;
}
.values-flow .v-row:nth-child(even) .v-no{ color: var(--green); }
.values-flow .v-row .v-name{
  font-size: clamp(22px, 2.2vw, 32px); font-weight: 700;
  color: var(--navy); letter-spacing: -0.02em;
}
.values-flow .v-row .v-name .ital{ font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--green); }
.values-flow .v-row:nth-child(even) .v-name .ital{ color: var(--royal); }
.values-flow .v-row .v-desc{ color: var(--muted); font-size: 15px; }
.values-flow .v-row .v-img{
  position: absolute; right: -8px; top: 50%; transform: translateY(-50%);
  width: 110px; height: 110px; border-radius: 22px;
  overflow: hidden; opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.values-flow .v-row:hover .v-img{ opacity: 1; transform: translateY(-50%) translateX(0); }
.values-flow .v-row .v-img img{ width: 100%; height: 100%; object-fit: cover; }

/* ----- IMPACT (image collage + stats) ----- */
.impact-grid{
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}
.impact-visual{
  position: relative; min-height: 540px;
}
.impact-visual .iv{
  position: absolute; overflow: hidden; box-shadow: var(--shadow-md);
}
.impact-visual .iv img{ width: 100%; height: 100%; object-fit: cover; }
.impact-visual .iv-1{ top: 0; left: 0; width: 58%; height: 44%; border-radius: 28px 28px 28px 90px; }
.impact-visual .iv-2{ top: 0; right: 0; width: 38%; height: 30%; border-radius: 90px 28px 28px 28px; }
.impact-visual .iv-3{ top: 32%; right: 0; width: 38%; height: 32%; border-radius: 28px; }
.impact-visual .iv-4{ bottom: 0; left: 4%; width: 54%; height: 50%; border-radius: 28px 90px 28px 28px; }
.impact-visual .iv-5{ bottom: 0; right: 0; width: 38%; height: 32%; border-radius: 28px 28px 90px 28px; }

.impact-list{ display: flex; flex-direction: column; gap: 16px; }
.impact-list .il{
  display: grid; grid-template-columns: 56px 1fr auto;
  align-items: center; gap: 18px;
  padding: 20px 22px;
  background: #fff; border: 1px solid var(--line-2); border-radius: 18px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.impact-list .il:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--line); }
.impact-list .il .ic{
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--royal-tint); color: var(--royal);
  display: flex; align-items: center; justify-content: center;
}
.impact-list .il:nth-child(2n) .ic{ background: var(--green-tint); color: var(--green); }
.impact-list .il .t{ font-weight: 700; color: var(--navy); font-size: 16px; letter-spacing: -0.01em; }
.impact-list .il .d{ font-size: 13px; color: var(--muted); margin-top: 2px; }
.impact-list .il .n{
  font-family: var(--serif); font-style: italic; font-size: 28px; color: var(--navy);
}

/* Stats bar */
.stats-strip{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy);
  border-radius: var(--r-xl);
  overflow: hidden;
  color: #fff;
  position: relative;
}
.stats-strip::before{
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(31,84,214,.5) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(26,164,102,.4) 0%, transparent 50%);
  pointer-events: none;
}
.stats-strip .stat-cell{
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative; z-index: 2;
}
.stats-strip .stat-cell:last-child{ border-right: none; }
.stats-strip .stat-cell .n{
  font-family: var(--serif); font-style: italic; font-size: clamp(40px, 4.4vw, 64px);
  color: #fff; line-height: 1; letter-spacing: -0.02em;
}
.stats-strip .stat-cell .n .pct{ color: var(--green-bright); font-style: normal; font-family: var(--sans); font-size: .6em; vertical-align: super; }
.stats-strip .stat-cell .l{
  font-size: 12.5px; color: rgba(255,255,255,.7);
  margin-top: 10px; letter-spacing: .04em;
}

/* ----- PEOPLE ----- */
.people-grid{
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 4vw, 56px); align-items: center;
}
.people-visual{ position: relative; aspect-ratio: 5/4; }
.people-visual .pv{
  position: absolute; overflow: hidden; box-shadow: var(--shadow-md);
}
.people-visual .pv img{ width: 100%; height: 100%; object-fit: cover; }
.people-visual .pv1{ top: 0; left: 0; width: 64%; height: 60%; border-radius: 28px 120px 28px 28px; }
.people-visual .pv2{ top: 10%; right: 0; width: 32%; height: 38%; border-radius: 28px 28px 28px 80px; }
.people-visual .pv3{ bottom: 0; left: 6%; width: 44%; height: 38%; border-radius: 28px 28px 80px 28px; }
.people-visual .pv4{ bottom: 0; right: 0; width: 50%; height: 46%; border-radius: 80px 28px 28px 28px; }

.culture-list{ display: grid; gap: 14px; margin-top: 28px; }
.culture-list .cu{
  display: flex; gap: 14px; align-items: center;
  padding: 14px 16px;
  background: var(--cream); border-radius: 14px;
  border-left: 3px solid var(--royal);
}
.culture-list .cu:nth-child(2n){ border-left-color: var(--green); }
.culture-list .cu .ic{
  width: 36px; height: 36px; border-radius: 10px;
  background: #fff; color: var(--royal);
  display: flex; align-items: center; justify-content: center;
}
.culture-list .cu:nth-child(2n) .ic{ color: var(--green); }
.culture-list .cu .nm{ font-weight: 600; color: var(--navy); font-size: 14.5px; }

/* ----- CLIENTS ----- */
.clients-grid{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.client-cell{
  display: flex; flex-direction: column; gap: 14px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 22px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  position: relative; overflow: hidden;
}
.client-cell:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.client-cell .img{
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
}
.client-cell .img img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.client-cell:hover .img img{ transform: scale(1.06); }
.client-cell h4{
  font-size: 16px; color: var(--navy);
  letter-spacing: -0.01em; margin: 0;
}
.client-cell p{ font-size: 13px; color: var(--muted); margin: 0; }

/* ----- PARTNERS NETWORK ----- */
.partners-network{
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.partner-node{
  position: relative;
  padding: 22px 22px;
  background: #fff; border: 1px solid var(--line-2);
  border-radius: 18px;
  display: flex; align-items: center; gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.partner-node:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--royal-soft); }
.partner-node .pn-ic{
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--royal-tint); color: var(--royal);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 48px;
}
.partner-node:nth-child(3n) .pn-ic{ background: var(--green-tint); color: var(--green); }
.partner-node:nth-child(3n+1) .pn-ic{ background: #fdf3e7; color: #d28321; }
.partner-node .pn-t{ font-weight: 700; color: var(--navy); font-size: 14.5px; }
.partner-node .pn-s{ font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ----- LOOKING AHEAD / TIMELINE ----- */
.roadmap{
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 40px 0 20px;
}
.roadmap::before{
  content: ""; position: absolute; left: 5%; right: 5%; top: 80px;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(31,84,214,.4) 0 8px, transparent 8px 16px);
}
.rm-node{
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 14px;
  position: relative;
}
.rm-node .ring{
  width: 80px; height: 80px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--royal);
  box-shadow: 0 0 0 8px #fff, var(--shadow-md);
  border: 1.5px solid var(--royal-tint);
  position: relative; z-index: 2;
  margin-bottom: 18px;
}
.rm-node:nth-child(2n) .ring{ color: var(--green); border-color: var(--green-tint); }
.rm-node .ring svg{ width: 30px; height: 30px; }
.rm-node h4{ font-size: 15px; color: var(--navy); margin: 0 0 6px; letter-spacing: -0.01em; }
.rm-node p{ font-size: 12.5px; color: var(--muted); margin: 0; }
.rm-node .ph{
  font-family: var(--serif); font-style: italic; font-size: 13px;
  color: var(--royal); margin-bottom: 8px;
}
.rm-node:nth-child(2n) .ph{ color: var(--green); }

/* ----- CTA BAND ----- */
.cta-band{
  position: relative; overflow: hidden;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, #0a2347 0%, #1f54d6 60%, #1aa466 130%);
  color: #fff;
  padding: clamp(48px, 6vw, 88px);
}
.cta-band::before{
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(35,196,122,.35) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(74,122,240,.4) 0%, transparent 50%);
}
.cta-band::after{
  content: ""; position: absolute; right: -120px; bottom: -160px;
  width: 480px; height: 480px; border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,.18);
}
.cta-band-inner{ position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: center; }
.cta-band h2{
  color: #fff; font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.03em; line-height: 1.05;
  margin: 0 0 16px;
}
.cta-band h2 .ital{ font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--green-bright); }
.cta-band p{ color: rgba(255,255,255,.78); max-width: 50ch; margin: 0 0 28px; }
.cta-band .actions{ display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .side{
  display: flex; flex-direction: column; gap: 14px;
}
.cta-band .side .row{
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  font-size: 13.5px;
}
.cta-band .side .row .ic{
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.12); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 36px;
}
.cta-band .side .row .l{ color: rgba(255,255,255,.6); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; }
.cta-band .side .row .v{ color: #fff; font-weight: 600; }

/* ----- FOOTER ----- */
.site-footer{
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding-top: clamp(64px, 8vw, 96px);
  position: relative; overflow: hidden;
}
.site-footer::before{
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
}
.site-footer .fwave{
  position: absolute; top: -1px; left: 0; right: 0;
  pointer-events: none;
}
.footer-grid{
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 48px;
  position: relative; z-index: 2;
}
.footer-grid h5{
  color: #fff; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  margin: 0 0 18px; font-weight: 600;
}
.footer-grid .f-brand{ display: flex; align-items: center; gap: 12px; color: #fff; margin-bottom: 16px; }
.footer-grid .f-brand .brand-text .name{ color: #fff; }
.footer-grid .f-brand .brand-text .sub{ color: rgba(255,255,255,.4); }
.footer-grid .f-desc{ font-size: 14px; line-height: 1.65; margin: 0 0 22px; color: rgba(255,255,255,.65); }
.footer-grid .socials{
  display: flex; gap: 10px;
}
.footer-grid .socials a{
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.footer-grid .socials a:hover{ background: var(--royal); transform: translateY(-2px); }
.footer-grid .socials a svg{ width: 16px; height: 16px; }
.footer-grid ul{ list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid ul a{
  color: rgba(255,255,255,.65); font-size: 14px;
  transition: color .2s ease;
}
.footer-grid ul a:hover{ color: #fff; }
.footer-grid .contact-list{ display: grid; gap: 14px; }
.footer-grid .contact-list .ci{ display: flex; gap: 12px; align-items: flex-start; }
.footer-grid .contact-list .ci .ic{
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,.06); color: var(--green-bright);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 30px;
}
.footer-grid .contact-list .ci .ic svg{ width: 14px; height: 14px; }
.footer-grid .contact-list .ci .l{ font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.footer-grid .contact-list .ci .v{ color: #fff; font-size: 13.5px; line-height: 1.5; }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,.5);
  flex-wrap: wrap; gap: 12px;
  position: relative; z-index: 2;
}

/* ----- ANIMATIONS ----- */
@keyframes heroIn {
  from{ opacity: 0; transform: translateY(20px); filter: blur(6px); }
  to  { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes floaty {
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}
@keyframes slowPulse {
  0%,100%{ transform: scale(1); opacity: .6; }
  50%{ transform: scale(1.04); opacity: .9; }
}

[data-reveal]{ opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.6,.2,1); }
[data-reveal].in{ opacity: 1; transform: translateY(0); }
[data-reveal][data-d="1"]{ transition-delay: .1s; }
[data-reveal][data-d="2"]{ transition-delay: .2s; }
[data-reveal][data-d="3"]{ transition-delay: .3s; }
[data-reveal][data-d="4"]{ transition-delay: .4s; }

/* ----- TECHNOLOGIES PAGE specific ----- */
.svc-band{
  display: grid; grid-template-columns: 1.05fr 1.1fr;
  gap: clamp(28px, 4vw, 64px); align-items: center;
}
.svc-band.flip{ grid-template-columns: 1.1fr 1.05fr; }
.svc-band .svc-img{
  position: relative; aspect-ratio: 5/4;
}
.svc-band .svc-img .a{
  position: absolute; inset: 0; overflow: hidden;
  border-radius: 28px 120px 28px 120px;
  box-shadow: var(--shadow-lg);
}
.svc-band .svc-img .a img{ width: 100%; height: 100%; object-fit: cover; }
.svc-band .svc-img .b{
  position: absolute; bottom: -8%; left: -6%;
  width: 42%; height: 46%;
  border-radius: 26px;
  overflow: hidden; box-shadow: var(--shadow-md);
  border: 6px solid #fff;
}
.svc-band .svc-img .b img{ width: 100%; height: 100%; object-fit: cover; }
.svc-band .svc-copy h3{ font-size: clamp(26px, 3vw, 38px); margin-bottom: 14px; }
.svc-band .svc-copy .ital{ font-family: var(--serif); font-style: italic; color: var(--green); font-size: 18px; margin-bottom: 14px; display: inline-block; }
.svc-band .svc-copy p{ color: var(--muted); margin-bottom: 22px; }
.svc-list{
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px;
  list-style: none; padding: 0; margin: 0;
}
.svc-list li{ font-size: 14px; color: var(--ink-2); display: flex; gap: 10px; align-items: flex-start; }
.svc-list li::before{
  content: ""; flex: 0 0 18px; height: 18px; border-radius: 50%;
  margin-top: 2px;
  background: var(--royal-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231f54d6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.svc-list.green li::before{
  background-color: var(--green-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231aa466' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}
.svc-list.cyan li::before{
  background-color: #e3f4fb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230e87b8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

/* ----- CONTACT page ----- */
.contact-grid{
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.contact-form{
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px);
}
.contact-form h3{ margin: 0 0 6px; font-size: 26px; }
.contact-form .sub{ font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.field{ margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.field label{ font-size: 12px; color: var(--muted); letter-spacing: .04em; font-weight: 600; }
.field input, .field select, .field textarea{
  font: inherit; padding: 14px 16px;
  border-radius: 12px; border: 1px solid var(--line);
  background: #fff; color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--royal); box-shadow: 0 0 0 4px rgba(31,84,214,.12);
}
.field textarea{ min-height: 130px; resize: vertical; }
.field.row{ flex-direction: row; gap: 14px; }
.field.row > *{ flex: 1; }
.field-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-info{ display: flex; flex-direction: column; gap: 16px; }
.contact-info .ci-row{
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px;
  background: #fff; border: 1px solid var(--line-2);
  border-radius: 18px;
}
.contact-info .ci-row .ic{
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--royal-tint); color: var(--royal);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 48px;
}
.contact-info .ci-row:nth-child(2n) .ic{ background: var(--green-tint); color: var(--green); }
.contact-info .ci-row .l{ font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.contact-info .ci-row .v{ color: var(--navy); font-weight: 600; font-size: 15px; line-height: 1.5; margin-top: 4px; }

/* ----- MOBILE ----- */
@media (max-width: 980px){
  .header-cta .btn{ display: none; }
  .nav-desktop{ display: none; }
  .hamburger{ display: inline-flex; }

  .hero-grid{ grid-template-columns: 1fr; gap: 32px; padding: 32px 0 80px; }
  .hero-text h1{ font-size: clamp(28px, 8vw, 38px); }
  .hero-text p{ font-size: 14.5px; }
  .hero-meta{ gap: 18px; margin-top: 24px; }
  .hero-meta .num{ font-size: 26px; }
  .hero-visual{ height: 380px; order: -1; }
  .hero-controls{ bottom: 14px; }

  .split-band{ grid-template-columns: 1fr; }
  .split-band .collage{ order: -1; }
  .collage{ aspect-ratio: 1/1; max-width: 460px; margin: 0 auto; }
  .collage .stat{ right: 0; }

  .biz-row, .biz-row.reverse{ grid-template-columns: 1fr; direction: ltr; gap: 24px; }
  .biz-row .biz-visual{ order: -1; }
  .biz-row .biz-copy .biz-pts{ grid-template-columns: 1fr 1fr; }
  .biz-row .biz-num{ font-size: 120px; top: -20px; }

  .impact-grid{ grid-template-columns: 1fr; }
  .impact-visual{ min-height: 360px; }

  .stats-strip{ grid-template-columns: 1fr 1fr; }
  .stats-strip .stat-cell:nth-child(2){ border-right: none; }
  .stats-strip .stat-cell{ border-bottom: 1px solid rgba(255,255,255,.08); }

  .people-grid{ grid-template-columns: 1fr; }
  .clients-grid{ grid-template-columns: 1fr 1fr; }
  .partners-network{ grid-template-columns: 1fr 1fr; }
  .roadmap{ grid-template-columns: 1fr 1fr; gap: 32px 16px; padding-top: 16px; }
  .roadmap::before{ display: none; }

  .cta-band-inner{ grid-template-columns: 1fr; gap: 24px; }
  .cta-band{ padding: 36px 24px; border-radius: 28px; }

  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 32px; }

  .values-flow .v-row{ grid-template-columns: 56px 1fr; gap: 16px; padding: 22px 0; }
  .values-flow .v-row .v-desc{ grid-column: 1 / -1; padding-left: 72px; font-size: 13.5px; }
  .values-flow .v-row .v-img{ display: none; }
  .values-flow .v-row .v-no{ font-size: 38px; }
  .values-flow .v-row .v-name{ font-size: 19px; }

  .svc-band, .svc-band.flip{ grid-template-columns: 1fr; gap: 24px; }
  .svc-band .svc-img{ order: -1; aspect-ratio: 5/4; }
  .svc-list{ grid-template-columns: 1fr; }

  .contact-grid{ grid-template-columns: 1fr; }
  .field-grid{ grid-template-columns: 1fr; }
  .banner-strip{ gap: 8px; }
  .banner-strip .b-img{ height: 80px; }
  .banner-strip .b-img.tall{ height: 100px; transform: none; }
}

@media (max-width: 560px){
  :root{ --pad-x: 18px; }
  .hero-text h1{ font-size: 32px; }
  .hero-visual{ height: 320px; }
  .footer-grid{ grid-template-columns: 1fr; }
  .clients-grid{ grid-template-columns: 1fr; }
  .partners-network{ grid-template-columns: 1fr; }
  .roadmap{ grid-template-columns: 1fr; }
  .stats-strip{ grid-template-columns: 1fr; }
  .stats-strip .stat-cell{ border-right: none; }
  .biz-row .biz-copy .biz-pts{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .banner-strip{ display: none; }
}
