/* INFOBYTE SOLUTIONS — Premium Light Design | Connecting the Dots */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap');

/* Oswald — self-hosted locally (assets/fonts/oswald/) instead of pulled from
   Google Fonts. This is the headline/heading font used everywhere via
   --font-head, and self-hosting guarantees it always loads even on networks
   that block third-party font CDNs — no dependency on fonts.googleapis.com
   or fonts.gstatic.com for this family. Files are the official Google Fonts
   Oswald build, SIL Open Font License (see assets/fonts/oswald/OFL-LICENSE.txt). */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/oswald/oswald-latin-400-normal.woff2') format('woff2'),
       url('../fonts/oswald/oswald-latin-400-normal.woff') format('woff');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/oswald/oswald-latin-500-normal.woff2') format('woff2'),
       url('../fonts/oswald/oswald-latin-500-normal.woff') format('woff');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/oswald/oswald-latin-600-normal.woff2') format('woff2'),
       url('../fonts/oswald/oswald-latin-600-normal.woff') format('woff');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/oswald/oswald-latin-700-normal.woff2') format('woff2'),
       url('../fonts/oswald/oswald-latin-700-normal.woff') format('woff');
}

:root {
  --ib-blue: #2323C7;
  --ib-blue-mid: #3D3DE8;
  --ib-blue-deep: #0B0B63;
  --ib-navy: #11112E;
  --ib-cyan: #5865F5;
  --ib-orange: #7B5CFA;
  --ib-teal: #4B4FC2;
  --ib-green: #059669;
  --ib-pink: #ec4899;
  --ib-magenta: #d946ef;
  --ib-amber: #f59e0b;
  --ib-mint: #14b8a6;
  --grad-vibrant: linear-gradient(120deg, var(--ib-blue-mid), var(--ib-cyan) 45%, var(--ib-pink) 85%);
  --grad-vibrant-2: linear-gradient(120deg, var(--ib-orange), var(--ib-blue) 55%, var(--ib-mint) 100%);
  --ib-white: #ffffff;
  --ib-off: #F7F7FD;
  --ib-soft: #F1F1FC;
  --ib-muted-bg: #ECEBFF;
  --ib-border: #e7e7f0;
  --ib-border-soft: #DAD9FF;
  --ib-text: #11112E;
  --ib-text-2: #454569;
  --ib-text-3: #6d6d80;
  --ib-text-4: #a6a6b8;
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-head: 'Oswald', 'Manrope', system-ui, sans-serif;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow: 0 14px 34px rgba(17, 17, 46, 0.09);
  --shadow-hover: 0 18px 40px rgba(17, 17, 46, 0.16);
  --shadow-sm: 0 4px 14px rgba(17, 17, 46, 0.07);
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
}

/* ===== Z-INDEX SCALE (single source of truth) =====
   0–10   : decorative backgrounds / ribbons under content
   20–40  : section content, cards
   100–200: sticky/secondary UI
   1000   : main navigation bar
   1100   : mega menus (above nav)
   1200   : mobile drawer / overlays
   1300   : modals / toasts
===================================================== */
:root {
  --z-bg: 0;
  --z-content: 1;
  --z-raised: 2;
  --z-float: 5;
  --z-sticky: 100;
  --z-nav: 1000;
  --z-mega: 1100;
  --z-fab: 1150;
  --z-drawer: 1200;
  --z-modal: 1300;
}

.ib-nav { z-index: var(--z-nav); }
.mega { z-index: var(--z-mega); }
.nav-toggle, .nav-mobile, .mobile-drawer { z-index: var(--z-drawer); }

.hero { position: relative; z-index: var(--z-content); overflow: hidden; }
.hero-grid { position: relative; z-index: var(--z-raised); }
.hero-video-wrap { position: relative; z-index: var(--z-raised); }
.hero-video-frame { position: relative; z-index: var(--z-raised); }

.viz-ribbon { position: relative; z-index: var(--z-content); overflow: hidden; }
.aidlc-section,
.tech-section,
.clients-section,
.team-section,
.connect-visual-section,
.section,
.cta-band,
.page-hero {
  position: relative;
  z-index: var(--z-content);
}

.tech-section .container { position: relative; z-index: var(--z-raised); }
.aidlc-grid::before { z-index: var(--z-bg); }
.aidlc-card { position: relative; z-index: var(--z-raised); }

.ib-footer { position: relative; z-index: var(--z-content); }
.ib-footer .footer-glow { z-index: var(--z-bg); }

/* Kill leftover absolute floats that could stack over video */
.hero-float { display: none !important; }



*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ib-text);
  background: var(--ib-off);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ib-navy);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
h3 { font-size: 1.2rem; }
p { color: var(--ib-text-2); }
.accent { color: var(--ib-blue); }
.lead { font-size: 1.125rem; line-height: 1.7; color: var(--ib-text-2); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.6rem; font-family: var(--font-display); font-weight: 600;
  font-size: 0.9375rem; border-radius: var(--radius-full);
  transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(100deg, var(--ib-blue) 0%, var(--ib-blue-mid) 100%);
  color: #fff; box-shadow: 0 8px 22px rgba(35, 35, 199, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(35, 35, 199, 0.38); }
.btn-secondary {
  background: #fff; color: var(--ib-blue-deep); border: 1.5px solid var(--ib-border);
}
.btn-secondary:hover { border-color: var(--ib-blue); background: var(--ib-muted-bg); }
.btn-dark { background: var(--ib-navy); color: #fff; }
.btn-dark:hover { background: #162a5c; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* NAV */
.ib-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: linear-gradient(100deg, #11112E 0%, #0f2a52 55%, #0c3a63 100%);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.ib-nav.scrolled {
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(5,15,40,.25);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 0.75rem;
}
.nav-logo img {
  height: 40px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding: 0.25rem 0;
  min-width: 140px;
}
.nav-logo:hover img { opacity:0.92; }
.nav-tagline {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  padding-left: 0.5rem;
  border-left: 1px solid rgba(255,255,255,0.22);
  white-space: nowrap;
}
@media (max-width: 1300px) {
  .nav-tagline { display: none; }
}
.nav-links { display: flex; align-items: center; gap: 0.05rem; }
.nav-link {
  padding: 0.45rem 0.6rem; font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.82); border-radius: 999px; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 0.3rem;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.12); }
.nav-link .chev { width: 11px; height: 11px; opacity: 0.7; transition: transform 0.2s; }
.nav-item:hover .chev { transform: rotate(180deg); }
.nav-item { position: relative; }
.nav-cta { margin-left: 0.5rem; flex-shrink: 0; min-width: -webkit-max-content; min-width: max-content; }
.nav-cta .btn-secondary {
  background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.28);
}
.nav-cta .btn-secondary:hover { background: rgba(255,255,255,0.18); }

.mega {
  position: fixed;
  top: calc(var(--nav-h) + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(900px, 94vw);
  max-width: calc(100vw - 24px);
  background: #fff;
  border: 1px solid var(--ib-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hover);
  display: grid;
  grid-template-columns: 240px 1fr;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  overflow: hidden;
  z-index: 100;
  /* invisible bridge so mouse can reach menu without gap */
  margin-top: 0;
  padding-top: 0;
}
/* bridge: extend hit area upward into nav */
.mega::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}
.nav-item:hover > .mega,
.nav-item:focus-within > .mega,
.nav-item.menu-open > .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-side {
  background: #f8fafc;
  border-right: 1px solid var(--ib-border);
  padding: 1.25rem 0.75rem;
}
.mega-side-title {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ib-text-4);
  padding: 0 0.75rem 0.75rem;
}
.mega-side-item {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.7rem 0.75rem; border-radius: var(--radius-md);
  cursor: pointer; transition: background 0.15s;
  border: 1.5px solid transparent;
  color: inherit;
}
.mega-side-item:hover, .mega-side-item.active {
  background: #fff;
  border-color: rgba(35, 35, 199,0.35);
  box-shadow: 0 4px 14px rgba(17, 17, 46,0.06);
}
.mega-side-item .msi-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--ib-muted-bg); color: var(--ib-blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.85rem;
}
.mega-side-item.active .msi-icon { background: linear-gradient(135deg, var(--ib-blue), var(--ib-cyan)); color: #fff; }
.mega-side-item strong { display: block; font-size: 0.85rem; color: var(--ib-navy); font-weight: 600; }
.mega-side-item span { font-size: 0.72rem; color: var(--ib-text-3); line-height: 1.3; }

.mega-main { padding: 1.25rem 1.5rem; }
.mega-panel { display: none; animation: megaFade 0.2s ease; }
.mega-panel.active { display: block; }
@keyframes megaFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.mega-main-head {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.1rem; padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--ib-border);
}
.mega-main-head .mmh-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--ib-muted-bg); color: var(--ib-blue);
  display: flex; align-items: center; justify-content: center;
}
.mega-main-head strong { font-size: 1rem; color: var(--ib-navy); display: block; }
.mega-main-head span { font-size: 0.8rem; color: var(--ib-text-3); }

.mega-subgrid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem;
}
.mega-sub {
  display: flex; align-items: flex-start; gap: 0.65rem;
  padding: 0.75rem; border-radius: var(--radius-md);
  border: 1px solid var(--ib-border); background: #fff;
  transition: all 0.2s; color: inherit;
}
.mega-sub:hover {
  border-color: var(--ib-blue);
  background: var(--ib-muted-bg);
  transform: translateY(-1px);
}
.mega-sub .ms-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--ib-soft); color: var(--ib-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex-shrink: 0;
}
.mega-sub strong { display: block; font-size: 0.85rem; color: var(--ib-navy); margin-bottom: 0.1rem; }
.mega-sub span { font-size: 0.75rem; color: var(--ib-text-3); line-height: 1.35; }

/* Single-item mega panel: rich feature card shown when a side item with only
   one related destination is hovered (e.g. One HR, CRM, Custom Software). */
.mega-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; border-radius: var(--radius-lg);
  background: var(--ib-muted-bg);
  border: 1px solid var(--ib-border);
}
.mega-feature .mf-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--ib-blue), var(--ib-cyan)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.mega-feature .mf-body p {
  font-size: 0.88rem; color: var(--ib-text-3); line-height: 1.55; margin: 0 0 0.85rem;
}
.mega-feature-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 600; color: var(--ib-blue);
  transition: gap 0.15s;
}
.mega-feature-cta i { font-size: 0.75rem; transition: transform 0.15s; }
.mega-feature-cta:hover { gap: 0.6rem; }
.mega-feature-cta:hover i { transform: translateX(2px); }

.mega-footer {
  margin-top: 1rem; padding-top: 0.9rem;
  border-top: 1px solid var(--ib-border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.mega-footer a.explore { font-size: 0.85rem; font-weight: 600; color: var(--ib-blue); }
.mega-footer a.explore:hover { text-decoration: underline; }
.mega-footer .mf-btns { display: flex; gap: 0.5rem; }



/* Mega menus are viewport-centered (position:fixed, left:50%) via the base
   .mega rule above, so they never overflow the right (or left) edge of the
   screen no matter which nav item triggers them — no per-item overrides needed. */

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px; border-radius: var(--radius-md);
  transition: background .2s var(--ease);
}
.nav-toggle:hover, .nav-toggle:focus-visible { background: rgba(255,255,255,0.12); }
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s, background .2s; }

/* HERO */
.hero {
  padding: calc(var(--nav-h) + 3.5rem) 0 4.5rem;
  background:
    radial-gradient(circle at 88% 16%, rgba(35, 35, 199,0.1), transparent 34%),
    radial-gradient(circle at 12% 80%, rgba(123, 92, 250,0.06), transparent 28%),
    linear-gradient(135deg, #fff 0%, #F7FBFF 55%, #EFF5FF 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(35, 35, 199,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 35, 199,0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, transparent, black 70%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--ib-muted-bg); border: 1px solid var(--ib-border-soft);
  color: var(--ib-blue); font-weight: 700; font-size: 0.85rem;
  margin-bottom: 1.1rem;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ib-cyan), var(--ib-orange));
  box-shadow: 0 0 0 4px rgba(35, 35, 199,0.15);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.45} }
.hero h1 { margin-bottom: 1rem; }
.hero-sub {
  font-size: 1.1rem; color: var(--ib-text-3); max-width: 540px;
  margin-bottom: 1.75rem; line-height: 1.7;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-tagline {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ib-blue);
}

.hero-art { position: relative; min-height: 400px; display: flex; align-items: center; justify-content: center; }
.hero-art::before {
  content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 35, 199,.16), transparent 70%);
  animation: glow 4.5s ease-in-out infinite;
}
@keyframes glow { 0%,100%{transform:scale(1);opacity:.8} 50%{transform:scale(1.08);opacity:1} }
.hero-panel {
  position: relative; z-index: 2; width: 100%; max-width: 420px;
  background: rgba(255,255,255,0.96); border: 1px solid var(--ib-border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow); padding: 1.5rem;
}
.hp-top {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.15rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--ib-border);
}
.hp-top .ico {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--ib-blue), var(--ib-orange));
  color: #fff; display: flex; align-items: center; justify-content: center;
}
.hp-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin-bottom: 1.15rem; }
.hp-metric {
  background: var(--ib-soft); border-radius: var(--radius-md); padding: 0.8rem;
}
.hp-metric b { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--ib-blue); }
.hp-metric span { font-size: 0.72rem; color: var(--ib-text-3); }
.hp-path {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--ib-text-3);
}
.hp-path .n {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ib-muted-bg); color: var(--ib-blue);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 4px;
  font-size: 0.7rem;
}
.hp-path .n.on { background: var(--ib-blue); color: #fff; }
.hp-path .ln { flex: 1; height: 2px; background: var(--ib-border); margin: 0 2px; margin-bottom: 18px; }

.float-chip {
  position: absolute; z-index: 4;
  background: #fff; border: 1px solid var(--ib-border-soft);
  border-radius: 12px; box-shadow: var(--shadow-sm);
  padding: 10px 14px; font-size: 0.8rem; font-weight: 600; color: var(--ib-navy);
  animation: bob 4.5s ease-in-out infinite;
}
.float-chip.a { top: 4%; left: -4%; }
.float-chip.b { top: 48%; right: -6%; animation-delay: .8s; }
.float-chip.c { bottom: 8%; left: 2%; animation-delay: 1.6s; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

.section { padding: 5rem 0; }
.section-soft { background: var(--ib-soft); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-header.left { text-align: left; margin-left: 0; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ib-blue); margin-bottom: 0.65rem;
}
.section-header p { margin-top: 0.75rem; font-size: 1.05rem; color: var(--ib-text-3); }

.story-ribbon {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0.4rem; padding: 1.25rem 0;
}
.story-ribbon .node {
  padding: 0.4rem 0.95rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--ib-border);
  font-size: 0.8rem; font-weight: 600; color: var(--ib-navy);
}
.story-ribbon .node.on {
  background: linear-gradient(100deg, var(--ib-blue), var(--ib-blue-mid));
  border-color: transparent; color: #fff;
}
.story-ribbon .arr { color: var(--ib-text-4); font-size: 0.85rem; }

.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.25rem;
}
.card {
  background: #fff; border: 1px solid var(--ib-border); border-radius: var(--radius-lg);
  padding: 1.6rem; transition: all 0.3s var(--ease); height: 100%;
}
.card:hover {
  border-color: rgba(35, 35, 199,0.45); box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--ib-muted-bg); color: var(--ib-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1.1rem;
}
.card h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.card p { font-size: 0.9rem; line-height: 1.55; }
.card-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 1.1rem; font-size: 0.85rem; font-weight: 600; color: var(--ib-blue);
}
.card-link:hover { gap: 0.55rem; }

.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; justify-content: center; }
.pillar {
  text-align: center; padding: 1.75rem 1.1rem;
  background: #fff; border: 1px solid var(--ib-border); border-radius: var(--radius-lg);
  transition: all 0.25s;
}
.pillar:hover { border-color: var(--ib-blue); box-shadow: var(--shadow-sm); }
.pillar-num {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  color: var(--ib-blue); margin-bottom: 0.6rem;
}
.pillar h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.pillar p { font-size: 0.85rem; }

.process-flow {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.35rem; margin: 2rem 0;
}
.process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; min-width: 100px; max-width: 130px;
}
.process-num {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ib-blue), var(--ib-blue-mid));
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.6rem; position: relative;
}
.process-step:not(:last-child) .process-num::after {
  content: ''; position: absolute; left: 100%; top: 50%;
  width: 28px; height: 2px; background: var(--ib-border); transform: translateY(-50%);
}
.process-step h4 { font-size: 0.82rem; margin-bottom: 0.15rem; }
.process-step p { font-size: 0.72rem; color: var(--ib-text-3); }

