/* ==========================================================================
   Infinite Option Web Solution - Digital Marketing Service Page
   assets/css/digital-marketing.css

   Theme : LIGHT
   Brand : #8E09D8
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* brand */
  --io-brand:        #8E09D8;
  --io-brand-dark:   #6d06a6;
  --io-brand-light:  #b44bec;
  --io-brand-tint:   #f6ecfd;
  --io-brand-tint-2: #efe0fb;

  /* light surfaces */
  --io-bg:           #ffffff;
  --io-bg-soft:      #f8f5fc;
  --io-bg-card:      #ffffff;
  --io-bg-elev:      #fbf8fe;

  /* ink */
  --io-text:         #171325;
  --io-heading:      #100c1c;
  --io-muted:        #5c5570;
  --io-dim:          #8a839c;

  --io-line:         rgba(23, 19, 37, .10);
  --io-line-strong:  rgba(23, 19, 37, .18);

  --io-shadow-sm:    0 2px 10px rgba(23, 19, 37, .05);
  --io-shadow:       0 14px 40px rgba(23, 19, 37, .08);
  --io-shadow-brand: 0 16px 40px rgba(142, 9, 216, .18);

  --io-font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --io-font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;

  --io-max:          1320px;
  --io-gutter:       clamp(20px, 4vw, 64px);
  --io-radius:       22px;
  --io-radius-sm:    14px;

  --io-ease:         cubic-bezier(.22, 1, .36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  /* NOTE: no `scroll-behavior: smooth` here on purpose.
     It fights scroll-linked animations and is a major cause of stutter. */
}

body {
  margin: 0;
  background: var(--io-bg);
  color: var(--io-text);
  font-family: var(--io-font-body);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* `hidden` makes body a scroll container, which stops `position: sticky`
   from working. `clip` contains the same overflow without that side effect. */
@supports (overflow: clip) {
  body { overflow-x: clip; }
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--io-font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--io-heading);
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; }

::selection { background: var(--io-brand); color: #fff; }

::-webkit-scrollbar        { width: 10px; }
::-webkit-scrollbar-track  { background: var(--io-bg-soft); }
::-webkit-scrollbar-thumb  { background: #d9cfe6; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--io-brand); }

/* --------------------------------------------------------------------------
   3. Layout Helpers
   -------------------------------------------------------------------------- */
.io-wrap {
  width: 100%;
  max-width: var(--io-max);
  margin-inline: auto;
  padding-inline: var(--io-gutter);
}

.io-section {
  position: relative;
  padding-block: clamp(76px, 9vw, 140px);
}

.io-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--io-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--io-brand);
  padding: 8px 16px;
  border: 1px solid var(--io-brand-tint-2);
  border-radius: 100px;
  background: var(--io-brand-tint);
  margin-bottom: 22px;
}

.io-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--io-brand);
}

.io-title {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  margin-bottom: .35em;
}

.io-title em {
  font-style: normal;
  color: var(--io-brand);
}

.io-lead {
  color: var(--io-muted);
  font-size: clamp(1rem, 1.25vw, 1.115rem);
  max-width: 62ch;
}

.io-head-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 74px);
}

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

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.io-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 34px;
  border: 0;
  border-radius: 100px;
  font-family: var(--io-font-display);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color .35s var(--io-ease), box-shadow .35s var(--io-ease);
}

.io-btn span,
.io-btn i { position: relative; z-index: 2; }

.io-btn i { display: grid; place-items: center; transition: transform .4s var(--io-ease); }
.io-btn:hover i { transform: rotate(45deg); }

.io-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .45s var(--io-ease);
}

.io-btn:hover::after { transform: scaleX(1); transform-origin: left center; }

.io-btn--primary {
  background: var(--io-brand);
  color: #fff;
  box-shadow: var(--io-shadow-brand);
}
.io-btn--primary::after { background: var(--io-brand-dark); }

.io-btn--ghost {
  background: #fff;
  color: var(--io-heading);
  box-shadow: inset 0 0 0 1px var(--io-line-strong);
}
.io-btn--ghost::after { background: var(--io-brand); }
.io-btn--ghost:hover  { color: #fff; }

.io-btn--light {
  background: var(--io-brand-tint);
  color: var(--io-brand);
}
.io-btn--light::after { background: var(--io-brand); }
.io-btn--light:hover  { color: #fff; }

/* --------------------------------------------------------------------------
   5. HERO - full screen banner, scroll zoom, content bottom-left
   -------------------------------------------------------------------------- */
.io-hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #14101c;
}

/* The zooming layer. Only `transform` is animated -> stays on the compositor. */
.io-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}

.io-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Black overlay - keeps the white hero type readable over the photograph */
.io-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top,   rgba(0, 0, 0, .90) 0%, rgba(0, 0, 0, .68) 38%, rgba(0, 0, 0, .34) 72%, rgba(0, 0, 0, .42) 100%),
    linear-gradient(to right, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .34) 52%, rgba(0, 0, 0, .18) 100%);
}

.io-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-bottom: clamp(54px, 8vh, 104px);
  will-change: transform, opacity;
}

.io-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: flex-end;
}

@media (max-width: 991px) { .io-hero__grid { grid-template-columns: 1fr; } }

/* breadcrumb */
.io-hero__crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--io-font-display);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 24px;
}

.io-hero__crumb b { color: var(--io-brand-light); font-weight: 600; }
.io-hero__crumb span { opacity: .45; }

/* H1 - masked line reveal */
.io-hero__title {
  font-size: 66px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0 0 18px;
  max-width: 22ch;
  color: #fff;
}

.io-hero__title .io-line { display: block; overflow: hidden; padding-bottom: .06em; }

/* The line reveal is a CSS animation, NOT a GSAP tween, on purpose.
   `animation-fill-mode: both` means the end state is `transform: none`, so the
   headline is guaranteed visible once the animation finishes - even if GSAP is
   blocked, cached stale, or throws. Nothing in JS can leave the H1 hidden. */
.io-hero__title .io-line > span {
  display: block;
  animation: ioLineUp .95s var(--io-ease) both;
}

.io-hero__title .io-line:nth-child(2) > span { animation-delay: .13s; }

@keyframes ioLineUp {
  from { transform: translateY(110%); }
  to   { transform: none; }
}
.io-hero__title mark { background: none; color: var(--io-brand-light); }

/* sub-heading - a full sentence, so it uses the body face for readability */
.io-hero__sub {
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, .82);
  margin: 0 0 32px;
  max-width: 58ch;
}

.io-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
}

.io-hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--io-font-display);
  font-weight: 500;
  color: #fff;
}

.io-hero__phone i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  transition: background .3s var(--io-ease), color .3s var(--io-ease), border-color .3s var(--io-ease);
}

.io-hero__phone:hover i { background: var(--io-brand); border-color: var(--io-brand); color: #fff; }
.io-hero__phone small { display: block; font-size: 11px; color: rgba(255, 255, 255, .6); letter-spacing: .12em; text-transform: uppercase; }

/* side stats */
.io-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 26px 30px;
  border-radius: var(--io-radius);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-width: 232px;
}

@media (max-width: 991px) {
  .io-hero__stats { flex-direction: row; flex-wrap: wrap; gap: 16px 32px; min-width: 0; padding: 20px 22px; }
}

.io-hero__stat b {
  display: block;
  font-family: var(--io-font-display);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1;
  color: var(--io-brand-light);
}

/* `> span` on purpose: the counting number is also a <span>, but it sits
   inside the <b>. An unscoped `.io-hero__stat span` would restyle it too. */
.io-hero__stat > span {
  font-size: 15px;
  letter-spacing: .06em;
  line-height: 1.45;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
}

/* --------------------------------------------------------------------------
   6. Services
   -------------------------------------------------------------------------- */