/* ===== Products & Solutions — 3-column grid ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-tile {
  position: relative;
  background: #fff;
  border: 1px solid var(--ib-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  overflow: hidden;
}
.product-tile::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(35,35,199,0.07), transparent 55%);
  opacity: 0; transition: opacity 0.3s;
}
.product-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(35,35,199,0.28);
}
.product-tile:hover::before { opacity: 1; }
.product-tile-feature {
  background: linear-gradient(180deg, #fff 0%, #F7F7FF 100%);
  background-size: 160% 160%;
  border: 1.5px solid transparent;
  background-image:
    linear-gradient(180deg, #fff 0%, #F7F7FF 100%),
    linear-gradient(120deg, var(--ib-blue), var(--ib-cyan) 35%, var(--ib-pink) 70%, var(--ib-mint));
  background-origin: border-box; background-clip: padding-box, border-box;
  animation: featureBorderShift 7s ease-in-out infinite;
  color: var(--ib-text);
  box-shadow: 0 14px 34px -16px rgba(35,35,199,0.28);
}
.product-tile-feature::after {
  content: ''; position: absolute; top: -30%; right: -18%; width: 55%; height: 55%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(88,101,245,0.16), transparent 70%); border-radius: 50%;
}
.product-tile-feature h3 { color: var(--ib-navy); position: relative; z-index: 1; }
.product-tile-feature p { color: var(--ib-text-3); }
.product-tile-feature .pt-icon {
  background: linear-gradient(135deg, var(--ib-blue), var(--ib-cyan)); color: #fff;
  box-shadow: 0 10px 20px -8px var(--ib-blue); transition: transform .4s var(--ease);
}
.product-tile-feature:hover .pt-icon { transform: scale(1.12) rotate(-8deg); }
.product-tile-feature .card-link { color: var(--ib-blue); }
.product-tile-feature .pt-badge {
  background: linear-gradient(100deg, var(--ib-pink), var(--ib-orange)); color: #fff;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes featureBorderShift {
  0%, 100% { background-position: 0% 0%, 0% 30%; }
  50% { background-position: 0% 0%, 100% 70%; }
}
@media (prefers-reduced-motion: reduce) {
  .product-tile-feature { animation: none !important; }
  .product-tile-feature .pt-badge { animation: none !important; }
}
.pt-badge {
  position: absolute; top: 1.1rem; right: 1.1rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.3rem 0.65rem; border-radius: 999px;
  background: rgba(255,255,255,0.16); color: #fff;
}
.pt-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--ib-muted-bg); color: var(--ib-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.1rem;
  position: relative; z-index: 1;
  transition: transform 0.3s var(--ease);
}
.product-tile:hover .pt-icon { transform: scale(1.08) rotate(-4deg); }
.product-tile h3 { font-size: 1.08rem; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.product-tile p { font-size: 0.9rem; color: var(--ib-text-3); margin-bottom: 1rem; position: relative; z-index: 1; }
.pt-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0 0 1.1rem; padding: 0; position: relative; z-index: 1; }
.pt-tags li {
  font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 999px;
  background: var(--ib-muted-bg); color: var(--ib-blue); border: 1px solid var(--ib-border-soft);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.product-tile:hover .pt-tags li { transform: translateY(-1px); }
.product-tile-feature .pt-tags li { background: color-mix(in srgb, var(--ib-cyan) 14%, #fff); color: var(--ib-blue-mid); border-color: color-mix(in srgb, var(--ib-cyan) 30%, var(--ib-border-soft)); }
.product-tile .card-link { position: relative; z-index: 1; }

@media (max-width: 960px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* Secondary products row */
.products-secondary {
  margin-top: 2.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px dashed var(--ib-border);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem;
}
.ps-head { flex: 0 0 220px; }
.ps-head h3 { font-size: 0.98rem; margin-bottom: 0.25rem; }
.ps-head p { font-size: 0.82rem; color: var(--ib-text-3); margin: 0; }
.products-secondary-grid {
  flex: 1 1 320px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.ps-tile {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 0.9rem 0.5rem; border-radius: var(--radius-md);
  background: var(--ib-muted-bg); color: var(--ib-navy);
  font-size: 0.78rem; font-weight: 600; text-align: center;
  border: 1px solid transparent; transition: all 0.2s;
}
.ps-tile i { font-size: 1.15rem; color: var(--ib-blue); }
.ps-tile:hover { border-color: var(--ib-blue); background: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
@media (max-width: 640px) {
  .products-secondary { flex-direction: column; align-items: stretch; }
  .ps-head { flex: none; }
  .products-secondary-grid { grid-template-columns: repeat(2, 1fr); }
}

.industry-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.9rem;
}
.industry-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  padding: 1.25rem 0.75rem; background: #fff; border: 1px solid var(--ib-border);
  border-radius: var(--radius-md); text-align: center; transition: all 0.2s;
}
.industry-item:hover { border-color: var(--ib-blue); background: var(--ib-muted-bg); }
.industry-item i { font-size: 1.4rem; color: var(--ib-blue); }
.industry-item span { font-size: 0.82rem; font-weight: 600; color: var(--ib-navy); }

.cta-band {
  padding: 4rem 0;
  background: linear-gradient(120deg, var(--ib-navy) 0%, #0f3a6b 55%, var(--ib-blue-mid) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { position: relative; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-band h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 1.75rem; }
.cta-band .btn-primary { background: #fff; color: var(--ib-navy); box-shadow: none; }
.cta-band .btn-primary:hover { background: var(--ib-muted-bg); }
.cta-band .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.cta-band .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }



.ib-footer {
  position: relative;
  background: linear-gradient(165deg, #0a1628 0%, #11112E 45%, #0b2740 100%);
  color: rgba(255,255,255,0.72);
  padding: 0 0 1.5rem;
  overflow: hidden;
  margin-top: 0;
}
.ib-footer .footer-glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 320px;
  background: radial-gradient(ellipse, rgba(35, 35, 199,0.22), transparent 70%);
  pointer-events: none;
}
.footer-cta-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2.5rem;
}
.footer-cta-eye {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #2323C7; margin-bottom: 0.4rem;
}
.footer-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: #fff; margin: 0 0 0.4rem; line-height: 1.25;
}
.footer-cta-sub {
  margin: 0; max-width: 480px;
  color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.55;
}
.footer-cta-btn {
  flex-shrink: 0;
  box-shadow: 0 10px 28px rgba(35, 35, 199,0.35);
}
.footer-top {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2rem 1.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand img {
  height: 44px;
  width: auto;
  max-width: 200px;
  margin-bottom: 0.85rem;
  filter: none;
  object-fit: contain;
}
.footer-logo-link { display: inline-block; }
.footer-tagline {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #2323C7; margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 0.9rem; line-height: 1.65;
  color: rgba(255,255,255,0.5); margin-bottom: 1.15rem; max-width: 280px;
}
.footer-socials { display: flex; gap: 0.65rem; align-items: center; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff; font-size: 1.05rem;
  transition: all 0.25s ease;
  text-decoration: none;
}
.footer-socials a:hover {
  transform: translateY(-3px);
  border-color: transparent;
  color: #fff;
}
.footer-socials a[aria-label="LinkedIn"]:hover {
  background: #0A66C2;
  box-shadow: 0 8px 20px rgba(10,102,194,0.4);
}
.footer-socials a[aria-label="Facebook"]:hover {
  background: #1877F2;
  box-shadow: 0 8px 20px rgba(24,119,242,0.4);
}
.footer-socials a i { pointer-events: none; }

.footer-member {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 1.1rem; padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-member-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.footer-member img {
  height: 26px; width: auto; object-fit: contain;
  opacity: 0.92; filter: brightness(0) invert(1);
  transition: opacity 0.25s ease;
}
.footer-member img:hover { opacity: 1; }

.footer-col h6 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #fff; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: #2323C7; }
.footer-contact li {
  display: flex; gap: 0.65rem; align-items: flex-start;
  margin-bottom: 0.75rem; font-size: 0.9rem; color: rgba(255,255,255,0.55);
}
.footer-contact i {
  margin-top: 0.2rem; color: #2323C7; width: 16px; text-align: center;
}
.footer-about-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.75rem; font-weight: 600; font-size: 0.88rem; color: #2323C7 !important;
}
.footer-about-link:hover { color: #2323C7 !important; }
.footer-bottom {
  position: relative;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-cta-row { flex-direction: column; align-items: flex-start; }
}

/* Scroll reveals & interaction */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
.card {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(35, 35, 199,0.25);
}
.btn { transition: transform 0.2s, box-shadow 0.2s, background 0.2s; }
.btn:hover { transform: translateY(-2px); }

@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-cta-row { flex-direction: column; align-items: flex-start; }
}


.page-hero {
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  background:
    radial-gradient(ellipse 70% 60% at 85% 15%, rgba(35, 35, 199,0.08), transparent),
    linear-gradient(135deg, #fff 0%, #F7FBFF 100%);
  border-bottom: 1px solid var(--ib-border);
  overflow: hidden;
}
/* Colourful animated blobs auto-applied to every page banner — no markup needed */
.page-hero::before, .page-hero::after {
  content: ''; position: absolute; z-index: var(--z-bg); pointer-events: none;
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px; border-radius: 50%;
  filter: blur(80px); opacity: .22; animation: meshDrift 20s ease-in-out infinite;
}
.page-hero::before {
  top: -18%; right: -8%;
  background: radial-gradient(circle, var(--ib-cyan), transparent 70%);
}
.page-hero::after {
  bottom: -22%; left: -10%;
  background: radial-gradient(circle, var(--ib-pink), transparent 70%);
  animation-delay: -10s;
}
.page-hero .container { position: relative; z-index: var(--z-content); }
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; color: var(--ib-text-3); margin-bottom: 1rem;
}
.page-hero .breadcrumb a:hover { color: var(--ib-blue); }
.page-hero h1 { margin-bottom: 0.75rem; max-width: 720px; text-transform: uppercase; }
.page-hero .ph-sub {
  font-size: 1.1rem; color: var(--ib-text-3); max-width: 560px; line-height: 1.65;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.flex { display: flex; } .gap-2 { gap: 0.75rem; } .gap-3 { gap: 1.1rem; }

[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .hero-art { order: -1; min-height: 300px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .mega { width: min(640px, 94vw); grid-template-columns: 200px 1fr; }
  .hero-content { text-align: center; }
  .hero-eyebrow, .hero-ctas { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
}
@media (max-width: 1199px) {
  :root { --nav-h: 64px; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--ib-border);
    box-shadow: var(--shadow);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-item { width: 100%; }
  .nav-links .nav-link {
    width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius-md);
    color: var(--ib-navy);
  }
  .nav-links .nav-link:hover, .nav-links .nav-link.active {
    color: var(--ib-blue-deep); background: var(--ib-muted-bg);
  }
  .nav-links .nav-item .chev { filter: none; opacity: 0.55; transition: transform 0.2s; }
  .nav-links .nav-item.open > .nav-link .chev { transform: rotate(180deg); }
  .nav-links .mega {
    position: static;
    transform: none !important;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    grid-template-columns: 1fr;
    box-shadow: none;
    border: 1px solid var(--ib-border);
    margin-top: 0.35rem;
    max-height: 60vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links .nav-item.open > .mega { display: grid; }
  /* On mobile, the right-hand "hover swap" panel is redundant — the side list already
     links directly to every page, so we show the side list only for a clean drawer. */
  .nav-links .split-mega .mega-main { display: none; }
  .nav-links .mega-side {
    background: transparent;
    border-right: none;
    padding: 0.5rem 0.25rem 0.75rem;
  }
  .nav-links .mega-side-item {
    padding: 0.9rem 0.85rem;
    min-height: 44px;
  }
  .nav-links .mega-subgrid { grid-template-columns: 1fr; }
  .nav-links .mega-sub { padding: 0.9rem; min-height: 44px; }
  .nav-links .mega-main-head { display: none; }
  .nav-links .mega-footer { padding: 0.85rem 0.85rem 0.25rem; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-toggle span { transition: transform 0.2s, opacity 0.2s; }
  .nav-cta { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .float-chip { display: none; }
  .process-step:not(:last-child) .process-num::after { display: none; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; }
}

/* ========== Client logos — two-row alternating marquee ========== */
.clients-section {
  padding: 4.5rem 0 5rem;
  position: relative;
  background:
    radial-gradient(circle at 10% 12%, rgba(88,101,245,0.14), transparent 34%),
    radial-gradient(circle at 90% 15%, rgba(236,72,153,0.12), transparent 32%),
    radial-gradient(circle at 50% 95%, rgba(20,184,166,0.10), transparent 38%),
    radial-gradient(circle at 85% 90%, rgba(245,158,11,0.10), transparent 30%),
    linear-gradient(180deg, #f7f7fd 0%, #ffffff 100%);
  overflow: hidden;
  border-top: 1px solid rgba(17, 17, 46, 0.06);
  border-bottom: 1px solid rgba(17, 17, 46, 0.06);
}
.clients-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(circle, rgba(35,35,199,0.12) 1px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black, transparent 75%);
}
.clients-section .section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem; border-radius: 999px;
  background: var(--ib-muted-bg); border: 1px solid var(--ib-border-soft);
  color: var(--ib-blue); font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; font-size: 0.78rem;
}
.clients-section .section-eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ib-cyan), var(--ib-orange));
}
.clients-section h2 {
  color: var(--ib-navy, #0b1f3a);
  margin: 0.75rem 0 0.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.clients-section .clients-sub {
  color: #64748b;
  font-size: 0.98rem;
  margin: 0 auto 2.75rem;
  text-align: center;
  max-width: 560px;
  line-height: 1.6;
}
.clients-header { text-align: center; margin-bottom: 0.35rem; }

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0.6rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.logo-marquee + .logo-marquee { margin-top: 1.1rem; }
.logo-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  animation: logoScroll 42s linear infinite;
}
.logo-marquee.reverse .logo-track { animation-name: logoScrollReverse; animation-duration: 50s; }
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes logoScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.logo-item {
  position: relative;
  flex: 0 0 auto;
  width: 168px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
  border: 1.5px solid var(--lc, rgba(17, 17, 46, 0.1));
  box-shadow: 0 6px 16px -6px color-mix(in srgb, var(--lc, #2323C7) 30%, transparent);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s ease;
}
.logo-item::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--ib-cyan), var(--lc, var(--ib-orange)), var(--ib-pink));
  opacity: 0.7; transition: opacity 0.35s ease;
}
.logo-item:hover::before { opacity: 1; }
.logo-item img {
  max-width: 122px;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 0.96;
  transition: opacity 0.35s ease, transform 0.35s var(--ease), filter 0.35s ease;
}
.logo-item:hover {
  transform: translateY(-6px) scale(1.04);
  border-color: var(--lc, rgba(35, 35, 199, 0.45));
  box-shadow: 0 18px 34px -8px color-mix(in srgb, var(--lc, #2323C7) 45%, transparent);
}
.logo-item:hover img {
  opacity: 1;
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .logo-item { width: 136px; height: 76px; padding: 0.75rem; }
  .logo-item img { max-width: 100px; max-height: 46px; }
  .logo-track { gap: 1rem; }
  .logo-marquee + .logo-marquee { margin-top: 0.8rem; }
}
@media (max-width: 480px) {
  .logo-item { width: 116px; height: 68px; padding: 0.6rem; }
  .logo-item img { max-width: 84px; max-height: 38px; }
}

/* ========== Fixed hero visual (matches index HTML classes) ========== */
.hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 35, 199,0.14), transparent 70%);
  animation: glow 4.5s ease-in-out infinite;
  pointer-events: none;
}
.hero-float {
  position: absolute;
  z-index: 4;
  background: #fff;
  border: 1px solid var(--ib-border-soft);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ib-navy);
  white-space: nowrap;
  animation: bob 4.5s ease-in-out infinite;
}
.hero-float.f1 { top: 2%; left: 0; }
.hero-float.f2 { top: 42%; right: -2%; animation-delay: 0.8s; }
.hero-float.f3 { bottom: 6%; left: 4%; animation-delay: 1.6s; }

.hero-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  background: rgba(255,255,255,0.97);
  border: 1px solid var(--ib-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.5rem;
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--ib-border);
}
.hero-card-header .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ib-blue), var(--ib-orange));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card-header strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ib-navy);
}
.hero-card-header span {
  font-size: 0.75rem;
  color: var(--ib-text-3);
}
.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.hero-metrics .metric {
  background: var(--ib-soft);
  border-radius: var(--radius-md);
  padding: 0.7rem 0.8rem;
}
.hero-metrics .metric-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ib-blue);
  line-height: 1.2;
}
.hero-metrics .metric-label {
  font-size: 0.7rem;
  color: var(--ib-text-3);
  margin-top: 2px;
}
.hero-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.15rem;
  padding-top: 0.25rem;
}
.hero-flow .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ib-text-3);
  min-width: 42px;
}
.hero-flow .step-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ib-muted-bg);
  color: var(--ib-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-bottom: 4px;
}
.hero-flow .step.active .step-dot {
  background: var(--ib-blue);
  color: #fff;
}
.hero-flow .line {
  flex: 1;
  height: 2px;
  background: var(--ib-border);
  margin-bottom: 16px;
  min-width: 8px;
}
.hero-trust {
  margin-top: 1.25rem;
}
.hero-trust-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ib-text-4);
  margin-bottom: 0.35rem;
}
.hero-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ib-navy);
}

/* story-path used in index */
.story-path {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}
.story-path .node {
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ib-border);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ib-navy);
}
.story-path .node.active {
  background: linear-gradient(100deg, var(--ib-blue), var(--ib-blue-mid));
  border-color: transparent;
  color: #fff;
}
.story-path .arrow { color: var(--ib-text-4); }