.io-services { background: var(--io-bg-soft); }

.io-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}

.io-service {
  position: relative;
  padding: 38px 32px 34px;
  border-radius: var(--io-radius);
  background: #fff;
  box-shadow: var(--io-shadow-sm);
  overflow: hidden;
  transition: transform .4s var(--io-ease), box-shadow .4s var(--io-ease);
}

.io-service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--io-brand-tint), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--io-ease);
}

.io-service > * { position: relative; z-index: 1; }

.io-service:hover { transform: translateY(-7px); box-shadow: var(--io-shadow); }
.io-service:hover::before { opacity: 1; }

.io-service__no {
  position: absolute;
  top: 26px;
  right: 30px;
  z-index: 1;
  font-family: var(--io-font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--io-dim);
}

.io-service:hover .io-service__no { color: var(--io-brand); }

.io-service__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: var(--io-brand-tint);
  color: var(--io-brand);
  font-size: 24px;
  transition: transform .4s var(--io-ease), background .4s var(--io-ease), color .4s var(--io-ease);
}

.io-service:hover .io-service__icon { transform: rotate(-8deg); background: var(--io-brand); color: #fff; }

.io-service h3 { font-size: 1.3rem; margin-bottom: .5em; }
.io-service p  { color: var(--io-muted); font-size: 15px; margin-bottom: 20px; }
.io-service p:last-child { margin-bottom: 0; }   /* cards without a "learn more" link */

.io-service__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--io-font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--io-brand);
}

.io-service__link i { transition: transform .35s var(--io-ease); }
.io-service:hover .io-service__link i { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   11. Audience (parallax band)
   -------------------------------------------------------------------------- */
.io-audience { position: relative; overflow: hidden; background: var(--io-bg); }

.io-audience__bg {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  will-change: transform;
}

.io-audience__bg img { width: 100%; height: 100%; object-fit: cover; }

.io-audience__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255, 255, 255, .97) 34%, rgba(255, 255, 255, .82) 62%, rgba(255, 255, 255, .55));
}

.io-audience .io-wrap { position: relative; z-index: 2; }
.io-audience__box { max-width: 640px; }
.io-audience__meters { display: grid; gap: 24px; margin-top: 38px; max-width: 560px; }

.io-meter__top {
  display: flex;
  justify-content: space-between;
  font-family: var(--io-font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--io-heading);
  margin-bottom: 10px;
}

.io-meter__top em { font-style: normal; color: var(--io-brand); }

.io-meter__rail { height: 6px; border-radius: 6px; background: var(--io-brand-tint-2); overflow: hidden; }

.io-meter__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--io-brand), var(--io-brand-light));
  transition: width 1.3s var(--io-ease);
}

/* --------------------------------------------------------------------------
   12. Process
   -------------------------------------------------------------------------- */
.io-process { background: var(--io-bg-soft); }

.io-process__list { border-top: 1px solid var(--io-line); }

.io-step {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr 1.25fr;
  gap: clamp(18px, 4vw, 56px);
  align-items: center;
  padding: clamp(26px, 3.6vw, 40px) clamp(8px, 2vw, 24px);
  border-bottom: 1px solid var(--io-line);
  overflow: hidden;
  transition: background .4s var(--io-ease), padding-inline .4s var(--io-ease);
}

@media (max-width: 800px) {
  .io-step { grid-template-columns: 64px 1fr; }
  .io-step p { grid-column: 1 / -1; }
}

.io-step:hover { background: #fff; padding-inline: clamp(18px, 3vw, 40px); }

.io-step__no {
  font-family: var(--io-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--io-brand-light);
  transition: color .4s var(--io-ease);
}

.io-step:hover .io-step__no { color: var(--io-brand); -webkit-text-stroke-color: transparent; }

.io-step h3 { font-size: clamp(1.3rem, 2.3vw, 1.8rem); margin: 0; }
.io-step p  { color: var(--io-muted); margin: 0; font-size: 15.5px; }

/* --- connected horizontal flow (the "approach" steps) --- */
.io-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.io-flow__item {
  position: relative;
  text-align: center;
  padding-inline: 14px;
}

/* dashed connector with a dot at each end, drawn between two tiles */
.io-flow__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 37px;
  left: calc(50% + 58px);
  right: calc(-50% + 58px);
  height: 6px;
  background-image:
    radial-gradient(circle, var(--io-brand-light) 46%, transparent 50%),
    radial-gradient(circle, #22b8e6 46%, transparent 50%),
    repeating-linear-gradient(to right, var(--io-line-strong) 0 5px, transparent 5px 11px);
  background-size: 6px 6px, 6px 6px, auto 2px;
  background-position: left center, right center, center center;
  background-repeat: no-repeat, no-repeat, repeat-x;
}

.io-flow__tile {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 26px;
  border-radius: 24px;
  color: #fff;
  font-size: 26px;
  transition: transform .45s var(--io-ease), box-shadow .45s var(--io-ease);
}

.io-flow__item:hover .io-flow__tile { transform: translateY(-6px) scale(1.05); }

.io-flow__tile--1 { background: linear-gradient(145deg, #a41ae8, #8E09D8); box-shadow: 0 12px 26px rgba(142, 9, 216, .34); }
.io-flow__tile--2 { background: linear-gradient(145deg, #45cdf0, #1ba9dc); box-shadow: 0 12px 26px rgba(27, 169, 220, .32); }
.io-flow__tile--3 { background: linear-gradient(145deg, #f77fb6, #ef4f96); box-shadow: 0 12px 26px rgba(239, 79, 150, .32); }
.io-flow__tile--4 { background: linear-gradient(145deg, #35c98a, #14a163); box-shadow: 0 12px 26px rgba(20, 161, 99, .30); }
.io-flow__tile--5 { background: linear-gradient(145deg, #8f83ff, #6353f2); box-shadow: 0 12px 26px rgba(99, 83, 242, .32); }

.io-flow__item h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  margin-bottom: .5em;
}

.io-flow__item p {
  color: var(--io-muted);
  font-size: 14.8px;
  line-height: 1.62;
  margin: 0;
  max-width: 30ch;
  margin-inline: auto;
}

@media (max-width: 1100px) {
  .io-flow { grid-template-columns: repeat(3, 1fr); gap: 46px 12px; }
  .io-flow__item:not(:last-child)::after { display: none; }
}

@media (max-width: 700px) {
  .io-flow { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 460px) {
  .io-flow { grid-template-columns: 1fr; gap: 40px; }
}

/* --------------------------------------------------------------------------
   13. Why choose - bento
   -------------------------------------------------------------------------- */
.io-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }

.io-bento__cell {
  grid-column: span 2;
  padding: 34px 30px;
  border-radius: var(--io-radius);
  background: #fff;
  box-shadow: var(--io-shadow-sm);
  transition: transform .4s var(--io-ease), box-shadow .4s var(--io-ease);
}

.io-bento__cell:hover { transform: translateY(-6px); box-shadow: var(--io-shadow); }

.io-bento__cell--wide { grid-column: span 3; }
.io-bento__cell--tall { grid-column: span 3; }

@media (max-width: 980px) {
  .io-bento { grid-template-columns: repeat(2, 1fr); }
  .io-bento__cell,
  .io-bento__cell--wide,
  .io-bento__cell--tall { grid-column: span 1; }
}

@media (max-width: 620px) { .io-bento { grid-template-columns: 1fr; } }

.io-bento__cell i { display: block; font-size: 25px; color: var(--io-brand); margin-bottom: 20px; }
.io-bento__cell h3 { font-size: 1.2rem; }
.io-bento__cell p  { color: var(--io-muted); font-size: 14.8px; margin: 0; }

.io-bento__cell--accent { background: var(--io-brand); box-shadow: var(--io-shadow-brand); }
.io-bento__cell--accent h3 { color: #fff; }
.io-bento__cell--accent i,
.io-bento__cell--accent p  { color: rgba(255, 255, 255, .88); }

/* --------------------------------------------------------------------------
   14. Solutions
   -------------------------------------------------------------------------- */
.io-solutions { background: var(--io-bg-soft); }

/* Full-width case-study cards that stack and overlap.

   This is a BLOCK container, not a grid, on purpose: a sticky grid item is
   constrained by its own grid area (one row = one card), so it has nowhere to
   travel and never sticks. In normal flow the containing block is the whole
   wrapper, so each card can stick while the rest scrolls past it.

   Sticky also keeps every card in the layout, so the section is exactly as
   tall as its content - no collapsed space, no empty gap after the stack. */
.io-solutions__grid { display: block; }

.io-case {
  position: sticky;
  top: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 34px;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
}

.io-case:last-child { margin-bottom: 0; }

@media (max-width: 990px) {
  .io-case { position: static; margin-bottom: 26px; }
}

/* --- left: numeral + copy + stats --- */
.io-case__body {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  padding: clamp(30px, 3.6vw, 52px);
}

.io-case__no {
  font-family: var(--io-font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 600;
  color: var(--io-heading);
  line-height: 1.5;
}

.io-case__content { display: flex; flex-direction: column; min-height: 100%; }

.io-case__content h3 {
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  margin: 0 0 .55em;
  transition: color .35s var(--io-ease);
}

.io-case:hover .io-case__content h3 { color: var(--io-brand); }

.io-case__content > p {
  color: var(--io-muted);
  font-size: 15.5px;
  margin: 0;
  max-width: 46ch;
}

/* stats pinned to the bottom of the card, above a dashed rule */
.io-case__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
  margin-top: auto;
  padding: 40px 0 20px;
  border-bottom: 1px dashed var(--io-line-strong);
}

.io-case__stat span {
  display: block;
  font-size: 14.5px;
  color: var(--io-muted);
  margin-bottom: 10px;
}

.io-case__stat b {
  font-family: var(--io-font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  color: var(--io-heading);
  line-height: 1;
}

.io-case__stat b em { font-style: normal; color: var(--io-brand); }

/* --- right: image --- */
.io-case__media { position: relative; overflow: hidden; min-height: 420px; }

.io-case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--io-ease);
}

.io-case:hover .io-case__media img { transform: scale(1.05); }

@media (max-width: 900px) {
  .io-case { grid-template-columns: 1fr; }
  .io-case__media { min-height: 280px; order: -1; }
  .io-case__stats { padding-top: 30px; }
}

@media (max-width: 560px) {
  .io-case__body { grid-template-columns: 1fr; gap: 6px; }
  .io-case__stats { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   15. Industries
   -------------------------------------------------------------------------- */
.io-industries__list { border-top: 1px solid var(--io-line); }

.io-industry {
  position: relative;
  border-bottom: 1px solid var(--io-line);
  cursor: pointer;
  transition: padding-left .4s var(--io-ease);
}

.io-industry:hover,
.io-industry:focus-within { padding-left: clamp(20px, 3vw, 38px); }

.io-industry__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(20px, 2.5vw, 28px) clamp(6px, 1.6vw, 18px);
}

.io-industry h3 {
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 500;
  margin: 0;
  transition: color .35s var(--io-ease);
}

.io-industry:hover h3,
.io-industry:focus-within h3 { color: var(--io-brand); }

.io-industry__head > span {
  font-family: var(--io-font-display);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--io-dim);
}

/* --- panel that opens on hover and closes on mouse-out --- */
.io-industry__panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .55s var(--io-ease), opacity .35s var(--io-ease);
}

.io-industry:hover .io-industry__panel,
.io-industry:focus-within .io-industry__panel {
  max-height: 280px;
  opacity: 1;
}

.io-industry__inner {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 0 clamp(6px, 1.6vw, 18px) clamp(24px, 2.6vw, 32px);
}

.io-industry__inner img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  border-radius: 12px;
}

.io-industry__inner p {
  margin: 0;
  color: var(--io-muted);
  font-size: 15.5px;
  max-width: 62ch;
}

@media (max-width: 620px) {
  .io-industry__inner { grid-template-columns: 1fr; gap: 16px; }
  .io-industry__inner img { height: 160px; }
}

/* Touch devices never fire hover - show the detail instead of hiding it */
@media (hover: none) {
  .io-industry__panel { max-height: none; opacity: 1; }
}

.io-industry__arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--io-line-strong);
  color: var(--io-heading);
  transition: background .35s var(--io-ease), color .35s var(--io-ease),
              border-color .35s var(--io-ease), transform .35s var(--io-ease);
}

.io-industry:hover .io-industry__arrow {
  background: var(--io-brand);
  border-color: var(--io-brand);
  color: #fff;
  transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   16. Counters
   -------------------------------------------------------------------------- */
.io-counters { background: var(--io-bg-soft); }

.io-counters__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }

.io-counter {
  padding: 32px 28px;
  border-radius: var(--io-radius);
  background: #fff;
  box-shadow: var(--io-shadow-sm);
  transition: transform .4s var(--io-ease), box-shadow .4s var(--io-ease);
}

.io-counter:hover { transform: translateY(-6px); box-shadow: var(--io-shadow); }

.io-counter b {
  display: block;
  font-family: var(--io-font-display);
  font-size: clamp(2.3rem, 4.4vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
  color: var(--io-heading);
  margin-bottom: 12px;
}

.io-counter b span { font-size: 50px; }
.io-counter b em   { font-size: 20px; font-style: normal; color: var(--io-brand); }
.io-counter span { color: var(--io-muted); font-size: 14.5px; }

/* --------------------------------------------------------------------------
   17. Channels
   -------------------------------------------------------------------------- */
.io-channels { position: relative; overflow: hidden; background: var(--io-bg); }

.io-channels__glow {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: var(--io-brand-tint);
  pointer-events: none;
}

.io-channels__glow--a { top: -240px; left: -180px; }
.io-channels__glow--b { bottom: -280px; right: -200px; background: var(--io-brand-tint-2); }

.io-channels .io-wrap { position: relative; z-index: 2; }

.io-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.io-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 100px;
  background: #fff;
  box-shadow: var(--io-shadow-sm);
  font-family: var(--io-font-display);
  font-size: 14px;
  color: var(--io-heading);
  transition: background .3s var(--io-ease), color .3s var(--io-ease), transform .3s var(--io-ease);
}

.io-chip i { color: var(--io-brand); transition: color .3s var(--io-ease); }
.io-chip:hover { background: var(--io-brand); color: #fff; transform: translateY(-3px); }
.io-chip:hover i { color: #fff; }

/* --------------------------------------------------------------------------
   18. CTA
   -------------------------------------------------------------------------- */
.io-cta { background: var(--io-bg-soft); }

.io-cta__inner {
  position: relative;
  padding: clamp(46px, 6.5vw, 88px) clamp(28px, 5vw, 72px);
  border-radius: clamp(24px, 3vw, 36px);
  overflow: hidden;
  background: var(--io-brand);
  box-shadow: var(--io-shadow-brand);
}

.io-cta__bg { position: absolute; inset: 0; z-index: 0; opacity: .22; }
.io-cta__bg img { width: 100%; height: 100%; object-fit: cover; }

.io-cta__inner > *:not(.io-cta__bg) { position: relative; z-index: 2; }

.io-cta .io-eyebrow { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .3); color: #fff; }
.io-cta .io-eyebrow::before { background: #fff; }

.io-cta h2 { font-size: clamp(2rem, 4.6vw, 3.7rem); color: #fff; max-width: 17ch; }
.io-cta p  { color: rgba(255, 255, 255, .88); max-width: 58ch; }

.io-cta .io-btn--light { background: #fff; color: var(--io-brand); }
.io-cta .io-btn--light::after { background: var(--io-brand-dark); }
.io-cta .io-btn--light:hover { color: #fff; }

.io-cta .io-btn--outline {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55);
}
.io-cta .io-btn--outline::after { background: #fff; }
.io-cta .io-btn--outline:hover { color: var(--io-brand); }

.io-cta__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 34px; }

.io-cta__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .25);
}

.io-cta__meta a { display: flex; align-items: center; gap: 12px; font-family: var(--io-font-display); color: #fff; }
.io-cta__meta i { color: #fff; opacity: .85; }
.io-cta__meta small { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .7); }
.io-cta__meta strong { font-weight: 500; }

/* --------------------------------------------------------------------------
   19. FAQ
   -------------------------------------------------------------------------- */
.io-faq__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

@media (max-width: 900px) { .io-faq__grid { grid-template-columns: 1fr; } }

.io-faq__list { border-top: 1px solid var(--io-line); }

.io-acc { border-bottom: 1px solid var(--io-line); }

.io-acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 4px;
  background: none;
  border: 0;
  color: var(--io-heading);
  font-family: var(--io-font-display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color .35s var(--io-ease), padding-left .35s var(--io-ease);
}

.io-acc__btn:hover { color: var(--io-brand); padding-left: 10px; }

.io-acc__ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--io-brand-tint);
  color: var(--io-brand);
  transition: background .35s var(--io-ease), color .35s var(--io-ease), transform .35s var(--io-ease);
}

.io-acc.is-open .io-acc__btn { color: var(--io-brand); }
.io-acc.is-open .io-acc__ico { background: var(--io-brand); color: #fff; transform: rotate(45deg); }

.io-acc__panel { overflow: hidden; height: 0; transition: height .4s var(--io-ease); }
.io-acc__panel p { color: var(--io-muted); font-size: 15.5px; padding: 0 58px 24px 4px; margin: 0; }

.io-faq__aside {
  padding: 32px 30px;
  border-radius: var(--io-radius);
  background: #fff;
  box-shadow: var(--io-shadow);
}

.io-faq__aside h3 { font-size: 1.3rem; }
.io-faq__aside p  { color: var(--io-muted); font-size: 15px; }

/* --------------------------------------------------------------------------
   20. Reveal utility
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity .65s var(--io-ease), transform .65s var(--io-ease);
  transition-delay: var(--d, 0ms);
}

[data-reveal].is-in { opacity: 1; transform: translate3d(0, 0, 0); }

[data-reveal="left"]  { transform: translate3d(-34px, 0, 0); }
[data-reveal="right"] { transform: translate3d(34px, 0, 0); }
[data-reveal="zoom"]  { transform: scale(.95); }
[data-reveal="zoom"].is-in { transform: scale(1); }

/* --------------------------------------------------------------------------
   21. Accessibility
   -------------------------------------------------------------------------- */
.io-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 14px 24px;
  background: var(--io-brand);
  color: #fff;
  font-family: var(--io-font-display);
  font-weight: 600;
  border-radius: 0 0 12px 0;
}

.io-skip:focus { left: 0; }

:focus-visible { outline: 2px solid var(--io-brand); outline-offset: 3px; border-radius: 4px; }

/* --------------------------------------------------------------------------
   22. Back to top
   -------------------------------------------------------------------------- */
.io-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--io-brand);
  color: #fff;
  box-shadow: var(--io-shadow-brand);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .35s var(--io-ease), transform .35s var(--io-ease), visibility .35s;
}

.io-top.is-shown { opacity: 1; visibility: visible; transform: none; }
.io-top:hover { background: var(--io-brand-dark); }

/* --------------------------------------------------------------------------
   23. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .io-hero__media { transform: none !important; }
  .io-hero__title .io-line > span { transform: none !important; }
}