/* Contact map */
.map-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--ib-border);
  box-shadow: 0 20px 46px -18px rgba(35,35,199,0.28);
  background: var(--ib-soft);
  isolation: isolate;
}
.map-wrap::before {
  content: '';
  position: absolute; inset: -2px; z-index: -1; border-radius: calc(var(--radius-xl) + 2px);
  background: linear-gradient(120deg, var(--ib-blue), var(--ib-cyan) 30%, var(--ib-pink) 60%, var(--ib-mint) 90%);
  background-size: 220% 220%;
  animation: featureBorderShift 9s ease-in-out infinite;
}
.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}
.map-caption {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  font-size: 0.9rem; font-weight: 600; color: var(--ib-navy);
  border-top: 1px solid var(--ib-border);
}
@media (max-width: 560px) {
  .map-wrap iframe { height: 260px; }
}

@media (max-width: 900px) {
  .hero-float { display: none; }
  .hero-visual { min-height: auto; }
  .hero-card { max-width: 100%; }
}


/* ========== Page hero with visual panel ========== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 2rem) 0 3rem;
  background:
    radial-gradient(circle at 88% 20%, rgba(35, 35, 199,0.08), transparent 40%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(15,23,42,0.06);
  overflow: hidden;
}
.page-hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}
.page-hero .ph-copy { max-width: 640px; }
.page-hero .breadcrumb {
  font-size: 0.82rem; color: #64748b; margin-bottom: 1rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem;
}
.page-hero .breadcrumb a { color: var(--ib-blue); }
.page-hero .ph-sub {
  color: #64748b; font-size: 1.05rem; line-height: 1.7; margin-top: 0.75rem;
  max-width: 540px;
}
.page-hero-visual {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-visual::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 35, 199,0.14), transparent 70%);
  animation: glow 4.5s ease-in-out infinite;
}
.ph-panel {
  position: relative; z-index: 2;
  width: 100%; max-width: 360px;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(17, 17, 46,0.1);
  padding: 1.35rem 1.4rem;
  animation: cardBob 5s ease-in-out infinite;
}
.ph-panel .ph-panel-top {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem; padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.ph-panel .ph-panel-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #2323C7, #7B5CFA);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.ph-panel .ph-panel-top strong { display: block; color: var(--ib-navy); font-size: 0.95rem; }
.ph-panel .ph-panel-top span { font-size: 0.75rem; color: #64748b; }
.ph-steps { display: grid; gap: 0.55rem; }
.ph-step {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.55rem 0.7rem; border-radius: 10px;
  background: #f7fafc; border: 1px solid rgba(15,23,42,0.05);
  font-size: 0.82rem; color: #334155; font-weight: 600;
}
.ph-step .n {
  width: 24px; height: 24px; border-radius: 7px;
  background: linear-gradient(135deg, #2323C7, #3D3DE8);
  color: #fff; font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ph-float {
  position: absolute; z-index: 3;
  background: #fff; border: 1px solid #d8e6f6;
  border-radius: 12px; padding: 0.55rem 0.75rem;
  box-shadow: 0 10px 24px rgba(17, 17, 46,0.1);
  font-size: 0.75rem; font-weight: 700; color: var(--ib-navy);
  display: flex; align-items: center; gap: 0.4rem;
}
.ph-float i { color: var(--ib-blue); }
.ph-float.a { top: 8%; left: 0; animation: cardBob 4.6s ease-in-out infinite; }
.ph-float.b { top: 18%; right: 0; animation: cardBob 5s ease-in-out infinite 0.4s; }
.ph-float.c { bottom: 12%; right: 6%; animation: cardBob 4.8s ease-in-out infinite 0.8s; }

@keyframes cardBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .page-hero .container { grid-template-columns: 1fr; }
  .page-hero-visual { min-height: 220px; order: -1; }
  .ph-panel { max-width: 100%; }
}

/* Product cards carousel on products index */
.products-carousel {
  position: relative; overflow: hidden; margin-top: 1.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.products-track {
  display: flex; gap: 1.25rem; width: max-content;
  animation: prodScroll 50s linear infinite;
}
.products-carousel:hover .products-track { animation-play-state: paused; }
@keyframes prodScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.prod-slide {
  flex: 0 0 280px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: 18px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 8px 24px rgba(17, 17, 46,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none; color: inherit;
}
.prod-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(17, 17, 46,0.1);
  border-color: rgba(35, 35, 199,0.3);
}
.prod-slide .ps-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(145deg, #edf5ff, #fceedd);
  color: var(--ib-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1rem;
}
.prod-slide h3 { font-size: 1.05rem; color: var(--ib-navy); margin-bottom: 0.4rem; }
.prod-slide p { font-size: 0.88rem; color: #64748b; line-height: 1.55; margin-bottom: 0.85rem; }
.prod-slide .card-link { font-size: 0.85rem; font-weight: 600; color: var(--ib-blue); }


/* ========== Tech Stacks (Ontik-inspired) ========== */
.tech-section {
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(circle at 12% 15%, rgba(88,101,245,0.38), transparent 45%),
    radial-gradient(circle at 88% 8%, rgba(236,72,153,0.22), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(20,184,166,0.18), transparent 45%),
    linear-gradient(160deg, #1c2f6b 0%, #16265a 55%, #1a2d63 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.tech-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}
.tech-section .container { position: relative; z-index: 1; }
.tech-section .section-eyebrow {
  color: #2323C7;
  text-align: center;
}
.tech-section h2 {
  text-align: center;
  color: #fff;
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.tech-section h2 .accent-green {
  color: #5865F5;
  display: block;
}
.tech-section .tech-sub {
  text-align: center;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0.75rem auto 2rem;
  font-size: 1.02rem;
  line-height: 1.65;
}

/* Mobile App Development page — single-panel tech stack, same dark
   backdrop language as the homepage tech section, no tabs needed */
.tech-stack-section {
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(circle at 12% 15%, rgba(88,101,245,0.38), transparent 45%),
    radial-gradient(circle at 88% 8%, rgba(236,72,153,0.22), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(20,184,166,0.18), transparent 45%),
    linear-gradient(160deg, #1c2f6b 0%, #16265a 55%, #1a2d63 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.tech-stack-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}
.tech-stack-section .container { position: relative; z-index: 1; }
.tech-stack-section .section-eyebrow { color: #5865F5; }
.tech-stack-section .section-header h2 { color: #fff; }
.tech-stack-section .section-header p { color: rgba(255,255,255,0.65); }
.tech-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 0.35rem;
  margin: 0 auto 2.5rem;
  width: fit-content;
  max-width: 100%;
}
.tech-tab {
  background: none;
  border: none;
  border-radius: 999px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  position: relative;
  transition: color 0.2s, background 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.tech-tab:hover { color: rgba(255,255,255,0.9); }
.tech-tab.active {
  color: #fff;
  background: linear-gradient(120deg, #7B5CFA, #2323C7);
  box-shadow: 0 6px 16px rgba(123,92,250,0.35);
}
.tech-panels { position: relative; min-height: 200px; }
.tech-panel {
  display: none;
  animation: techFade 0.35s ease;
}
.tech-panel.active { display: block; }
@keyframes techFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}
.tech-card {
  background: rgba(15, 40, 70, 0.65);
  border: 1px solid rgba(35, 35, 199, 0.25);
  border-radius: 16px;
  padding: 1.35rem 1rem;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s, background 0.25s;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  position: relative;
  overflow: hidden;
}
.tech-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #7B5CFA, #2323C7, #f48130);
  opacity: 0; transition: opacity 0.25s;
}
.tech-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.55);
  background: rgba(20, 50, 85, 0.9);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.tech-card:hover::before { opacity: 1; }
.tech-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: none;
  padding: 6px;
  border-radius: 10px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.tech-card .tech-fallback {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
  background: rgba(255,255,255,0.08);
  color: #2323C7;
}
.tech-card span {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
@media (max-width: 600px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .tech-tabs { gap: 0.15rem 1rem; }
  .tech-tab { font-size: 0.85rem; }
}


/* ========== AIDLC / Our Process ========== */
.aidlc-section {
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(35, 35, 199,0.07), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(123, 92, 250,0.06), transparent 40%),
    #f7fafc;
  border-top: 1px solid rgba(15,23,42,0.05);
  border-bottom: 1px solid rgba(15,23,42,0.05);
}
.aidlc-section .section-header { margin-bottom: 2.5rem; }
.aidlc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}
.aidlc-grid::before {
  content: "";
  position: absolute;
  top: 48px; left: 8%; right: 8%;
  height: 3px;
  background: linear-gradient(90deg, #2323C7, #3D3DE8 40%, #7B5CFA);
  border-radius: 3px;
  z-index: 0;
  opacity: 0.35;
}
.aidlc-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem 1.6rem;
  box-shadow: 0 10px 28px rgba(17, 17, 46,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
  overflow: hidden;
}
.aidlc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--ib-blue), var(--ib-cyan) 55%, var(--ib-orange));
  opacity: 0; transform: scaleX(.4); transform-origin: left; transition: opacity .3s ease, transform .35s var(--ease);
}
.aidlc-card:hover::before { opacity: 1; transform: scaleX(1); }
.aidlc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.aidlc-num {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, #2323C7, #3D3DE8);
  color: #fff; font-weight: 700; font-size: 1.15rem; font-family: var(--font-head);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(35, 35, 199,0.3);
}
.aidlc-card:nth-child(2) .aidlc-num { background: linear-gradient(135deg, #3D3DE8, #11112E); }
.aidlc-card:nth-child(3) .aidlc-num { background: linear-gradient(135deg, #5865F5, #2323C7); }
.aidlc-card:nth-child(4) .aidlc-num { background: linear-gradient(135deg, #7B5CFA, #f48130); }
.aidlc-card h3 {
  font-size: 1.05rem; color: var(--ib-navy); margin-bottom: 0.5rem; line-height: 1.35;
}
.aidlc-card p {
  font-size: 0.9rem; color: #64748b; line-height: 1.6; margin: 0;
}
.aidlc-card ul {
  margin: 0.85rem 0 0; padding-left: 1.1rem;
  color: #475569; font-size: 0.84rem; line-height: 1.7;
}
.aidlc-methods {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem;
  margin-top: 2.5rem;
}
.aidlc-pill {
  padding: 0.55rem 1rem; border-radius: 999px;
  background: #fff; border: 1px solid rgba(35, 35, 199,0.2);
  color: var(--ib-navy); font-weight: 600; font-size: 0.85rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(17, 17, 46,0.04);
}
.aidlc-pill i { color: var(--ib-blue); }
@media (max-width: 960px) {
  .aidlc-grid { grid-template-columns: 1fr 1fr; }
  .aidlc-grid::before { display: none; }
}
@media (max-width: 560px) {
  .aidlc-grid { grid-template-columns: 1fr; }
}

/* In-page tabs (Digital Marketing channels) */
.inpage-tabs {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
  border-bottom: 1px solid var(--ib-border);
  margin: 0 0 1.75rem;
}
.inpage-tab {
  background: none; border: none; cursor: pointer; font: inherit;
  font-weight: 600; font-size: 0.92rem; color: #64748b;
  padding: 0.85rem 1.1rem; position: relative;
  border-radius: 10px 10px 0 0; transition: color 0.2s, background 0.2s;
}
.inpage-tab:hover { color: var(--ib-navy); background: rgba(35, 35, 199,0.06); }
.inpage-tab.active {
  color: var(--ib-blue);
  background: #fff;
}
.inpage-tab.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 3px; background: linear-gradient(90deg, #2323C7, #7B5CFA);
  border-radius: 3px 3px 0 0;
}
.inpage-panel { display: none; animation: techFade 0.3s ease; }
.inpage-panel.active { display: block; }
.channel-logos {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1rem 0 1.5rem;
}
.channel-logo {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.9rem; border-radius: 12px;
  background: #f8fafc; border: 1px solid rgba(15,23,42,0.07);
  font-weight: 600; font-size: 0.88rem; color: var(--ib-navy);
}
.channel-logo i { font-size: 1.1rem; }
.channel-logo.meta i { color: #0668E1; }
.channel-logo.tiktok i { color: #010101; }
.channel-logo.google i { color: #4285F4; }

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
  min-width: 0;
}
.contact-layout > * { min-width: 0; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; min-width: 0; }
.contact-info-card {
  position: relative;
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(17, 17, 46,0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  overflow: hidden;
  min-width: 0;
  --cic-color: var(--ib-blue);
  --cic-color2: var(--ib-cyan);
}
.contact-info-card > div:not(.cic-icon) { min-width: 0; }
.contact-info-card::before {
  content: '';
  position: absolute; top: -35%; right: -18%; width: 60%; height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cic-color), transparent 70%);
  opacity: 0; transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -6px color-mix(in srgb, var(--cic-color) 35%, rgba(17,17,46,0.12));
  border-color: color-mix(in srgb, var(--cic-color) 35%, var(--ib-border));
}
.contact-info-card:hover::before { opacity: 0.16; }
.cic-icon {
  width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--cic-color), var(--cic-color2));
  color: #fff;
  box-shadow: 0 10px 20px -8px var(--cic-color);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  position: relative; z-index: 1;
  transition: transform 0.4s var(--ease);
}
.contact-info-card:hover .cic-icon { transform: scale(1.12) rotate(-8deg); }
.contact-info-card strong { display: block; color: var(--ib-navy); margin-bottom: 0.25rem; position: relative; z-index: 1; }
.contact-info-card p { margin: 0 0 0.35rem; color: #64748b; font-size: 0.92rem; line-height: 1.5; position: relative; z-index: 1; overflow-wrap: break-word; word-break: break-word; }
.contact-info-card a { font-size: 0.88rem; font-weight: 600; color: var(--cic-color); position: relative; z-index: 1; overflow-wrap: break-word; word-break: break-word; }
.contact-info-card .muted { font-size: 0.8rem; color: #94a3b8; position: relative; z-index: 1; }
.contact-info-card.contact-whatsapp-card {
  background: linear-gradient(135deg, #f0fdf6 0%, #ffffff 60%);
  border-color: rgba(37,211,102,0.25);
}
.contact-info-card.contact-whatsapp-card a.wa-inline-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.9rem; margin-top: 0.15rem;
  background: linear-gradient(135deg, #25D366, #1DA851); color: #fff !important;
  border-radius: 999px; font-size: 0.82rem; font-weight: 700;
  box-shadow: 0 8px 18px -6px rgba(29,168,81,0.5);
  transition: transform 0.25s var(--ease);
}
.contact-info-card.contact-whatsapp-card a.wa-inline-link:hover { transform: translateY(-2px) scale(1.03); }
.contact-channels {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.75rem;
  padding: 1rem 0.25rem; font-size: 0.88rem; color: #64748b;
}
.contact-channels a {
  padding: 0.35rem 0.75rem; border-radius: 999px;
  background: var(--ib-muted-bg); color: var(--ib-blue); font-weight: 600;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.contact-channels a:hover { background: var(--ib-blue); color: #fff; transform: translateY(-2px); }
.contact-form-card {
  position: relative;
  background-image:
    linear-gradient(180deg, #fff 0%, #F8F9FF 100%),
    linear-gradient(120deg, var(--ib-blue), var(--ib-cyan) 30%, var(--ib-pink) 60%, var(--ib-mint) 90%);
  background-size: 100% 100%, 220% 220%;
  background-origin: border-box; background-clip: padding-box, border-box;
  border: 1.5px solid transparent;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 20px 48px -14px rgba(35,35,199,0.22);
  animation: featureBorderShift 9s ease-in-out infinite;
  overflow: hidden;
}
.contact-form-card::after {
  content: ''; position: absolute; top: -25%; right: -12%; width: 45%; height: 45%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(236,72,153,0.14), transparent 70%); border-radius: 50%;
}
.contact-form-card > * { position: relative; z-index: 1; }
.contact-form-card h2 { margin: 0 0 0.35rem; color: var(--ib-navy); font-size: 1.35rem; }
.form-intro { color: #64748b; font-size: 0.92rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--ib-navy); margin-bottom: 0.35rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1.5px solid var(--ib-border);
  border-radius: 12px; font: inherit; background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ib-blue);
  box-shadow: 0 0 0 4px rgba(35, 35, 199,0.12);
}
.form-success { text-align: center; padding: 2rem 1rem; }
.form-success-icon {
  width: 64px; height: 64px; margin: 0 auto 1.25rem; border-radius: 50%;  background: rgba(5,150,105,0.12); color: var(--ib-success);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.form-status { font-size: 0.88rem; font-weight: 600; margin: 0 0 1rem; display: none; padding: 0.75rem 1rem; border-radius: var(--radius-md); }
.form-status.is-error { display: block; background: rgba(220,38,38,0.08); color: #b91c1c; border: 1px solid rgba(220,38,38,0.18); }
.form-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none !important; }
.form-submit-btn .btn-spinner { margin-left: 0.5rem; }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Homepage visual ribbon */
.viz-ribbon {
  padding: 1.25rem 0;
  background: linear-gradient(90deg, #0b1f3a, #0d2a4a 50%, #0b1f3a);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.viz-ribbon-track {
  display: flex; gap: 0.85rem; width: max-content;
  animation: ribbonScroll 35s linear infinite;
}
.viz-ribbon:hover .viz-ribbon-track { animation-play-state: paused; }
@keyframes ribbonScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.viz-pill {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem; font-weight: 600;
  white-space: nowrap;
}
.viz-pill i { color: #2323C7; }

/* Connect visual grid */
.connect-visual-section { background: #fff; }
.connect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.connect-card {
  position: relative;
  padding: 1.75rem 1.35rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border: 1px solid rgba(15,23,42,0.07);
  box-shadow: 0 10px 28px rgba(17, 17, 46,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.connect-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(17, 17, 46,0.1);
}
.connect-num {
  position: absolute; top: 12px; right: 16px;
  font-size: 2.5rem; font-weight: 800;
  color: rgba(35, 35, 199,0.1); line-height: 1;
  font-family: var(--font-display);
}
.connect-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, #2323C7, #7B5CFA);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1rem;
}
.connect-card h3 { color: var(--ib-navy); margin-bottom: 0.4rem; }
.connect-card p { color: #64748b; font-size: 0.92rem; line-height: 1.55; margin: 0; }
@media (max-width: 900px) {
  .connect-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .connect-grid { grid-template-columns: 1fr; }
}

/* Section cards with soft gradient tops */
.section .card .card-icon {
  transition: transform 0.3s;
}
.section .card:hover .card-icon {
  transform: scale(1.08) rotate(-3deg);
}

/* Hero video panel */
.hero-video-wrap, .hero-graphic-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.hero-video-frame, .hero-graphic-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 24px 60px rgba(17, 17, 46, 0.18),
    0 0 0 1px rgba(15, 23, 42, 0.06);
  aspect-ratio: 1 / 1;
}
.hero-video-frame--plain {
  max-width: none;
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: auto;
}
.hero-graphic-frame svg { display: block; width: 100%; height: 100%; }
.hg-lines line { stroke-dasharray: 4 5; animation: dashFlow 2.2s linear infinite; }
.hg-core { animation: heroCorePulse 3s ease-in-out infinite; transform-origin: 260px 260px; }
@keyframes heroCorePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.hg-node { opacity: 0; animation: hgNodeIn .6s ease forwards, cardBob 4.5s ease-in-out infinite; animation-delay: 0s, .6s; transform-origin: center; }
@keyframes hgNodeIn { from { opacity: 0; transform: scale(.5); } to { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .hg-lines line, .hg-core, .hg-node { animation: none !important; opacity: 1; }
}
.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #000;
}
.hero-video-fade {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(10, 22, 40, 0.15) 100%);
  border-radius: inherit;
}
@media (max-width: 900px) {
  .hero-video-frame, .hero-graphic-frame {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ===== Team & Delivery ===== */
.team-roles {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 1.75rem;
  margin: 2rem 0 1.5rem;
}
.team-role {
  --rc: #2323C7;
  width: 110px; text-align: center;
  opacity: 0; transform: translateY(12px);
  animation: teamRoleIn .5s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 0.07s);
}
.tr-icon {
  width: 64px; height: 64px; margin: 0 auto 0.65rem; border-radius: 50%;
  background: linear-gradient(145deg, var(--rc), color-mix(in srgb, var(--rc) 55%, #0b1f3a));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 10px 24px -4px color-mix(in srgb, var(--rc) 65%, transparent);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-role:hover .tr-icon {
  transform: translateY(-5px) scale(1.08) rotate(-4deg);
  box-shadow: 0 16px 30px -4px color-mix(in srgb, var(--rc) 75%, transparent);
}
.team-role.tr-accent .tr-icon {
  background: linear-gradient(145deg, var(--rc), color-mix(in srgb, var(--rc) 55%, #0b1f3a));
}
.team-role span {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--ib-navy); line-height: 1.3;
}
@keyframes teamRoleIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .team-role { animation: none !important; opacity: 1; transform: none; }
}
.team-footnote {
  max-width: 720px; margin: 1.5rem auto 0; text-align: center;
  color: #64748b; font-size: 0.98rem; line-height: 1.65;
}

/* ===== Industries grid ===== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}
.industry-tile {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: 14px;
  padding: 1.25rem 0.75rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(17, 17, 46,0.04);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.industry-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(17, 17, 46,0.1);
  border-color: rgba(35, 35, 199,0.25);
}
.industry-tile i {
  display: block; font-size: 1.5rem; color: #2323C7; margin-bottom: 0.55rem;
}
.industry-tile span {
  font-size: 0.85rem; font-weight: 600; color: var(--ib-navy);
}
@media (max-width: 1000px) {
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Who we help ===== */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.who-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(17, 17, 46,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.who-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(17, 17, 46,0.1);
}
.who-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 14px;
  background: linear-gradient(135deg, rgba(35, 35, 199,0.12), rgba(123, 92, 250,0.1));
  color: var(--ib-blue);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.who-card h3 { margin: 0 0 0.3rem; font-size: 1rem; color: var(--ib-navy); }
.who-card p { margin: 0; font-size: 0.9rem; color: #64748b; line-height: 1.55; }
@media (max-width: 720px) {
  .who-grid { grid-template-columns: 1fr; }
}

/* ===== Skills cloud ===== */
.skills-cloud {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.55rem 0.65rem;
}
.skill-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.55rem 1.05rem 0.55rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.1);
  font-size: 0.88rem; font-weight: 600; color: var(--ib-navy);
  box-shadow: 0 4px 12px rgba(17, 17, 46,0.04);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.skill-pill i { font-size: 0.85rem; color: var(--ib-blue); transition: color 0.2s; }
.skill-pill:hover {
  background: linear-gradient(135deg, #2323C7, #3D3DE8);
  color: #fff; border-color: transparent;
  transform: translateY(-2px);
}
.skill-pill:hover i { color: #fff; }

/* ===== Why InfoByte ===== */
.why-quote {
  max-width: 860px; margin: 0 auto 1.5rem;
  padding: 1.5rem 1.75rem 1.5rem 1.5rem;
  border-left: 4px solid #2323C7;
  border-radius: 0 16px 16px 0;
  background: linear-gradient(90deg, rgba(35, 35, 199,0.06), rgba(123, 92, 250,0.05));
  font-size: 1.1rem; font-weight: 600; line-height: 1.55;
  color: var(--ib-navy); font-style: italic;
}
.why-body {
  max-width: 780px; margin: 0 auto; text-align: center;
  color: #64748b; font-size: 1.02rem; line-height: 1.7;
}

/* ===== What we deliver ===== */
.deliver-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.deliver-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 28px rgba(17, 17, 46,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.deliver-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(17, 17, 46,0.1);
}
.dc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(35, 35, 199,0.1); color: var(--ib-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1rem;
}
.deliver-card h3 {
  font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ib-blue); margin-bottom: 0.65rem;
}
.deliver-card p {
  color: #64748b; font-size: 0.92rem; line-height: 1.55; margin-bottom: 1rem;
}
.deliver-card ul {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid rgba(15,23,42,0.06); padding-top: 0.85rem;
}
.deliver-card ul li {
  position: relative; padding-left: 1rem; margin-bottom: 0.4rem;
  font-size: 0.88rem; color: var(--ib-navy); font-weight: 500;
}
.deliver-card ul li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px; border-radius: 50%; background: #2323C7;
}
@media (max-width: 900px) {
  .deliver-grid { grid-template-columns: 1fr; }
}



.contact-socials {
  display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 0.5rem;
}
.contact-socials a {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  background: rgba(35, 35, 199,0.08);
  color: var(--ib-navy) !important;
  font-weight: 600; font-size: 0.88rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.contact-socials a:hover {
  background: linear-gradient(135deg, #2323C7, #3D3DE8);
  color: #fff !important;
  transform: translateY(-2px);
}
.contact-socials a i { font-size: 1rem; }

/* =========================================================
   PHASE 2 ENHANCEMENTS — Advanced Motion, Diagrams, Stats
   ========================================================= */

/* ---- Animated gradient mesh backdrop (used behind hero/CTA sections) ---- */
.mesh-bg { position: absolute; inset: 0; overflow: hidden; z-index: var(--z-bg); pointer-events: none; }
.mesh-bg::before, .mesh-bg::after {
  content: ''; position: absolute; width: 60vw; height: 60vw; border-radius: 50%;
  filter: blur(90px); opacity: .22; background: radial-gradient(circle, var(--ib-blue), transparent 70%);
  animation: meshDrift 18s ease-in-out infinite;
}
.mesh-bg::before { top: -20%; left: -10%; }
.mesh-bg::after { bottom: -25%; right: -10%; background: radial-gradient(circle, var(--ib-pink), transparent 70%); animation-delay: -9s; }
.mesh-bg-extra {
  position: absolute; z-index: var(--z-bg); pointer-events: none;
  width: 34vw; height: 34vw; border-radius: 50%; top: 30%; left: 38%;
  filter: blur(90px); opacity: .16; background: radial-gradient(circle, var(--ib-mint), transparent 70%);
  animation: meshDrift 22s ease-in-out infinite; animation-delay: -4s;
}
@keyframes meshDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(4%, 6%) scale(1.12); }
}

/* ---- Connecting-dots animated network canvas (JS-driven, brand-coloured) ---- */
.dots-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: var(--z-bg); pointer-events: none; opacity: .8; }
.hero .dots-canvas { mix-blend-mode: multiply; }
.contact-hero .dots-canvas { opacity: .55; }
.contact-hero {
  background:
    radial-gradient(circle at 14% 22%, rgba(20,184,166,0.12), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(245,158,11,0.10), transparent 42%),
    radial-gradient(ellipse 70% 60% at 85% 15%, rgba(35, 35, 199,0.08), transparent),
    linear-gradient(135deg, #fff 0%, #F7FBFF 100%);
}

/* ---- Stat counters ---- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 420px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-card {
  text-align: center; padding: 1.75rem 1rem; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff, var(--ib-off)); border: 1px solid var(--ib-border);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.stat-number {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 3vw, 2.6rem);
  background: linear-gradient(120deg, var(--ib-blue-mid), var(--ib-blue), var(--ib-cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1;
}
.stat-label { margin-top: .5rem; font-size: .85rem; color: var(--ib-text-3); font-weight: 600; letter-spacing: .01em; }

/* ---- Diagram / architecture flow blocks ---- */
.diagram-wrap {
  border-radius: var(--radius-xl); border: 1px solid var(--ib-border-soft);
  background: linear-gradient(180deg, #fff 0%, var(--ib-soft) 100%);
  padding: clamp(1.25rem, 3vw, 2.5rem); overflow: hidden; position: relative;
}
.diagram-wrap svg { width: 100%; height: auto; display: block; }
@media (max-width: 720px) {
  .diagram-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .diagram-wrap svg { width: auto; min-width: 640px; max-width: none; }
}
.diagram-node-label { font-family: var(--font-display); font-weight: 700; }
.diagram-flow-line { stroke-dasharray: 6 6; animation: dashFlow 2.4s linear infinite; }
@keyframes dashFlow { to { stroke-dashoffset: -24; } }
.diagram-pulse { animation: diagramPulse 2.6s ease-in-out infinite; transform-origin: center; }
@keyframes diagramPulse { 0%,100% { opacity: .55; r: 5; } 50% { opacity: 1; r: 8; } }

/* ---- SMS delivery architecture diagram (sequence-style: nodes + timeline) ---- */
.sms-arch-wrap {
  border-radius: var(--radius-xl); border: 1px solid var(--ib-border-soft);
  background: linear-gradient(180deg, #fff 0%, var(--ib-soft) 100%);
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 2.5rem);
  overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; position: relative;
}
.sms-arch { min-width: 0; }
.sms-arch-axis {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700; color: var(--ib-text-4);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.sms-arch-axis-info { margin-bottom: 1.25rem; }
.sms-arch-axis-time { margin: 1.5rem 0 0.75rem; }
.sms-arch-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) clamp(22px,3.4vw,34px) minmax(0,1fr) clamp(22px,3.4vw,34px) minmax(0,1fr) clamp(22px,3.4vw,34px) minmax(0,1fr) clamp(22px,3.4vw,34px) minmax(0,1fr);
  align-items: center;
  position: relative;
  width: 100%;
  margin-top: 1.4rem;
}
.sms-arch-org-bg {
  grid-column: 1 / 4; grid-row: 1;
  align-self: stretch; justify-self: stretch;
  border: 1.5px dashed var(--ib-border);
  border-radius: var(--radius-lg);
  background: rgba(35,35,199,0.04);
  position: relative; z-index: 0;
}
.sms-arch-org-label {
  position: absolute; top: -1.55rem; left: 0;
  background: var(--ib-muted-bg);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem; font-weight: 800; color: var(--ib-blue-deep, var(--ib-blue));
  text-transform: uppercase; letter-spacing: 0.03em;
  white-space: nowrap;
  z-index: 2;
}
.sms-arch-node {
  grid-row: 1;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  text-align: center; font-size: clamp(0.62rem, 1.35vw, 0.76rem); font-weight: 700; color: var(--ib-navy);
  padding: 0 0.25rem; min-width: 0;
}
.sms-arch-icon {
  width: clamp(34px, 6vw, 52px); height: clamp(34px, 6vw, 52px); border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1.5px solid var(--ib-border-soft);
  color: var(--ib-blue-deep, var(--ib-blue)); font-size: clamp(0.85rem, 1.6vw, 1.2rem);
  box-shadow: 0 6px 16px -6px rgba(17,17,46,0.15);
}
.sms-arch-icon.accent {
  background: linear-gradient(135deg, var(--ib-blue), var(--ib-cyan));
  border-color: transparent; color: #fff;
}
.sms-arch-arrow {
  grid-row: 1; justify-self: center; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  width: clamp(20px, 2.6vw, 30px); height: clamp(20px, 2.6vw, 30px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ib-blue), var(--ib-cyan));
  color: #fff; font-size: clamp(0.62rem, 1.1vw, 0.8rem);
  box-shadow: 0 4px 10px -3px rgba(35,35,199,0.5);
}
.sms-arch-col-1 { grid-column: 1; }
.sms-arch-col-2 { grid-column: 2; }
.sms-arch-col-3 { grid-column: 3; }
.sms-arch-col-4 { grid-column: 4; }
.sms-arch-col-5 { grid-column: 5; }
.sms-arch-col-6 { grid-column: 6; }
.sms-arch-col-7 { grid-column: 7; }
.sms-arch-col-8 { grid-column: 8; }
.sms-arch-col-9 { grid-column: 9; }
.sms-arch-track {
  display: grid;
  grid-template-columns: minmax(0,1fr) clamp(22px,3.4vw,34px) minmax(0,1fr) clamp(22px,3.4vw,34px) minmax(0,1fr) clamp(22px,3.4vw,34px) minmax(0,1fr) clamp(22px,3.4vw,34px) minmax(0,1fr);
  width: 100%;
  position: relative;
}
.sms-arch-connector {
  grid-row: 1; align-self: start; justify-self: center;
  width: 2px; height: 0.85rem;
  background: linear-gradient(180deg, var(--ib-blue), var(--ib-cyan));
  border-radius: 2px;
}
.sms-arch-step {
  grid-row: 2; justify-self: center; align-self: start;
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  text-align: center; max-width: 100%; margin-top: 0.5rem;
  padding: 0 0.2rem;
}
.sms-arch-step-label { font-size: 0.74rem; line-height: 1.4; color: var(--ib-text-3); font-weight: 600; }
.sms-arch-step-sub {
  font-size: 0.66rem; font-weight: 800; color: var(--ib-blue-deep, var(--ib-blue));
  background: var(--ib-muted-bg); border-radius: 999px; padding: 0.15rem 0.55rem;
  text-transform: uppercase; letter-spacing: 0.03em;
}
@media (max-width: 900px) {
  .sms-arch-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ---- Tilt-interactive cards ---- */
.tilt-card { transform-style: preserve-3d; transition: transform .25s ease, box-shadow .25s ease; will-change: transform; }
.tilt-card:hover { box-shadow: var(--shadow-hover); }

/* ---- Marquee ticker (capabilities / integrations) ---- */
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.marquee-track { display: flex; gap: 2.5rem; width: max-content; animation: marqueeScroll 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: .55rem; padding: .6rem 1.1rem; border-radius: var(--radius-full); border: 1px solid var(--ib-border); background: #fff; font-weight: 600; font-size: .85rem; color: var(--ib-text-2); white-space: nowrap; }
.marquee-item i { color: var(--ib-blue); }

/* ---- Comparison table ---- */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--ib-border); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
.compare-table th, .compare-table td { padding: .95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--ib-border); font-size: .92rem; }
.compare-table thead th { background: var(--ib-navy); color: #fff; font-family: var(--font-display); font-weight: 700; }
.compare-table tbody tr:hover { background: var(--ib-soft); }
.compare-table td:first-child, .compare-table th:first-child { font-weight: 700; color: var(--ib-text); }
.compare-table i.fa-check { color: var(--ib-green); }
.compare-table i.fa-xmark { color: var(--ib-text-4); }

/* ---- Badge ribbon on hero ---- */
.hero-badge-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.25rem; }
.hero-badge { display: inline-flex; align-items: center; gap: .4rem; padding: .4rem .85rem; border-radius: var(--radius-full); background: var(--ib-muted-bg); color: var(--ib-blue-deep); font-size: .78rem; font-weight: 700; border: 1px solid var(--ib-border-soft); }
.hero-badge-price {
  background: linear-gradient(100deg, var(--ib-blue) 0%, var(--ib-blue-mid) 100%);
  color: #fff; border-color: transparent;
  box-shadow: 0 10px 24px -8px rgba(35,35,199,0.45);
  font-size: 0.82rem;
}
.hero-badge-price strong { font-weight: 800; }

/* ---- Section divider wave ---- */
.wave-divider { display: block; width: 100%; height: 48px; }
.wave-divider path { fill: var(--ib-off); }

/* ---- Timeline (vertical) for process ---- */
.v-timeline { position: relative; padding-left: 2.25rem; }
.v-timeline::before { content: ''; position: absolute; left: 10px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(180deg, var(--ib-blue), var(--ib-orange)); }
.v-timeline-item { position: relative; padding-bottom: 1.9rem; }
.v-timeline-item:last-child { padding-bottom: 0; }
.v-timeline-item::before { content: ''; position: absolute; left: -2.25rem; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 3px solid var(--ib-blue); box-shadow: 0 0 0 4px var(--ib-muted-bg); }
.v-timeline-item h4 { margin: 0 0 .3rem; font-family: var(--font-head); }
.v-timeline-item p { margin: 0; color: var(--ib-text-3); font-size: .92rem; }

/* ---- Feature icon pop-in on hover ---- */
.card-icon { transition: transform .35s var(--ease), background .35s var(--ease); }
.card:hover .card-icon { transform: scale(1.12) rotate(-6deg); }

/* ---- Fade-up utility with stagger via inline delay var ---- */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0s); }
.fade-up.revealed { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .mesh-bg::before, .mesh-bg::after, .marquee-track, .diagram-flow-line, .diagram-pulse { animation: none !important; }
}

/* =========================================================
   PHASE 3 — HOMEPAGE SIGNATURE: "Connecting the Dots" system
   ========================================================= */

/* Connector-dot divider between acts of the homepage */
.dot-divider { display: flex; align-items: center; justify-content: center; gap: 0; padding: 1.5rem 0; position: relative; z-index: var(--z-content); }
.dot-divider .dd-line { flex: 1; max-width: 220px; height: 2px; background: repeating-linear-gradient(90deg, var(--ib-border-soft) 0 6px, transparent 6px 12px); }
.dot-divider .dd-node { width: 10px; height: 10px; border-radius: 50%; background: var(--ib-blue); margin: 0 .9rem; box-shadow: 0 0 0 6px var(--ib-muted-bg); animation: diagramPulse 2.6s ease-in-out infinite; }
.dot-divider .dd-label { font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ib-text-3); margin: 0 .75rem; white-space: nowrap; }

/* Hero orbit badges (replace plain floats on homepage) */
.orbit-wrap { position: relative; }
.orbit-badge {
  position: absolute; display: flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--ib-border-soft); border-radius: var(--radius-full);
  padding: .55rem 1rem; font-family: var(--font-display); font-weight: 700; font-size: .8rem; color: var(--ib-navy);
  box-shadow: var(--shadow); animation: cardBob 5s ease-in-out infinite;
}
.orbit-badge i { color: var(--ib-blue); }
.orbit-badge.o1 { top: 4%; left: -6%; animation-delay: 0s; }
.orbit-badge.o2 { top: 32%; right: -8%; animation-delay: .6s; }
.orbit-badge.o3 { bottom: 20%; left: -10%; animation-delay: 1.2s; }
.orbit-badge.o4 { bottom: -3%; right: 6%; animation-delay: 1.8s; }
@media (max-width: 900px) { .orbit-badge { display: none; } }

/* Ecosystem map section signature */
.eco-map-wrap { position: relative; padding: clamp(1.5rem,4vw,3rem); }
.eco-core-label { font-family: var(--font-display); font-weight: 800; }

/* Act eyebrow with running node index (only for genuine ordered flows) */
.act-tag { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ib-blue-mid); background: var(--ib-muted-bg); padding: .35rem .8rem; border-radius: var(--radius-full); margin-bottom: .75rem; }

/* Problem statement editorial band */
.editorial-band { text-align: center; max-width: 760px; margin: 0 auto; }
.editorial-band .eb-big {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--ib-text-2);
}
.editorial-band .eb-big em { font-style: normal; font-weight: 700; color: var(--ib-blue); }
.editorial-band .eb-big s { text-decoration: none; color: var(--ib-text-4); position: relative; }
.editorial-band .eb-big s::after { content:''; position:absolute; left:0; right:0; top:52%; height:2px; background: var(--ib-orange); transform: rotate(-2deg); }

@media (prefers-reduced-motion: reduce) {
  .orbit-badge, .dot-divider .dd-node { animation: none !important; }
}

/* =========================================================
   PHASE 4 — SITEWIDE REDESIGN: Oswald headlines, new accent
   language, refreshed cards/buttons, tech-stack component
   ========================================================= */

/* ---- Typography: Oswald for all headings & display labels (BS23 guideline) ---- */
h1, h2, h3, h4, h5, h6,
.section-eyebrow, .act-tag, .hero-eyebrow, .card h3, .pillar h3, .deliver-card h3,
.nav-link, .btn, .process-step h4, .ph-panel-top strong, .stat-number,
.footer-cta-title, .footer-col h6, .card-link, .explore, .mmh-icon + div strong,
.msi-icon + div strong, .ms-icon + div strong {
  font-family: var(--font-head);
}
h1, h2, h3 { letter-spacing: -0.01em; }
.section-eyebrow, .act-tag {
  text-transform: uppercase; letter-spacing: .12em; font-weight: 600;
}
.hero-content h1 { text-transform: uppercase; }
.btn { text-transform: uppercase; letter-spacing: .04em; font-weight: 500; font-size: .92rem; }

/* ---- Vibrant accent language: brand blue leads, warm pink/mint punctuate ---- */
.accent {
  background: linear-gradient(100deg, var(--ib-blue) 0%, var(--ib-cyan) 40%, var(--ib-orange) 72%, var(--ib-pink) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% auto; animation: accentShift 7s ease-in-out infinite;
}
@keyframes accentShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.stat-number {
  background: linear-gradient(100deg, var(--ib-blue-mid), var(--ib-blue) 45%, var(--ib-orange) 78%, var(--ib-mint));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.btn-primary {
  background: linear-gradient(115deg, var(--ib-blue-mid) 0%, var(--ib-blue) 55%, var(--ib-cyan) 100%);
  border: none; position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .3s ease;
  background: linear-gradient(115deg, var(--ib-pink), var(--ib-orange) 55%, var(--ib-blue));
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { box-shadow: 0 14px 30px -6px rgba(236, 72, 153, 0.35), 0 10px 24px rgba(35, 35, 199, 0.3); }
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }

/* ---- Refreshed card treatment: top accent bar + crisper edge ---- */
.card, .pillar, .deliver-card, .stat-card {
  position: relative; border-radius: var(--radius-md);
}
.card::before, .pillar::before, .deliver-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: linear-gradient(90deg, var(--ib-blue), var(--ib-cyan) 45%, var(--ib-pink) 75%, var(--ib-mint));
  opacity: 0; transform: scaleX(.4); transform-origin: left; transition: opacity .3s ease, transform .35s var(--ease);
}
.card:hover::before, .pillar:hover::before, .deliver-card:hover::before { opacity: 1; transform: scaleX(1); }
.card:hover, .pillar:hover, .deliver-card:hover { box-shadow: 0 18px 40px -12px rgba(35,35,199,0.22); }
.card-icon { transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease); }
.card:hover .card-icon { transform: scale(1.14) rotate(-8deg); background: var(--ib-blue); color: #fff; }
.pillar-num { transition: transform .35s var(--ease); display: inline-block; }
.pillar:hover .pillar-num { transform: scale(1.18); }
.industry-chip, .ms-icon, .msi-icon { transition: transform .35s var(--ease); }
.industry-chip:hover { transform: translateY(-4px); }
.industry-chip:hover .ic-icon, .mega-sub:hover .ms-icon, .mega-side-item:hover .msi-icon { transform: scale(1.12) rotate(-6deg); }

/* ---- Section eyebrow marker refresh: small dash instead of plain text ---- */
.section-eyebrow { position: relative; padding-left: 1.15rem; }
.section-eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%; width: .7rem; height: 2px; transform: translateY(-50%);
  background: linear-gradient(90deg, var(--ib-pink), var(--ib-orange));
}

@media (prefers-reduced-motion: reduce) {
  .accent { animation: none !important; }
}

/* ---- Tech stack showcase (used on custom-ecommerce, services etc.) ---- */
.tech-stack-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.tech-stack-group {
  position: relative;
  border: 1px solid var(--ib-border); border-radius: var(--radius-lg); background: #fff;
  padding: 1.75rem 1.5rem 1.9rem; transition: box-shadow .3s ease, transform .3s ease;
  overflow: hidden;
}
.tech-stack-group::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--ib-blue), var(--ib-cyan));
}
.tsg-backend::before { background: linear-gradient(90deg, var(--ib-orange), var(--ib-deep-orange, #f48130)); }
.tsg-mobile::before { background: linear-gradient(90deg, var(--ib-cyan), var(--ib-blue-mid)); }
.tsg-database::before { background: linear-gradient(90deg, var(--ib-navy), var(--ib-blue-mid)); }
.tech-stack-group:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.tsg-title { font-family: var(--font-head); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; color: var(--ib-blue-mid); margin-bottom: 1.25rem; display: flex; align-items: center; gap: .55rem; }
.tsg-title i { color: var(--ib-orange); font-size: .95rem; }
.tsg-items { display: flex; flex-wrap: wrap; gap: .65rem; }
.tsg-chip {
  display: flex; align-items: center; gap: .6rem; padding: .45rem .95rem .45rem .45rem;
  border-radius: var(--radius-full); background: var(--ib-off); border: 1px solid var(--ib-border);
  font-size: .86rem; font-weight: 600; color: var(--ib-text); font-family: var(--font-head);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tsg-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--ib-blue); }
.tsg-icon {
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff; box-shadow: 0 2px 6px rgba(17, 17, 46,0.12), inset 0 0 0 1px rgba(17, 17, 46,0.05);
  font-family: var(--font-head); font-weight: 700; font-size: .62rem; color: var(--ib-blue-mid); letter-spacing: -.02em;
  overflow: hidden;
}
.tsg-icon img { width: 20px; height: 20px; object-fit: contain; display: block; }

/* ---- Industry chips (used on shopify/woocommerce industries-served) ---- */
.industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.industry-chip {
  display: flex; flex-direction: column; align-items: center; gap: .6rem; text-align: center;
  padding: 1.5rem 1rem; border-radius: var(--radius-lg); background: linear-gradient(180deg, #fff, var(--ib-off));
  border: 1px solid var(--ib-border); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.industry-chip:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.industry-chip .ic-icon { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--ib-muted-bg); color: var(--ib-blue); font-size: 1.2rem; }
.industry-chip span { font-family: var(--font-head); font-weight: 500; font-size: .88rem; color: var(--ib-navy); }

@media (max-width: 640px) {
  .btn { letter-spacing: .02em; }
}

/* =========================================================
   PHASE 5 — Ecosystem video showcase + Back-to-top rocket
   ========================================================= */
.eco-video-section { position: relative; }
.eco-video-frame {
  position: relative; border-radius: var(--radius-xl); overflow: hidden; background: #030b1c;
  aspect-ratio: 16/9; box-shadow: 0 30px 70px rgba(5,15,40,.28);
}
.eco-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.eco-video-glow {
  position: absolute; inset: -2px; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  background: radial-gradient(ellipse at 30% 20%, rgba(35, 35, 199,.18), transparent 60%);
}
.eco-video-mute {
  position: absolute; right: 1rem; bottom: 1rem; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(8,20,45,.65); backdrop-filter: blur(6px); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: background .25s ease, transform .25s ease;
}
.eco-video-mute:hover { background: rgba(35, 35, 199,.85); transform: scale(1.06); }

/* Back-to-top rocket */
.back-to-top {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 500;
  width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--ib-blue-mid), var(--ib-blue), var(--ib-orange));
  color: #fff; font-size: 1.15rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(17, 17, 46,.28);
  opacity: 0; pointer-events: none; transform: translateY(16px) scale(.85);
  transition: opacity .3s ease, transform .3s ease;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.back-to-top:hover { transform: translateY(-4px) scale(1.05); }
.back-to-top i { animation: rocketFloat 2.2s ease-in-out infinite; }
@keyframes rocketFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@media (max-width: 640px) {
  .back-to-top { right: 1rem; bottom: 1rem; width: 46px; height: 46px; font-size: 1rem; }
}

/* =========================================================
   PHASE 6 — Hero logo-orbit graphic (replaces video/SVG)
   ========================================================= */
.hero-logo-orbit { min-height: 460px; display: flex; align-items: center; justify-content: center; }
.hlo-frame {
  position: relative; width: 100%; max-width: 480px; aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
}
.hlo-circle { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.hlo-grid-dots {
  position: absolute; inset: 6%; border-radius: 50%;
  background-image: radial-gradient(rgba(35, 35, 199,0.16) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(circle, #000 60%, transparent 78%);
  mask-image: radial-gradient(circle, #000 60%, transparent 78%);
}
.hlo-ring {
  position: absolute; border-radius: 50%; border: 1.5px dashed rgba(35, 35, 199,0.35);
  animation: hloSpin 34s linear infinite;
}
.hlo-ring-1 { inset: 12%; }
.hlo-ring-2 { inset: 24%; border-color: rgba(123, 92, 250,0.3); animation-duration: 26s; animation-direction: reverse; }
@keyframes hloSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hlo-core {
  position: relative; z-index: 3; width: 148px; height: 148px; border-radius: 50%;
  background: linear-gradient(135deg, #0f2a52, #0B0B63 60%, #2323C7);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 10px rgba(35, 35, 199,0.08), 0 20px 50px rgba(5,15,40,.28);
  animation: heroCorePulse 3.4s ease-in-out infinite;
}
.hlo-core img { width: 74%; height: auto; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,.25)); }

/* Fixed, always-upright service badges arranged around the core (no rotation on text) */
.hlo-fixed { position: absolute; inset: 0; z-index: 2; }
.hlo-node {
  position: absolute;
  display: flex; align-items: center; gap: .45rem;
  background: #fff; border: 1px solid var(--ib-border-soft); border-radius: var(--radius-full);
  padding: .5rem .85rem; font-family: var(--font-head); font-weight: 500; font-size: .74rem; color: var(--ib-navy);
  box-shadow: var(--shadow); white-space: nowrap;
  animation: cardBob 4.5s ease-in-out infinite;
}
.hlo-node i { color: var(--ib-blue); }
.hlo-node span { max-width: 132px; overflow: hidden; text-overflow: ellipsis; }

/* 8 fixed points around the circle, evenly spaced */
.hlo-p1 { top: 2%;  left: 50%; transform: translate(-50%, 0); animation-delay: 0s; }
.hlo-p2 { top: 15%; right: -6%; animation-delay: .3s; }
.hlo-p3 { top: 50%; right: -10%; transform: translate(0, -50%); animation-delay: .6s; }
.hlo-p4 { bottom: 15%; right: -6%; animation-delay: .9s; }
.hlo-p5 { bottom: 0%; left: 50%; transform: translate(-50%, 0); animation-delay: 1.2s; }
.hlo-p6 { bottom: 15%; left: -6%; animation-delay: 1.5s; }
.hlo-p7 { top: 50%; left: -10%; transform: translate(0, -50%); animation-delay: 1.8s; }
.hlo-p8 { top: 15%; left: -6%; animation-delay: 2.1s; }
.hlo-p4 i, .hlo-p6 i, .hlo-p8 i { color: var(--ib-orange); }

@media (max-width: 900px) {
  .hlo-frame { max-width: 380px; }
  .hlo-node { font-size: .68rem; padding: .4rem .7rem; }
  .hlo-node span { max-width: 96px; }
  .hlo-core { width: 120px; height: 120px; }
  .hlo-p2, .hlo-p3, .hlo-p4 { right: -3%; }
  .hlo-p6, .hlo-p7, .hlo-p8 { left: -3%; }
}

/* Mobile: keep the spinning circle as a compact centred graphic, and reflow the
   8 capability badges into a static 2-column grid underneath instead of hiding
   them — nothing gets clipped or overlapped at narrow widths. */
@media (max-width: 640px) {
  .hero-logo-orbit { min-height: auto; padding: 0.5rem 0; }
  .hlo-frame {
    max-width: 100%;
    aspect-ratio: auto;
    flex-direction: column;
    gap: 1.35rem;
    padding: 0.5rem 0;
  }
  .hlo-circle {
    position: relative;
    inset: auto;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
  }
  .hlo-core { width: 96px; height: 96px; }
  .hlo-fixed.hlo-fixed {
    position: static;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
    width: 100%;
    max-width: 380px;
  }
  .hlo-fixed .hlo-node.hlo-node {
    position: static;
    inset: auto;
    top: auto; left: auto; right: auto; bottom: auto;
    transform: none;
    justify-content: center;
    text-align: center;
    animation: none;
    font-size: 0.72rem;
    padding: 0.55rem 0.5rem;
  }
  .hlo-fixed .hlo-node span { max-width: none; white-space: normal; line-height: 1.25; }
}
@media (max-width: 380px) {
  .hlo-fixed.hlo-fixed { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hlo-ring, .hlo-core, .hlo-node { animation: none !important; }
}

/* ---- Final mobile polish (Phase 9): consistent spacing + alignment ---- */
@media (max-width: 768px) {
  .aidlc-section, .team-section { padding: 3.25rem 0 3.5rem; }
  .aidlc-card { padding: 1.25rem 1.1rem 1.4rem; }
  .editorial-band .eb-big { line-height: 1.55; }
  .dot-divider { padding: 1rem 0; }
  .dot-divider .dd-line { max-width: 60px; }
  .tech-stack-group { padding: 1.4rem 1.15rem 1.5rem; }
  .industry-grid, .tsg-items { justify-content: center; }
  .v-timeline { padding-left: 1.75rem; }
  .connect-card, .aidlc-card, .pillar { text-align: left; }
}
@media (max-width: 560px) {
  .section { padding: 3.25rem 0; }
  .section-header { margin-bottom: 2rem; }
  .stat-number { font-size: 1.6rem; }
  .compare-table th, .compare-table td { padding: .7rem .85rem; font-size: .85rem; }
}

/* =========================================================
   PHASE 7 — Deep redesign: AIDLC (dark, connected timeline)
   ========================================================= */
.aidlc-section {
  padding: 5rem 0 5.5rem;
  background:
    radial-gradient(circle at 15% 10%, rgba(35, 35, 199,0.16), transparent 45%),
    radial-gradient(circle at 88% 90%, rgba(123, 92, 250,0.12), transparent 42%),
    linear-gradient(180deg, #0a1c3d 0%, #11112E 55%, #0a1c3d 100%);
  border-top: none; border-bottom: none;
  position: relative; overflow: hidden;
}
.aidlc-section::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .4;
}
.aidlc-section .container { position: relative; z-index: 1; }
.aidlc-section .section-eyebrow { color: var(--ib-blue); }
.aidlc-section .section-eyebrow::before { background: var(--ib-orange); }
.aidlc-section h2 { color: #fff; }
.aidlc-section .section-header p { color: rgba(255,255,255,0.62); }
.aidlc-grid::before { background: linear-gradient(90deg, #2323C7, #5865F5 40%, #7B5CFA); opacity: .55; }
.aidlc-card {
  background: rgba(15, 34, 65, 0.65);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 34px rgba(2,8,24,0.35);
}
.aidlc-card:hover {
  border-color: rgba(35, 35, 199,0.4);
  box-shadow: 0 20px 44px rgba(2,8,24,0.5);
}
.aidlc-num {
  box-shadow: 0 0 0 6px rgba(35, 35, 199,0.12), 0 8px 20px rgba(35, 35, 199,0.35);
}
.aidlc-card h3 { color: #fff; }
.aidlc-card p { color: rgba(255,255,255,0.6); }
.aidlc-card ul { color: rgba(255,255,255,0.72); }
.aidlc-card ul li::marker { color: var(--ib-blue); }
.aidlc-pill {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); color: #fff;
}
.aidlc-pill i { color: var(--ib-orange); }

/* =========================================================
   PHASE 7b — Deep redesign: Team & Delivery (dark band)
   ========================================================= */
.team-section {
  padding: 5rem 0 5.5rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(123, 92, 250,0.14), transparent 42%),
    radial-gradient(circle at 10% 85%, rgba(35, 35, 199,0.16), transparent 45%),
    linear-gradient(180deg, #0a1c3d 0%, #11112E 100%);
  position: relative; overflow: hidden;
}
.team-section::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .4;
}
.team-section .container { position: relative; z-index: 1; }
.team-section .section-eyebrow { color: var(--ib-blue); }
.team-section .section-eyebrow::before { background: var(--ib-orange); }
.team-section h2 { color: #fff; }
.team-section .section-header p { color: rgba(255,255,255,0.62); }
.team-roles { position: relative; }
.team-role { position: relative; }
.team-role span { color: rgba(255,255,255,0.94); text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.team-section .tr-icon { box-shadow: 0 0 0 8px color-mix(in srgb, var(--rc) 16%, transparent), 0 10px 24px -4px color-mix(in srgb, var(--rc) 65%, transparent); }
.team-footnote { color: rgba(255,255,255,0.72); }

/* ---- Connecting flow arrows (Four moves section) ---- */
.connect-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0 .75rem;
}
.connect-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--ib-border); font-size: 1.1rem;
}
@media (max-width: 900px) {
  .connect-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .connect-arrow { display: none; }
}
@media (max-width: 560px) {
  .connect-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   PHASE 10 — Embedded Google Form on Contact page
   ========================================================= */
.contact-form-card--embed { padding: 1.75rem 1.25rem 1.25rem; }
.gform-embed-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 920px;
  background: #fff;
}
.gform-embed-wrap iframe {
  width: 100%;
  height: 920px;
  border: 0;
  display: block;
}
.gform-loading {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; background: #fff; color: var(--ib-text-3); font-size: .9rem; font-weight: 600;
}
.gform-loading i { color: var(--ib-blue); }
@media (max-width: 640px) {
  .gform-embed-wrap, .gform-embed-wrap iframe { min-height: 1040px; height: 1040px; }
}

/* =========================================================
   PHASE 11 — Vibrant, animated "Growth Marketing" showcase
   A colourful, energetic card grid used on growth-marketing
   pages to feel more like a creative agency than legacy SaaS.
   ========================================================= */
.mkt-showcase { position: relative; overflow: hidden; padding: 4.5rem 0; }
.mkt-showcase .mkt-float {
  position: absolute; border-radius: 50%; z-index: var(--z-bg); pointer-events: none;
  filter: blur(70px); opacity: .16; animation: meshDrift 19s ease-in-out infinite;
}
.mkt-showcase .mkt-float-a { width: 32vw; height: 32vw; top: -10%; right: -6%; background: radial-gradient(circle, var(--ib-pink), transparent 70%); }
.mkt-showcase .mkt-float-b { width: 26vw; height: 26vw; bottom: -12%; left: -6%; background: radial-gradient(circle, var(--ib-mint), transparent 70%); animation-delay: -8s; }
.mkt-showcase .container { position: relative; z-index: var(--z-content); }

.mkt-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem; margin-top: 2rem;
}
.mkt-card {
  --mkt-color: var(--ib-blue);
  display: block; text-decoration: none; color: inherit;
  position: relative; padding: 1.85rem 1.6rem; border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #fff 0%, var(--ib-off) 100%);
  border: 1px solid var(--ib-border); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.mkt-card::before {
  content: ''; position: absolute; top: -45%; right: -35%; width: 65%; height: 65%; border-radius: 50%;
  background: var(--mkt-color); opacity: .14; filter: blur(28px);
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.mkt-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 22px 44px -14px color-mix(in srgb, var(--mkt-color) 45%, transparent);
  border-color: var(--mkt-color);
}
.mkt-card:hover::before { transform: scale(1.5); opacity: .26; }
.mkt-icon {
  position: relative; z-index: 1; width: 54px; height: 54px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem; color: #fff;
  background: var(--mkt-color); margin-bottom: 1.1rem;
  box-shadow: 0 10px 22px -6px var(--mkt-color);
  transition: transform .4s var(--ease);
}
.mkt-card:hover .mkt-icon { transform: scale(1.14) rotate(-8deg); }
.mkt-card h3 { position: relative; z-index: 1; margin-bottom: .5rem; font-family: var(--font-head); font-size: 1.05rem; }
.mkt-card p { position: relative; z-index: 1; color: var(--ib-text-3); font-size: .92rem; line-height: 1.6; margin: 0; }
.mkt-card .mkt-tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.1rem; }
.mkt-card .mkt-tags span {
  font-size: .72rem; font-weight: 700; padding: .28rem .65rem; border-radius: 999px;
  background: color-mix(in srgb, var(--mkt-color) 12%, #fff); color: var(--mkt-color);
}

/* ---- SMS type cards (numbered, colorful) ---- */
.sms-type-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem; margin-top: 2rem;
}
.sms-type-card {
  --stc: var(--ib-blue);
  position: relative; padding: 1.85rem 1.6rem; border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #fff 0%, var(--ib-off) 100%);
  border: 1px solid var(--ib-border); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.sms-type-card::before {
  content: ''; position: absolute; top: -40%; right: -30%; width: 60%; height: 60%;
  background: var(--stc); border-radius: 50%; opacity: .12; filter: blur(20px);
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.sms-type-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 22px 44px -14px color-mix(in srgb, var(--stc) 45%, transparent);
  border-color: var(--stc);
}
.sms-type-card:hover::before { transform: scale(1.5); opacity: .24; }
.sms-type-num {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 1.1rem;
  background: var(--stc); color: #fff; font-weight: 800; font-size: 0.92rem;
  box-shadow: 0 10px 22px -6px var(--stc);
  transition: transform .4s var(--ease);
}
.sms-type-card:hover .sms-type-num { transform: scale(1.12) rotate(-6deg); }
.sms-type-card h3 { position: relative; z-index: 1; margin-bottom: .5rem; font-family: var(--font-head); font-size: 1.05rem; }
.sms-type-card p { position: relative; z-index: 1; color: var(--ib-text-3); font-size: .92rem; line-height: 1.6; margin: 0 0 1.1rem; }
.sms-type-tag {
  position: relative; z-index: 1; display: inline-block;
  font-size: .72rem; font-weight: 700; padding: .28rem .75rem; border-radius: 999px;
  background: color-mix(in srgb, var(--stc) 12%, #fff); color: var(--stc);
  text-transform: uppercase; letter-spacing: .03em;
}

/* ---- Volume-based pricing cards ---- */
.sms-pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem;
  align-items: stretch;
}
@media (max-width: 900px) { .sms-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.sms-pricing-card {
  position: relative; background: #fff; border: 1.5px solid var(--ib-border);
  border-radius: var(--radius-xl); padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.sms-pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.sms-pricing-card.featured {
  border-color: var(--ib-blue); box-shadow: 0 24px 50px -18px rgba(35,35,199,0.35);
  background: linear-gradient(165deg, #fff 0%, var(--ib-muted-bg) 100%);
}
.sms-pricing-badge {
  position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg, var(--ib-blue), var(--ib-cyan)); color: #fff;
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  padding: 0.35rem 1rem; border-radius: 999px; box-shadow: 0 8px 18px -6px rgba(35,35,199,0.5);
}
.sms-pricing-plan { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--ib-text-4); }
.sms-pricing-card h3 { font-size: 1.5rem; margin: 0.3rem 0 0.3rem; }
.sms-pricing-sub { color: var(--ib-text-3); font-size: 0.88rem; margin: 0 0 1.4rem; }
.sms-pricing-rows { display: flex; flex-direction: column; border-top: 1px solid var(--ib-border); }
.sms-pricing-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 0; border-bottom: 1px solid var(--ib-border);
  font-size: 0.88rem;
}
.sms-pricing-row span { color: var(--ib-text-4); }
.sms-pricing-row strong { color: var(--ib-navy); font-weight: 700; }
.sms-pricing-row strong .fa-check { color: var(--ib-mint); margin-right: 0.3rem; }

/* ---- Inline "need a custom volume" CTA ---- */
.sms-cta-mini {
  margin-top: 2rem; padding: 1.75rem 2rem; border-radius: var(--radius-xl);
  background: linear-gradient(120deg, rgba(35,35,199,0.07), rgba(6,182,212,0.07));
  border: 1px solid var(--ib-border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.25rem;
}
.sms-cta-mini h3 { font-size: 1.15rem; margin: 0 0 0.3rem; }
.sms-cta-mini p { margin: 0; color: var(--ib-text-3); font-size: 0.9rem; }

/* ---- Voice SMS duration/volume pricing cards (no buy button, WhatsApp CTA only) ---- */
.voice-pricing-tier-label {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 800;
  color: var(--ib-navy); margin: 0 0 1.1rem;
}
.voice-pricing-tier-label i { color: var(--ib-amber); font-size: 0.95rem; }
.voice-pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
@media (max-width: 980px) { .voice-pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .voice-pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; } }
.voice-pricing-card {
  background: #fff; border: 1.5px solid var(--ib-border); border-radius: var(--radius-xl);
  padding: 1.85rem 1.5rem; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.voice-pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--ib-amber); }
.voice-pricing-card.featured {
  background: linear-gradient(150deg, var(--ib-amber), #fb923c);
  border-color: transparent; color: #fff;
  box-shadow: 0 24px 50px -18px rgba(245,158,11,0.45);
}
.voice-pricing-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--ib-amber); margin-bottom: 1rem;
}
.voice-pricing-card.featured .voice-pricing-badge { color: #fff; }
.voice-pricing-rate {
  font-family: var(--font-display); font-size: 2.15rem; font-weight: 800;
  color: var(--ib-amber); margin: 0 0 1.35rem; line-height: 1;
}
.voice-pricing-card.featured .voice-pricing-rate { color: #fff; }
.voice-pricing-rate .cur { font-size: 1.05rem; font-weight: 700; vertical-align: top; margin-right: 0.1rem; }
.voice-pricing-rate small { font-size: 0.72rem; font-weight: 600; opacity: 0.65; margin-left: 0.15rem; }
.voice-pricing-rows {
  display: flex; flex-direction: column; gap: 0.65rem; text-align: left;
  border-top: 1px solid var(--ib-border); padding-top: 1.1rem;
}
.voice-pricing-card.featured .voice-pricing-rows { border-top-color: rgba(255,255,255,0.35); }
.voice-pricing-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.84rem; color: var(--ib-text-3); }
.voice-pricing-card.featured .voice-pricing-row { color: rgba(255,255,255,0.92); }
.voice-pricing-row i { width: 16px; text-align: center; color: var(--ib-amber); font-size: 0.85rem; }
.voice-pricing-card.featured .voice-pricing-row i { color: #fff; }
.voice-pricing-row strong { color: var(--ib-navy); font-weight: 700; }
.voice-pricing-card.featured .voice-pricing-row strong { color: #fff; }
.voice-sip-note {
  margin: 2rem auto 0; max-width: 640px; text-align: center;
  font-size: 0.88rem; color: var(--ib-text-3); padding: 0.9rem 1.4rem;
  border: 1px dashed var(--ib-border); border-radius: var(--radius-lg); background: var(--ib-off);
}
.voice-sip-note i { color: var(--ib-amber); margin-right: 0.4rem; }
.voice-sip-note strong { color: var(--ib-navy); }

/* ---- Generic engagement/pricing plan cards (reusable across pages) ---- */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; align-items: stretch; }
@media (max-width: 900px) { .plan-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.plan-card {
  position: relative; background: #fff; border: 1.5px solid var(--ib-border); border-radius: var(--radius-xl);
  padding: 2rem 1.75rem; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.plan-card.featured {
  border-color: var(--ib-blue); box-shadow: 0 24px 50px -18px rgba(35,35,199,0.35);
  background: linear-gradient(165deg, #fff 0%, var(--ib-muted-bg) 100%);
}
.plan-ribbon {
  position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg, var(--ib-blue), var(--ib-cyan)); color: #fff;
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 0.35rem 1rem; border-radius: 999px; box-shadow: 0 8px 18px -6px rgba(35,35,199,0.5);
  white-space: nowrap;
}
.plan-name { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ib-text-4); }
.plan-card h3 { font-size: 1.4rem; margin: 0.3rem 0 0.5rem; }
.plan-desc { color: var(--ib-text-3); font-size: 0.9rem; line-height: 1.6; margin: 0 0 1.4rem; }
.plan-rate { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--ib-blue); margin: 0 0 1.4rem; }
.plan-rate small { font-size: 0.72rem; font-weight: 600; color: var(--ib-text-4); margin-left: 0.25rem; }
.plan-rows { display: flex; flex-direction: column; border-top: 1px solid var(--ib-border); margin-top: auto; padding-top: 1rem; gap: 0.15rem; }
.plan-row { display: flex; align-items: flex-start; gap: 0.5rem; padding: 0.4rem 0; font-size: 0.85rem; color: var(--ib-text-3); }
.plan-row i { color: var(--ib-blue); margin-top: 0.2rem; font-size: 0.8rem; }

@media (prefers-reduced-motion: reduce) {
  .mkt-showcase .mkt-float { animation: none !important; }
}

/* ---- Vibrant badge chip variants (used across services/products copy) ---- */
.chip-pink { background: color-mix(in srgb, var(--ib-pink) 14%, #fff); color: var(--ib-magenta); }
.chip-mint { background: color-mix(in srgb, var(--ib-mint) 16%, #fff); color: #0f766e; }
.chip-amber { background: color-mix(in srgb, var(--ib-amber) 16%, #fff); color: #b45309; }

/* =========================================================
   PHASE 12 — About / Mission / Vision bespoke animated blocks
   ========================================================= */

/* ---- About: Manifesto statement block ---- */
.manifesto {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  padding: clamp(2rem, 5vw, 3.75rem); margin-top: 1.5rem;
  background: linear-gradient(155deg, var(--ib-navy) 0%, var(--ib-blue-deep) 55%, var(--ib-blue) 100%);
  color: #fff;
}
.manifesto::before, .manifesto::after {
  content: ''; position: absolute; width: 46%; height: 46%; border-radius: 50%; filter: blur(60px); opacity: .35;
  animation: meshDrift 16s ease-in-out infinite;
}
.manifesto::before { top: -14%; right: -8%; background: var(--ib-pink); }
.manifesto::after { bottom: -18%; left: -6%; background: var(--ib-mint); animation-delay: -6s; }
.manifesto-mark { position: relative; z-index: 1; font-size: 2.75rem; line-height: 1; color: var(--ib-cyan); opacity: .8; font-family: Georgia, serif; }
.manifesto-quote {
  position: relative; z-index: 1; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem); line-height: 1.5; max-width: 880px; margin: .5rem 0 0;
}
.manifesto-quote .hl {
  background: linear-gradient(120deg, #7DD3FC, #C4B5FD 45%, #F9A8D4 85%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% auto; animation: accentShift 6s ease-in-out infinite;
}
.manifesto-foot { position: relative; z-index: 1; margin-top: 1.75rem; display: flex; gap: .6rem; align-items: center; font-weight: 700; font-size: .85rem; color: #B9C2FF; }
.manifesto-foot i { color: var(--ib-mint); }

/* ---- Mission: Radar / target concept ---- */
.radar-section { display: grid; grid-template-columns: 320px 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
@media (max-width: 860px) { .radar-section { grid-template-columns: 1fr; justify-items: center; text-align: center; } }
.radar-wrap { position: relative; width: 300px; height: 300px; flex: none; }
.radar-ring { position: absolute; border-radius: 50%; border: 1.5px solid var(--ib-border-soft); }
.radar-ring.r1 { inset: 0; }
.radar-ring.r2 { inset: 15%; border-color: color-mix(in srgb, var(--ib-cyan) 40%, var(--ib-border-soft)); }
.radar-ring.r3 { inset: 30%; border-color: color-mix(in srgb, var(--ib-orange) 40%, var(--ib-border-soft)); }
.radar-sweep-clip {
  /* Clips the rotating square's bounding box to a circle so the 45°-rotation
     diagonal never expands past the wrap and triggers horizontal page scroll. */
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
}
.radar-sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, color-mix(in srgb, var(--ib-blue) 55%, transparent) 0deg, transparent 55deg);
  animation: hloSpin 5s linear infinite;
}
.radar-core {
  position: absolute; inset: 38%; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--ib-blue), var(--ib-blue-mid)); color: #fff; font-size: 1.5rem;
  box-shadow: 0 12px 30px -8px rgba(35,35,199,.55); animation: heroCorePulse 3.2s ease-in-out infinite;
}
.radar-node {
  position: absolute; display: flex; align-items: center; gap: .4rem; padding: .4rem .75rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--ib-border); box-shadow: var(--shadow-sm); font-size: .74rem; font-weight: 700;
  color: var(--ib-navy); white-space: nowrap; animation: bob 4.5s ease-in-out infinite;
}
.radar-node i { font-size: .8rem; }
.radar-node.n1 { top: -6%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.radar-node.n1 i { color: var(--ib-mint); }
.radar-node.n2 { bottom: 6%; left: -12%; animation-delay: 1.1s; }
.radar-node.n2 i { color: var(--ib-orange); }
.radar-node.n3 { bottom: 6%; right: -12%; animation-delay: 2.2s; }
.radar-node.n3 i { color: var(--ib-pink); }

/* ---- Vision: Horizon / growth-line concept ---- */
.horizon-wrap {
  position: relative; border-radius: var(--radius-xl); overflow: hidden; height: 260px;
  background: linear-gradient(180deg, #EFF1FF 0%, #fff 100%); border: 1px solid var(--ib-border-soft);
}
.horizon-bars { position: absolute; left: 0; right: 0; bottom: 0; display: flex; align-items: flex-end; gap: 2.2%; padding: 0 6%; height: 78%; }
.horizon-bars i { flex: 1; border-radius: 6px 6px 0 0; transform-origin: bottom; animation: horizonGrow .9s var(--ease) both, horizonPulse 3.6s ease-in-out infinite; }
.horizon-bars i:nth-child(1) { height: 30%; background: var(--ib-cyan); animation-delay: 0s, .9s; }
.horizon-bars i:nth-child(2) { height: 46%; background: var(--ib-blue); animation-delay: .1s, 1s; }
.horizon-bars i:nth-child(3) { height: 38%; background: var(--ib-orange); animation-delay: .2s, 1.1s; }
.horizon-bars i:nth-child(4) { height: 64%; background: var(--ib-blue-mid); animation-delay: .3s, 1.2s; }
.horizon-bars i:nth-child(5) { height: 55%; background: var(--ib-mint); animation-delay: .4s, 1.3s; }
.horizon-bars i:nth-child(6) { height: 82%; background: var(--ib-pink); animation-delay: .5s, 1.4s; }
.horizon-bars i:nth-child(7) { height: 70%; background: var(--ib-magenta); animation-delay: .6s, 1.5s; }
.horizon-bars i:nth-child(8) { height: 100%; background: linear-gradient(180deg, var(--ib-blue), var(--ib-cyan)); animation-delay: .7s, 1.6s; }
@keyframes horizonGrow { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }
@keyframes horizonPulse { 0%,100% { filter: brightness(1); } 50% { filter: brightness(1.18); } }
.horizon-line { position: absolute; inset: 0; width: 100%; height: 100%; }
.horizon-line path { stroke-dasharray: 8 6; animation: dashFlow 3s linear infinite; }
.horizon-line circle { animation: diagramPulse 2.4s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .manifesto::before, .manifesto::after, .manifesto-quote .hl, .radar-sweep, .radar-core, .radar-node,
  .horizon-bars i, .horizon-line path, .horizon-line circle { animation: none !important; }
}

/* =========================================================
   PHASE 13 — Half-orbital "solar system" tech-stack section
   ========================================================= */
.orbit-section { position: relative; padding-top: 1rem; }
.orbit-stage {
  position: relative; width: 100%; max-width: 920px; margin: 2.5rem auto 0;
  height: clamp(320px, 42vw, 460px); overflow: hidden;
}
.orbit-hub {
  position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 40%);
  width: 108px; height: 108px; border-radius: 50%; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(150deg, var(--ib-blue), var(--ib-blue-mid) 55%, var(--ib-orange));
  color: #fff; box-shadow: 0 18px 44px -14px rgba(35,35,199,.55);
  animation: heroCorePulse 3.4s ease-in-out infinite;
}
.orbit-hub i { font-size: 1.3rem; }
.orbit-hub span { font-size: .62rem; font-weight: 800; letter-spacing: .02em; margin-top: .2rem; }
.orbit-path {
  position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 50%);
  border-radius: 50%; border: 1.5px dashed var(--ib-border-soft);
}
.orbit-track {
  position: absolute; inset: 0; border-radius: 50%;
  animation: hloSpin linear infinite;
}
.orbit-planet {
  position: absolute; top: -1px; left: 50%; transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: .4rem; padding: .38rem .7rem .38rem .4rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--ib-border); box-shadow: var(--shadow-sm);
  font-size: .74rem; font-weight: 700; color: var(--ib-navy); white-space: nowrap;
  animation: hloSpin linear infinite reverse;
}
.orbit-planet .op-ico {
  width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .72rem; flex: none;
}
.orbit-p1 { width: 560px; height: 280px; }
.orbit-p2 { width: 420px; height: 210px; }
.orbit-p3 { width: 280px; height: 140px; }
.orbit-t1 { animation-duration: 34s; }
.orbit-t2 { animation-duration: 24s; animation-direction: reverse; }
.orbit-t3 { animation-duration: 16s; }
@media (max-width: 640px) {
  .orbit-p1 { width: 340px; height: 170px; } .orbit-p2 { width: 260px; height: 130px; } .orbit-p3 { width: 180px; height: 90px; }
  .orbit-planet span { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-hub, .orbit-track { animation: none !important; }
}

/* =========================================================
   PHASE 14 — Tech stack: simple colorful animated logo grid
   (replaces the earlier half-orbital "solar system" version)
   ========================================================= */
.tech-panels { position: relative; margin-top: 1rem; }
.tstack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 0.9rem;
  max-width: 900px;
  margin: 0 auto;
}
.tstack-card {
  --tc: #5865F5;
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 0.65rem;
  padding: 1.35rem 0.75rem 1.1rem;
  border-radius: 16px;
  background: linear-gradient(165deg, color-mix(in srgb, var(--tc) 24%, #16265a), color-mix(in srgb, var(--tc) 7%, #0f1c40));
  border: 1px solid color-mix(in srgb, var(--tc) 45%, transparent);
  box-shadow: 0 10px 24px -12px rgba(0,0,0,.5);
  opacity: 0; transform: translateY(14px) scale(.94);
  animation: tstackPop .55s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 0.055s);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.tstack-card::before {
  content: ""; position: absolute; top: 0; left: 12%; right: 12%; height: 2px; border-radius: 2px;
  background: var(--tc); opacity: .85;
}
.tstack-card:hover {
  transform: translateY(-5px) scale(1.035);
  border-color: color-mix(in srgb, var(--tc) 80%, transparent);
  box-shadow: 0 16px 34px -10px color-mix(in srgb, var(--tc) 55%, transparent);
}
.tstack-logo {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.95);
  box-shadow: 0 6px 16px -6px color-mix(in srgb, var(--tc) 70%, transparent);
  transition: transform .3s var(--ease);
}
.tstack-card:hover .tstack-logo { transform: scale(1.1) rotate(-4deg); }
.tstack-logo img { width: 30px; height: 30px; object-fit: contain; }
.tstack-fallback {
  width: 100%; height: 100%; border-radius: 14px;
  align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800; letter-spacing: .02em;
  color: #fff; background: linear-gradient(150deg, var(--tc), color-mix(in srgb, var(--tc) 55%, #0b1f3a));
}
.tstack-name {
  font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.92);
  text-align: center; line-height: 1.25;
}
@keyframes tstackPop {
  from { opacity: 0; transform: translateY(14px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 720px) {
  .tstack-grid { grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 0.65rem; }
  .tstack-card { padding: 1.1rem 0.5rem 0.9rem; }
  .tstack-logo { width: 44px; height: 44px; }
  .tstack-logo img { width: 26px; height: 26px; }
  .tstack-name { font-size: .72rem; }
}
@media (prefers-reduced-motion: reduce) {
  .tstack-card { animation: none !important; opacity: 1; transform: none; }
}
/* Fix: ecommerce 3-col homepage grid must collapse responsively (was inline-forced 3 cols) */
.ecom-grid-3 { grid-template-columns: repeat(3,1fr); }
@media (max-width: 860px) { .ecom-grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .ecom-grid-3 { grid-template-columns: 1fr; } }

/* ===== In-page chat assistant (sitewide floating widget) =====
   Replaces the plain WhatsApp button: a small branded chat panel that
   greets every visitor, then hands the conversation off to WhatsApp. */
.chat-widget { position: fixed; right: 22px; bottom: 22px; z-index: var(--z-fab); }
.chat-fab {
  position: relative;
  width: 60px; height: 60px; border-radius: 50%;
  border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--ib-cyan), var(--ib-orange) 60%, var(--ib-pink));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px -4px rgba(88,101,245,0.55), 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.chat-fab:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 16px 36px -4px rgba(88,101,245,0.65), 0 4px 10px rgba(0,0,0,0.2); }
.chat-fab i { color: #fff; font-size: 1.55rem; position: relative; z-index: 2; }
.chat-fab-ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(123,92,250,0.5);
  animation: waPulseRing 2.2s ease-out infinite;
  z-index: 1;
}
@keyframes waPulseRing {
  0% { transform: scale(1); opacity: 0.65; }
  75% { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
.chat-fab-badge {
  position: absolute; top: -2px; right: -2px; z-index: 3;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--ib-pink); color: #fff; font-size: 0.68rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,.25);
  transition: transform .2s ease, opacity .2s ease;
}
.chat-fab-badge.hidden { opacity: 0; transform: scale(0); }

.chat-panel {
  position: absolute; right: 0; bottom: calc(100% + 16px);
  width: min(330px, calc(100vw - 44px));
  max-height: min(460px, 70vh);
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 22px 50px -12px rgba(11,11,60,0.35), 0 4px 14px rgba(0,0,0,0.1);
  border: 1px solid rgba(17,17,46,0.08);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(.97);
  transform-origin: bottom right;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  pointer-events: none;
}
.chat-widget.open .chat-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-panel-head {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(120deg, var(--ib-blue-mid), var(--ib-cyan) 55%, var(--ib-orange));
  color: #fff;
}
.chat-panel-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: 0 0 auto;
  background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.chat-panel-title { flex: 1; min-width: 0; }
.chat-panel-title strong { display: block; font-size: 0.92rem; }
.chat-panel-title span { display: flex; align-items: center; gap: 0.35rem; font-size: 0.72rem; color: rgba(255,255,255,0.85); }
.chat-online-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 2px rgba(74,222,128,0.35); display: inline-block; }
.chat-panel-close {
  background: rgba(255,255,255,0.15); border: none; color: #fff; cursor: pointer;
  width: 26px; height: 26px; border-radius: 50%; font-size: 1.1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
  transition: background .2s ease;
}
.chat-panel-close:hover { background: rgba(255,255,255,0.28); }
.chat-panel-body {
  flex: 1; overflow-y: auto; padding: 1rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  background: #f7f7fd;
}
.chat-bubble {
  max-width: 86%; padding: 0.65rem 0.85rem; border-radius: 14px;
  font-size: 0.85rem; line-height: 1.45;
  animation: chatBubbleIn .3s var(--ease);
}
.chat-bubble.bot {
  align-self: flex-start; background: #fff; color: var(--ib-navy);
  border: 1px solid var(--ib-border); border-bottom-left-radius: 4px;
}
.chat-bubble.user {
  align-self: flex-end; color: #fff; border-bottom-right-radius: 4px;
  background: linear-gradient(120deg, var(--ib-blue-mid), var(--ib-cyan));
}
@keyframes chatBubbleIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.15rem; }
.chat-chip {
  border: 1.5px solid var(--ib-border-soft); background: #fff; color: var(--ib-blue);
  font-size: 0.76rem; font-weight: 600; padding: 0.4rem 0.7rem; border-radius: 999px;
  cursor: pointer; transition: all .2s ease;
}
.chat-chip:hover { background: var(--ib-muted-bg); border-color: var(--ib-cyan); transform: translateY(-1px); }
.chat-chip:disabled { opacity: 0.55; cursor: default; transform: none; }
.chat-chip-agent {
  background: linear-gradient(120deg, var(--ib-blue-mid), var(--ib-cyan));
  border-color: transparent; color: #fff;
}
.chat-chip-agent:hover { background: linear-gradient(120deg, var(--ib-blue-mid), var(--ib-cyan)); border-color: transparent; filter: brightness(1.08); }
.chat-bubble.bot a { color: var(--ib-blue); font-weight: 700; }
.chat-typing { align-self: flex-start; display: flex; gap: 4px; padding: 0.7rem 0.9rem; background: #fff; border: 1px solid var(--ib-border); border-radius: 14px; border-bottom-left-radius: 4px; }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ib-text-4); animation: chatTyping 1.2s infinite ease-in-out; }
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes chatTyping { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }
.chat-panel-input {
  display: flex; gap: 0.5rem; padding: 0.7rem; border-top: 1px solid var(--ib-border); background: #fff;
}
.chat-panel-input input {
  flex: 1; border: 1.5px solid var(--ib-border); border-radius: 999px; padding: 0.55rem 0.9rem;
  font-size: 0.85rem; font-family: inherit; outline: none; transition: border-color .2s ease;
}
.chat-panel-input input:focus { border-color: var(--ib-cyan); }
.chat-panel-input button {
  width: 38px; height: 38px; border-radius: 50%; border: none; flex: 0 0 auto;
  background: linear-gradient(120deg, var(--ib-blue-mid), var(--ib-cyan)); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
  transition: transform .2s ease;
}
.chat-panel-input button:hover { transform: scale(1.08); }
.chat-panel-foot {
  text-align: center; font-size: 0.68rem; color: var(--ib-text-4); padding: 0.5rem 0.7rem 0.7rem; background: #fff;
}
.chat-panel-foot a { color: var(--ib-blue); font-weight: 600; }
@media (max-width: 640px) {
  .chat-widget { right: 16px; bottom: 16px; }
  .chat-fab { width: 52px; height: 52px; }
  .chat-fab i { font-size: 1.35rem; }
  .chat-panel { width: min(300px, calc(100vw - 32px)); }
}
@media (prefers-reduced-motion: reduce) {
  .chat-fab-ring { animation: none !important; }
}


/* ===== FAQ accordion (homepage) — always collapsed by default via <details> ===== */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.faq-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--ib-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  --faq-color: var(--ib-blue);
}
.faq-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--faq-color), transparent);
  opacity: 0; transition: opacity 0.25s var(--ease);
}
.faq-item:hover { border-color: color-mix(in srgb, var(--faq-color) 30%, var(--ib-border)); box-shadow: var(--shadow-sm); }
.faq-item:hover::before,
.faq-item[open]::before { opacity: 1; }
.faq-item[open] { box-shadow: 0 12px 28px -14px color-mix(in srgb, var(--faq-color) 40%, rgba(17,17,46,0.15)); }
.faq-question {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem; color: var(--ib-navy);
  cursor: pointer;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question .faq-q-icon {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%;
  background: color-mix(in srgb, var(--faq-color) 12%, #fff);
  color: var(--faq-color);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.faq-item[open] .faq-q-icon {
  background: var(--faq-color); color: #fff; transform: rotate(45deg);
}
.faq-answer {
  padding: 0 1.4rem 1.25rem;
  color: var(--ib-text-3);
  font-size: 0.94rem;
  line-height: 1.65;
  max-width: 68ch;
}
@media (max-width: 640px) {
  .faq-question { padding: 1rem 1.1rem; font-size: 0.92rem; gap: 0.75rem; }
  .faq-question .faq-q-icon { width: 28px; height: 28px; font-size: 0.8rem; }
  .faq-answer { padding: 0 1.1rem 1.1rem; font-size: 0.9rem; }
}

/* ===== Blog ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--ib-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover, .blog-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: color-mix(in srgb, var(--post-c1, var(--ib-blue)) 35%, var(--ib-border));
  outline: none;
}
.blog-thumb {
  position: relative;
  height: 172px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--post-c1, var(--ib-blue)) 0%, var(--post-c2, var(--ib-cyan)) 55%, var(--post-c3, var(--ib-pink)) 100%);
  background-size: 200% 200%;
  animation: meshDrift 13s ease-in-out infinite alternate;
}
.blog-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.55) 1px, transparent 1.4px);
  background-size: 24px 24px;
  opacity: 0.16;
}
.blog-thumb .bt-icon-main {
  width: 74px; height: 74px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; color: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,0.16), inset 0 0 0 1.5px rgba(255,255,255,0.35);
  position: relative; z-index: 2;
  transition: transform 0.4s var(--ease);
}
.blog-card:hover .bt-icon-main { transform: scale(1.1) rotate(-6deg); }
.blog-thumb .bt-badge {
  position: absolute;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.9rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  animation: bob 4.5s ease-in-out infinite;
  z-index: 1;
}
.blog-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.blog-tag {
  align-self: flex-start;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--post-c1, var(--ib-blue));
  background: color-mix(in srgb, var(--post-c1, var(--ib-blue)) 12%, #fff);
  padding: 0.3rem 0.7rem; border-radius: 999px;
  margin-bottom: 0.75rem;
}
.blog-body h3 { font-size: 1.08rem; line-height: 1.35; margin-bottom: 0.55rem; color: var(--ib-navy); }
.blog-body p { font-size: 0.9rem; color: var(--ib-text-3); line-height: 1.6; margin-bottom: 1rem; flex: 1; }
.blog-meta {
  display: flex; align-items: center; gap: 0.9rem;
  font-size: 0.78rem; color: var(--ib-text-4);
  padding-top: 0.85rem; border-top: 1px solid var(--ib-border);
}
.blog-meta span { display: inline-flex; align-items: center; gap: 0.3rem; }
.blog-read-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 0.85rem; font-size: 0.85rem; font-weight: 700; color: var(--post-c1, var(--ib-blue));
}
.blog-card:hover .blog-read-link { gap: 0.55rem; }
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* Blog post modal — native <dialog>, opened in-page (no navigation) */
/* Centering uses a fixed top:50%/left:50% + translate(-50%,-50%) anchor
   rather than inset:0 + margin:auto — this is deterministic regardless of
   how a given browser resolves auto margins against an auto-height box,
   and doesn't depend on the "inset" shorthand being supported. */
.blog-modal {
  box-sizing: border-box;
  border: none; border-radius: var(--radius-xl); padding: 0; margin: 0;
  width: min(760px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  max-height: min(86vh, calc(100vh - 32px));
  overflow: hidden;
  box-shadow: 0 40px 90px -20px rgba(5,10,30,0.5), 0 0 0 1px rgba(17,17,46,0.06);
  overscroll-behavior: contain;
  position: fixed;
  top: 50%; left: 50%; right: auto; bottom: auto;
  transform: translate(-50%, -50%);
  z-index: var(--z-modal, 1300);
  animation: blogModalIn 0.22s var(--ease, ease);
}
@keyframes blogModalIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.97); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.blog-modal::backdrop {
  background: rgba(11,17,38,0.62);
  backdrop-filter: blur(3px);
  z-index: var(--z-modal, 1300);
}
.blog-modal-inner {
  box-sizing: border-box; position: relative;
  max-height: min(86vh, calc(100vh - 32px));
  overflow-y: auto; overflow-x: hidden;
}
.blog-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.28);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.2s;
  z-index: 5;
}
.blog-modal-close:hover { background: rgba(255,255,255,0.42); transform: rotate(90deg); }
.blog-modal-body { padding: 0 0 2.5rem; max-width: 100%; }
.blog-post-hero {
  height: 220px;
  display: flex; align-items: flex-end;
  padding: 1.75rem 2.25rem;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--post-c1, var(--ib-blue)) 0%, var(--post-c2, var(--ib-cyan)) 55%, var(--post-c3, var(--ib-pink)) 100%);
  background-size: 200% 200%;
  animation: meshDrift 13s ease-in-out infinite alternate;
}
.blog-post-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1.4px);
  background-size: 26px 26px; opacity: 0.16;
}
.blog-post-hero .bp-icon {
  width: 60px; height: 60px; border-radius: 16px; flex-shrink: 0;
  background: rgba(255,255,255,0.22); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; margin-right: 1rem;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.35);
  position: relative; z-index: 1;
}
.blog-post-hero h2 { color: #fff; font-size: 1.5rem; line-height: 1.3; position: relative; z-index: 1; margin: 0; min-width: 0; overflow-wrap: break-word; word-break: break-word; }
.blog-post-hero { min-width: 0; }
.blog-post-content { padding: 1.75rem 2.25rem 0.5rem; box-sizing: border-box; overflow-wrap: break-word; word-break: break-word; }
.blog-post-content .blog-post-meta {
  display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; color: var(--ib-text-4);
  margin-bottom: 1.4rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--ib-border);
}
.blog-post-content .blog-post-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.blog-post-content h3 { font-size: 1.1rem; color: var(--ib-navy); margin: 1.5rem 0 0.6rem; }
.blog-post-content p { font-size: 0.96rem; line-height: 1.75; color: var(--ib-text-3); margin-bottom: 1rem; }
.blog-post-content ul { margin: 0 0 1.2rem; padding-left: 1.2rem; }
.blog-post-content ul li { font-size: 0.94rem; line-height: 1.7; color: var(--ib-text-3); margin-bottom: 0.4rem; }
.blog-post-cta {
  margin: 1.5rem 2.25rem 2rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(35,35,199,0.06), rgba(236,72,153,0.06));
  border: 1px solid var(--ib-border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.blog-post-cta p { margin: 0; font-size: 0.92rem; color: var(--ib-navy); font-weight: 600; }
body.blog-modal-open { overflow: hidden; }
@media (max-width: 640px) {
  .blog-post-hero { height: 180px; padding: 1.25rem 1.5rem; }
  .blog-post-hero h2 { font-size: 1.2rem; }
  .blog-post-content { padding: 1.4rem 1.5rem 0.5rem; }
  .blog-post-cta { margin: 1.25rem 1.5rem 1.5rem; flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .blog-thumb, .blog-post-hero { animation: none !important; }
  .blog-thumb .bt-badge { animation: none !important; }
}

/* ===== "Call for Consultation" band — Service / Product / Ecommerce pages ===== */
.consult-band {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
  background: linear-gradient(115deg, var(--ib-blue) 0%, var(--ib-blue-mid) 35%, var(--ib-orange) 70%, var(--ib-pink) 100%);
  background-size: 220% 220%;
  animation: consultShift 10s ease infinite;
}
@keyframes consultShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.consult-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem 1.5rem;
}
.consult-text { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; }
.consult-ico {
  width: 46px; height: 46px; border-radius: 50%; flex: 0 0 auto;
  background: rgba(255,255,255,0.18); border: 1.5px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.15rem;
  animation: consultRing 1.8s ease-in-out infinite;
}
@keyframes consultRing { 0%, 100% { transform: rotate(0deg); } 10% { transform: rotate(-14deg); } 20% { transform: rotate(10deg); } 30% { transform: rotate(-8deg); } 40% { transform: rotate(0deg); } }
.consult-copy { display: flex; flex-direction: column; gap: 0.15rem; }
.consult-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.consult-phone {
  color: #fff; text-decoration: none; font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.5rem); letter-spacing: 0.01em;
  display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap;
}
.consult-phone span { font-weight: 600; font-size: 0.85em; opacity: 0.9; }
.btn-consult-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.4rem; border-radius: 999px;
  background: var(--ib-amber); color: #1a1a2e; font-weight: 800; font-size: 0.92rem;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 8px 20px -4px rgba(245,158,11,0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-consult-secondary:hover { transform: translateY(-3px); box-shadow: 0 12px 26px -4px rgba(245,158,11,0.65); }
@media (max-width: 640px) {
  .consult-inner { justify-content: center; text-align: center; }
  .consult-text { justify-content: center; width: 100%; }
  .btn-consult-secondary { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .consult-band { animation: none !important; }
  .consult-ico { animation: none !important; }
}

/* Center the "Why InfoByte" pillar-card content on the Shopify / WooCommerce
   pages specifically (site-wide .pillar text stays left-aligned elsewhere). */
.pillars-center .pillar { text-align: center; }
.pillars-center .pillar-num { margin-left: auto; margin-right: auto; }

/* ===== "How We Deliver" — Agile methodology flow (estimate/track/invoice) ===== */
.agile-flow { display: flex; flex-direction: column; align-items: center; max-width: 620px; margin: 0 auto; }
.flow-col { display: flex; flex-direction: column; align-items: center; width: 100%; }
.flow-node {
  display: flex; align-items: center; gap: 0.75rem;
  width: 100%; max-width: 460px;
  padding: 0.85rem 1.2rem; border-radius: var(--radius-lg);
  background: #fff; border: 1.5px solid var(--ib-border);
  box-shadow: var(--shadow-sm);
  font-weight: 600; font-size: 0.92rem; color: var(--ib-navy);
  opacity: 0; transform: translateY(10px);
  animation: flowNodeIn .5s var(--ease) forwards;
  animation-delay: calc(var(--fi, 0) * 0.09s);
}
.flow-node i {
  width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: var(--ib-muted-bg); color: var(--ib-blue); font-size: 0.9rem;
}
.flow-arrow {
  width: 2px; height: 22px; flex: 0 0 auto;
  background: linear-gradient(var(--ib-cyan), var(--ib-orange));
  position: relative;
  opacity: 0; animation: flowNodeIn .4s var(--ease) forwards;
  animation-delay: calc(var(--fi, 0) * 0.09s);
}
.flow-arrow::after {
  content: ""; position: absolute; left: 50%; bottom: -1px; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: var(--ib-orange);
}
@keyframes flowNodeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.flow-decision {
  border: 1.5px dashed var(--ib-orange);
  background: var(--ib-muted-bg);
  color: var(--ib-blue);
}
.flow-decision i { background: var(--ib-orange); color: #fff; }
.flow-branches {
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem 2.25rem;
  width: 100%; margin-top: 0.4rem; align-items: start;
}
.flow-branch { display: flex; flex-direction: column; align-items: center; position: relative; }
.flow-branch-no { justify-self: start; margin-top: 0.4rem; }
.flow-branch-label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.15rem 0.65rem; border-radius: 999px; margin-bottom: 0.5rem;
}
.flow-branch-label-yes { background: color-mix(in srgb, var(--ib-mint) 20%, transparent); color: var(--ib-mint); }
.flow-branch-label-no { background: color-mix(in srgb, var(--ib-pink) 18%, transparent); color: var(--ib-pink); }
.flow-node-accent { border-color: var(--ib-mint); }
.flow-node-accent i { background: var(--ib-mint); color: #fff; }
.flow-node-warn { border-color: var(--ib-pink); }
.flow-node-warn i { background: var(--ib-pink); color: #fff; }
.flow-node-end { border-color: var(--ib-blue); background: linear-gradient(120deg, var(--ib-blue), var(--ib-blue-mid)); color: #fff; }
.flow-node-end i { background: rgba(255,255,255,0.25); color: #fff; }
@media (max-width: 720px) {
  .flow-branches { grid-template-columns: 1fr; }
  .flow-branch-no { justify-self: center; margin-top: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .flow-node, .flow-arrow { animation: none !important; opacity: 1; transform: none; }
}

/* =========================================================
   VIDEO SHOWCASE — laptop-frame autoplay brand film
   ========================================================= */
.video-showcase-section {
  padding: 5rem 0 6.5rem;
  background: #fff;
  position: relative; overflow: hidden;
}
.video-showcase-section .container { position: relative; z-index: 1; }

.laptop-showcase { position: relative; max-width: 900px; margin: 3.25rem auto 0; padding-top: 1rem; }
.video-live-badge {
  position: absolute; top: -0.6rem; right: 0.5rem; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #fff; border: 1px solid var(--ib-border);
  box-shadow: 0 6px 16px -8px rgba(17,17,46,0.18);
  color: var(--ib-navy); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 999px;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .5s ease .3s, transform .5s ease .3s;
}
.laptop-showcase.video-live .video-live-badge { opacity: 1; transform: translateY(0); }
.video-live-badge .vlb-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.25); animation: diagramPulse 2.2s ease-in-out infinite; }

/* real laptop artwork (assets/images/laptop-svg.svg) with the video composited
   exactly onto its screen area via percentage insets matched to the artwork */
.laptop-frame {
  position: relative; z-index: 1;
  width: 100%;
  aspect-ratio: 2048 / 1494;
  opacity: 0; transform: translateY(16px) scale(.985);
  transition: opacity .7s ease, transform .7s ease;
}
.laptop-showcase.video-live .laptop-frame { opacity: 1; transform: translateY(0) scale(1); }
.laptop-svg {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  display: block; pointer-events: none; user-select: none;
}
.laptop-screen-slot {
  position: absolute; z-index: 2;
  top: 17.01%; left: 16.6%; right: 17.2%; bottom: 30.18%;
  overflow: hidden;
}
.laptop-video {
  width: 100%; height: 100%;
  object-fit: cover; display: block; background: #000;
  opacity: 0; transition: opacity .6s ease .15s;
}
.laptop-showcase.video-live .laptop-video { opacity: 1; }
.laptop-glow {
  position: absolute; left: 50%; bottom: -18px; transform: translateX(-50%);
  width: 62%; height: 40px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(17,17,46,0.16), transparent 72%);
  filter: blur(12px); z-index: 0;
  opacity: 0; transition: opacity 1s ease .5s;
}
.laptop-showcase.video-live .laptop-glow { opacity: 1; }

@media (max-width: 640px) {
  .video-live-badge { top: -0.4rem; right: 0; font-size: 0.62rem; padding: 0.3rem 0.65rem; }
}
@media (prefers-reduced-motion: reduce) {
  .laptop-frame, .laptop-video, .laptop-glow, .video-live-badge { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---- Selected work / portfolio cards ---- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-top: 2rem;
}
.work-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(165deg, #fff 0%, var(--ib-off) 100%);
  border: 1px solid var(--ib-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.work-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 22px 44px -14px color-mix(in srgb, var(--ib-blue) 35%, transparent);
  border-color: var(--ib-blue);
}
.work-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ib-off);
}
.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s var(--ease);
}
.work-card:hover .work-thumb img {
  transform: scale(1.04);
}
.work-meta {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.work-meta h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin: 0 0 .35rem;
}
.work-meta p {
  color: var(--ib-text-3);
  font-size: .88rem;
  line-height: 1.5;
  margin: 0 0 1rem;
  flex: 1;
}
.work-meta .card-link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--ib-blue);
}
.work-card:hover .work-meta .card-link {
  color: var(--ib-blue-deep);
}
.work-section-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  margin-top: 1.75rem;
}
.work-section-links a {
  font-weight: 700;
  font-size: .92rem;
  color: var(--ib-blue);
  text-decoration: none;
}
.work-section-links a:hover {
  color: var(--ib-blue-deep);
  text-decoration: underline;
}
.work-section-note {
  margin-top: .75rem;
  font-size: .88rem;
  color: var(--ib-text-3);
  max-width: 42rem;
}
@media (max-width: 960px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .work-card, .work-thumb img { transition: none !important; }
  .work-card:hover { transform: none; }
  .work-card:hover .work-thumb img { transform: none; }
}
