/* assets/css/main.css */

:root {
  --ig-navy: #04163d;
  --ig-navy-2: #08265c;
  --ig-blue: #005ce6;
  --ig-blue-2: #0b73f6;
  --ig-cyan: #23aeea;
  --ig-orange: #f4a300;
  --ig-orange-dark: #d88900;
  --ig-white: #ffffff;
  --ig-bg: #f5f8fc;
  --ig-text: #16233c;
  --ig-muted: #5f7088;
  --ig-border: #dce6f2;
  --ig-soft-blue: #edf5ff;
  --ig-soft-orange: #fff4df;
  --ig-shadow: 0 26px 70px rgba(7, 25, 71, 0.10);
  --ig-shadow-xl: 0 46px 120px rgba(7, 25, 71, 0.18);
  --ig-radius: 28px;
  --ig-font: "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
}

body {
  margin: 0;
  font-family: var(--ig-font);
  color: var(--ig-text);
  background: var(--ig-bg);
  overflow-x: hidden;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 92, 230, 0.08), transparent 28%),
    radial-gradient(circle at 94% 2%, rgba(244, 163, 0, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 42%, #ffffff 100%);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 9999;
  transform: translateY(-140%);
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--ig-blue);
  font-weight: 850;
  box-shadow: var(--ig-shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ig-soft-blue);
  color: var(--ig-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ig-orange);
  box-shadow: 0 0 0 6px #fff1d6;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(220, 230, 242, 0.7);
  backdrop-filter: blur(18px) saturate(145%);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 40px rgba(7,25,71,.08);
}

.site-header__inner {
  width: min(1500px, calc(100% - 36px));
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
}

.site-brand img {
  width: 214px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  position: relative;
  padding: 11px 12px;
  border-radius: 999px;
  color: #31445f;
  font-size: 14px;
  font-weight: 820;
  white-space: nowrap;
  transition: color .25s ease, background .25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ig-blue);
  background: rgba(0,92,230,.08);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-social,
.footer-social,
.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-social a,
.footer-social a,
.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ig-blue);
  background: rgba(0,92,230,.08);
  border: 1px solid rgba(0,92,230,.10);
  transition: transform .25s ease, color .25s ease, background .25s ease;
}

.header-social a:hover,
.footer-social a:hover,
.social-links a:hover {
  transform: translateY(-2px);
  color: #fff;
  background: var(--ig-blue);
}

.header-social svg,
.footer-social svg,
.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.header-cta {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #004fd6 0%, #087cff 52%, #28b8ff 100%);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0,92,230,.22);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(0,92,230,.16);
  border-radius: 16px;
  background: #fff;
  place-items: center;
}

.nav-toggle span:not(.sr-only) {
  width: 21px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--ig-navy);
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle span:not(.sr-only) + span:not(.sr-only) {
  margin-top: 5px;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  padding: 118px 24px 104px;
  background:
    radial-gradient(circle at 88% 10%, rgba(244,163,0,.17), transparent 29%),
    radial-gradient(circle at 7% 0%, rgba(0,92,230,.12), transparent 31%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 56%, #eef4fb 100%);
  overflow: hidden;
}

.hero-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr);
  gap: 68px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--ig-blue);
  background: rgba(0,92,230,.075);
  border: 1px solid rgba(0,92,230,.12);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--ig-orange);
}

.hero h1 {
  max-width: 930px;
  margin: 0 0 24px;
  color: var(--ig-navy);
  font-size: clamp(52px, 6vw, 94px);
  line-height: .98;
  letter-spacing: -4px;
  font-weight: 860;
}

.hero h1 span {
  background: linear-gradient(135deg, #004fd6, #2bb8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 800px;
  margin: 0 0 34px;
  color: #53647d;
  font-size: 21px;
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 820;
  white-space: nowrap;
}

.hero-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #004fd6 0%, #087cff 52%, #28b8ff 100%);
  box-shadow: 0 18px 38px rgba(0,92,230,.24);
}

.hero-btn-secondary {
  color: var(--ig-blue);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,92,230,.22);
  box-shadow: 0 12px 30px rgba(7,25,71,.055);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-links a {
  color: var(--ig-blue);
  font-size: 15px;
  font-weight: 720;
}

.hero-visual {
  position: relative;
}

.hero-image {
  overflow: hidden;
  border-radius: 40px;
  background: #fff;
  border: 1px solid rgba(220,230,242,.92);
  box-shadow: 0 50px 120px rgba(7,25,71,.22);
}

.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.hero-overlay-card {
  position: absolute;
  left: -26px;
  top: 42px;
  z-index: 2;
  width: 245px;
  padding: 22px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(244,163,0,.22), transparent 45%),
    linear-gradient(135deg, rgba(4,22,61,.98), rgba(0,92,230,.92));
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 30px 80px rgba(7,25,71,.30);
  backdrop-filter: blur(18px);
}

.hero-overlay-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1;
}

.hero-overlay-card span {
  color: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.floating-box {
  position: absolute;
  right: -22px;
  bottom: 28px;
  width: 320px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 30px 80px rgba(7,25,71,.18);
  backdrop-filter: blur(18px);
}

.floating-box img {
  width: 184px;
  height: auto;
  margin-bottom: 14px;
}

.floating-box strong {
  display: block;
  margin-bottom: 8px;
  color: #071947;
  font-size: 20px;
  font-weight: 830;
}

.floating-box p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

/* Lines */
.ibg-lines-pro {
  width: 100%;
  padding: 120px 24px;
  background:
    radial-gradient(circle at top left, rgba(0,92,230,.035), transparent 22%),
    radial-gradient(circle at top right, rgba(244,163,0,.03), transparent 18%),
    #ffffff;
  overflow: hidden;
}

.ibg-lines-container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
}

.ibg-lines-header {
  max-width: 920px;
  margin: 0 auto 76px;
  text-align: center;
}

.ibg-lines-header span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(0, 92, 230, .08);
  color: var(--ig-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ibg-lines-header span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ig-orange);
}

.ibg-lines-header h2 {
  margin: 0 0 22px;
  color: var(--ig-navy);
  font-size: clamp(40px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -2.8px;
  font-weight: 900;
}

.ibg-lines-header p {
  margin: 0 auto;
  max-width: 780px;
  color: #5f6f89;
  font-size: 20px;
  line-height: 1.75;
}

.ibg-lines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.ibg-line-card {
  position: relative;
  min-height: 410px;
  padding: 34px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid #e7eef7;
  box-shadow:
    0 10px 40px rgba(15, 23, 42, 0.06),
    0 2px 10px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.ibg-line-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0,92,230,.11), transparent 35%);
  opacity: .75;
  pointer-events: none;
}

.ibg-line-card.orange::before {
  background: radial-gradient(circle at top right, rgba(244,163,0,.13), transparent 35%);
}

.ibg-line-card::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--ig-blue), #2bb8ff);
}

.ibg-line-card.orange::after {
  background: linear-gradient(90deg, var(--ig-orange), #ffbd55);
}

.ibg-line-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 92, 230, .18);
  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.12),
    0 10px 30px rgba(0, 92, 230, 0.08);
}

.ibg-line-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ibg-line-top {
  flex: 1;
}

.ibg-line-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 26px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ig-blue);
  background: linear-gradient(135deg, #eaf3ff, #ffffff);
  box-shadow: 0 14px 34px rgba(0, 92, 230, .12);
}

.ibg-line-card.orange .ibg-line-icon {
  color: var(--ig-orange-dark);
  background: linear-gradient(135deg, #fff3dd, #ffffff);
  box-shadow: 0 14px 34px rgba(244, 163, 0, .16);
}

.ibg-line-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.ibg-line-card h3 {
  margin: 0 0 15px;
  color: var(--ig-navy);
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -.9px;
  font-weight: 900;
}

.ibg-line-card p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

.ibg-line-card ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ibg-line-card li {
  position: relative;
  display: block;
  padding-left: 26px;
  margin: 0;
  color: #465b76;
  font-size: 14.8px;
  line-height: 1.5;
}

.ibg-line-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(0, 92, 230, .1);
  color: var(--ig-blue);
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ibg-line-card.orange li::before {
  background: rgba(244, 163, 0, .14);
  color: var(--ig-orange-dark);
}

.ibg-line-link {
  width: fit-content;
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--ig-blue);
  background: rgba(0, 92, 230, .08);
  font-size: 14px;
  font-weight: 850;
  transition: all .3s ease;
}

.ibg-line-link:hover {
  color: #fff;
  background: var(--ig-blue);
  transform: translateX(4px);
}

.ibg-line-card.orange .ibg-line-link {
  color: var(--ig-orange-dark);
  background: rgba(244, 163, 0, .12);
}

.ibg-line-card.orange .ibg-line-link:hover {
  color: #fff;
  background: var(--ig-orange);
}

/* Unify */
.ibg-unify-section {
  position: relative;
  width: 100%;
  padding: 115px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(0, 92, 230, 0.12), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(244, 163, 0, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: #101d3d;
}

.ibg-unify-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 25, 71, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 25, 71, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
  pointer-events: none;
}

.ibg-unify-container {
  position: relative;
  z-index: 2;
  width: min(1480px, calc(100% - 20px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 72px;
  align-items: center;
}

.ibg-unify-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #edf5ff;
  border: 1px solid rgba(0, 92, 230, 0.12);
  color: var(--ig-blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.ibg-unify-pill span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ig-blue);
  color: #ffffff;
  font-size: 13px;
}

.ibg-unify-title {
  max-width: 760px;
  margin: 0 0 24px;
  color: #061642;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -3px;
  font-weight: 900;
}

.ibg-unify-title span {
  background: linear-gradient(135deg, #004fd6, #28b8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ibg-unify-text {
  max-width: 680px;
  margin: 0 0 36px;
  color: #53647d;
  font-size: 20px;
  line-height: 1.8;
}

.ibg-unify-benefits {
  display: grid;
  gap: 22px;
  margin-bottom: 38px;
}

.ibg-benefit {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 4px 0;
}

.ibg-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 27px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(7, 25, 71, 0.16);
}

.ibg-benefit-icon.blue {
  background: linear-gradient(135deg, var(--ig-blue), #28b8ff);
}

.ibg-benefit-icon.green {
  background: linear-gradient(135deg, #00a88f, #36e0b5);
}

.ibg-benefit-icon.orange {
  background: linear-gradient(135deg, var(--ig-orange), #ffba52);
}

.ibg-benefit-icon.purple {
  background: linear-gradient(135deg, #6554e8, #9b7cff);
}

.ibg-benefit h3 {
  margin: 0 0 6px;
  color: #071947;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 850;
}

.ibg-benefit p {
  margin: 0;
  color: #53647d;
  font-size: 16px;
  line-height: 1.65;
}

.ibg-unify-btn,
.visibility-btn,
.form-submit {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #004fd6, #087cff 55%, #28b8ff);
  box-shadow: 0 18px 38px rgba(0, 92, 230, 0.24);
  font-size: 15px;
  font-weight: 850;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ibg-unify-btn:hover,
.visibility-btn:hover,
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(0, 92, 230, 0.30);
}

.ibg-visual-system {
  position: relative;
  min-height: 720px;
}

.ibg-platform-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(760px, 92%);
  min-height: 440px;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: 72px 1fr;
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #d9e5f3;
  box-shadow: 0 38px 95px rgba(7, 25, 71, 0.16);
}

.ibg-platform-sidebar {
  padding: 26px 14px;
  display: grid;
  align-content: start;
  gap: 20px;
  background: linear-gradient(180deg, #061642, #0044b9);
}

.ibg-platform-sidebar span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.14);
}

.ibg-platform-content {
  padding: 28px;
}

.ibg-platform-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.ibg-platform-top strong {
  color: #071947;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.ibg-platform-top span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #edf5ff;
  color: var(--ig-blue);
  font-size: 13px;
  font-weight: 900;
}

.ibg-platform-content h4 {
  margin: 0 0 18px;
  color: #071947;
  font-size: 22px;
  font-weight: 850;
}

.ibg-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-bottom: 22px;
}

.ibg-kpi {
  padding: 15px 14px;
  border-radius: 14px;
  border: 1px solid #e4ebf5;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.ibg-kpi small {
  display: block;
  margin-bottom: 6px;
  color: #607089;
  font-size: 10.5px;
  line-height: 1.3;
}

.ibg-kpi strong {
  display: block;
  margin-bottom: 4px;
  color: #061642;
  font-size: 20px;
  line-height: 1;
}

.ibg-kpi em {
  color: #13b981;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.ibg-kpi em.negative {
  color: #ef4444;
}

.ibg-platform-panels {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: 18px;
}

.ibg-map-panel,
.ibg-chart-panel {
  min-height: 190px;
  border-radius: 16px;
  border: 1px solid #e4ebf5;
  background: #f7fbff;
  position: relative;
  overflow: hidden;
}

.ibg-map-panel::before {
  content: "";
  position: absolute;
  inset: 26px;
  background: radial-gradient(circle, #cfe0f3 2px, transparent 3px);
  background-size: 23px 23px;
  opacity: 0.85;
}

.ibg-map-route {
  position: absolute;
  left: 23%;
  top: 47%;
  width: 55%;
  height: 3px;
  background: var(--ig-blue);
  transform: rotate(18deg);
  box-shadow: 0 0 0 5px rgba(0,92,230,0.08);
}

.ibg-map-pin {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--ig-blue);
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 5px rgba(0,92,230,0.14);
  animation: ibg-pulse 2.2s ease-in-out infinite;
}

.ibg-map-pin.one {
  left: 22%;
  top: 40%;
}

.ibg-map-pin.two {
  left: 53%;
  top: 52%;
  background: #20c7a0;
  animation-delay: 0.3s;
}

.ibg-map-pin.three {
  left: 75%;
  top: 32%;
  background: var(--ig-orange);
  animation-delay: 0.6s;
}

.ibg-map-panel b {
  position: absolute;
  left: 20px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #ffffff;
  color: #071947;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(7,25,71,0.08);
}

.ibg-line-chart {
  height: 80px;
  margin: 20px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, transparent 48%, var(--ig-blue) 49%, var(--ig-blue) 51%, transparent 52%),
    linear-gradient(180deg, #ffffff, #eef5ff);
}

.ibg-donut {
  width: 88px;
  height: 88px;
  margin: 12px auto;
  border-radius: 50%;
  background: conic-gradient(var(--ig-blue) 0 45%, #72a7ff 45% 75%, #dceaff 75%);
  position: relative;
}

.ibg-donut::after {
  content: "";
  position: absolute;
  inset: 21px;
  background: #ffffff;
  border-radius: 50%;
}

.ibg-floating-node {
  position: absolute;
  z-index: 3;
  width: 220px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.95);
  border: 1px solid #d9e5f3;
  box-shadow: 0 26px 64px rgba(7,25,71,0.13);
  backdrop-filter: blur(12px);
  animation: ibg-float 5s ease-in-out infinite;
}

.ibg-floating-node .node-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 13px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 26px;
  box-shadow: 0 12px 24px rgba(7,25,71,0.16);
}

.ibg-floating-node h4 {
  margin: 0 0 6px;
  color: #071947;
  font-size: 18px;
  font-weight: 850;
}

.ibg-floating-node p {
  margin: 0;
  color: #53647d;
  font-size: 13.5px;
  line-height: 1.55;
}

.ibg-node-logistics {
  left: 0;
  top: 18px;
}

.ibg-node-logistics .node-icon {
  background: linear-gradient(135deg, var(--ig-orange), #ffba52);
}

.ibg-node-saas {
  right: 0;
  top: 18px;
  animation-delay: 0.3s;
}

.ibg-node-saas .node-icon {
  background: linear-gradient(135deg, var(--ig-blue), #28b8ff);
}

.ibg-node-data {
  left: 0;
  bottom: 20px;
  animation-delay: 0.6s;
}

.ibg-node-data .node-icon {
  background: linear-gradient(135deg, #20c7a0, #36e0b5);
}

.ibg-node-operations {
  right: 0;
  bottom: 20px;
  animation-delay: 0.9s;
}

.ibg-node-operations .node-icon {
  background: linear-gradient(135deg, #6554e8, #9b7cff);
}

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

@keyframes ibg-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(0,92,230,0.14); }
  50% { box-shadow: 0 0 0 12px rgba(0,92,230,0.04); }
}

/* Services and SaaS */
.ig-container {
  width: min(1420px, calc(100% - 40px));
  margin: 0 auto;
}

.ig-services {
  padding: 100px 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 92, 230, 0.08), transparent 28%),
    radial-gradient(circle at 94% 2%, rgba(244, 163, 0, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 42%, #ffffff 100%);
}

.ig-section-header {
  max-width: 940px;
  margin: 0 auto 58px;
  text-align: center;
}

.ig-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ig-soft-blue);
  color: var(--ig-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ig-eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ig-orange);
  box-shadow: 0 0 0 6px #fff1d6;
}

.ig-section-header h2 {
  margin: 0 0 18px;
  color: var(--ig-navy);
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 1.02;
  letter-spacing: -2.6px;
  font-weight: 900;
}

.ig-section-header p {
  margin: 0;
  color: var(--ig-muted);
  font-size: 19px;
  line-height: 1.75;
}

.ig-products-panel {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 92% 8%, rgba(244,163,0,0.17), transparent 28%),
    linear-gradient(135deg, var(--ig-navy) 0%, var(--ig-navy-2) 46%, var(--ig-blue) 100%);
  box-shadow: var(--ig-shadow-xl);
}

.ig-products-head {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
  color: #fff;
}

.ig-products-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -1.9px;
  font-weight: 900;
}

.ig-products-head p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.7;
}

.ig-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.ig-filter-btn {
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.84);
  padding: 11px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.ig-filter-btn:hover,
.ig-filter-btn.active {
  background: #ffffff;
  color: var(--ig-blue);
  transform: translateY(-2px);
}

.ig-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ig-product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.70);
  box-shadow: 0 24px 70px rgba(0,0,0,0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ig-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(0,0,0,0.24);
}

.ig-product-visual {
  position: relative;
  height: 150px;
  padding: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(244,163,0,0.18), transparent 35%),
    linear-gradient(135deg, #f7faff, #edf5ff);
}

.ig-product-visual.orange {
  background:
    radial-gradient(circle at 88% 12%, rgba(0,92,230,0.12), transparent 35%),
    linear-gradient(135deg, #fff8ec, #fff1d6);
}

.ig-product-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--ig-blue);
  background: #ffffff;
  font-size: 34px;
  box-shadow: 0 16px 36px rgba(7,25,71,0.10);
}

.ig-product-visual.orange .ig-product-icon {
  color: var(--ig-orange-dark);
}

.ig-product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.ig-product-body h3 {
  margin: 0 0 10px;
  color: var(--ig-navy);
  font-size: 24px;
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
}

.ig-product-desc {
  margin: 0 0 18px;
  color: var(--ig-muted);
  font-size: 14.5px;
  line-height: 1.62;
}

.ig-metrics {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.ig-metric {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #41546d;
  font-size: 13.2px;
  line-height: 1.4;
}

.ig-extra {
  display: none;
  gap: 8px;
  margin: 2px 0 18px;
  padding-top: 14px;
  border-top: 1px solid #e6edf6;
}

.ig-product-card.open .ig-extra {
  display: grid;
  animation: igFadeUp 0.25s ease;
}

.ig-read-more {
  align-self: flex-start;
  margin-bottom: 18px;
  border: 0;
  background: transparent;
  color: var(--ig-blue);
  font-size: 14px;
  font-weight: 850;
}

.ig-price {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #e6edf6;
  color: var(--ig-navy);
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 750;
}

.ig-price strong {
  color: var(--ig-blue);
  font-size: 22px;
  font-weight: 900;
}

.ig-price span {
  display: block;
  color: var(--ig-muted);
  font-weight: 600;
}

@keyframes igFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Marketplace */
.ig-market-fixed {
  width: 100%;
  padding: 96px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  color: var(--ig-text);
  overflow: hidden;
}

.ig-market-container {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.ig-market-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
  padding: 64px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid #dce6f2;
  box-shadow: 0 34px 90px rgba(7, 25, 71, 0.12);
}

.ig-market-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 15px;
  border-radius: 999px;
  background: #edf5ff;
  color: var(--ig-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ig-market-label::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ig-orange);
  box-shadow: 0 0 0 6px #fff1d6;
}

.ig-market-title {
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--ig-navy);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -3px;
  font-weight: 900;
}

.ig-market-title span {
  color: var(--ig-blue);
}

.ig-market-text {
  max-width: 640px;
  margin: 0 0 32px;
  color: var(--ig-muted);
  font-size: 18px;
  line-height: 1.75;
}

.ig-market-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.ig-market-btn {
  min-height: 54px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ig-market-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ig-blue) 0%, var(--ig-blue-2) 60%, var(--ig-cyan) 100%);
  box-shadow: 0 18px 40px rgba(0, 92, 230, 0.24);
}

.ig-market-btn-secondary {
  color: var(--ig-blue);
  background: #ffffff;
  border: 1px solid #cddff5;
  box-shadow: 0 12px 28px rgba(7, 25, 71, 0.06);
}

.ig-market-btn:hover {
  transform: translateY(-3px);
}

.ig-market-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ig-market-feature {
  padding: 20px;
  border-radius: 22px;
  background: #f7faff;
  border: 1px solid #e3ebf5;
}

.ig-market-feature strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ig-navy);
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.ig-market-feature span {
  color: var(--ig-muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.ig-market-visual {
  padding: 24px;
  border-radius: 34px;
  background: linear-gradient(135deg, #04163d 0%, #08265c 45%, var(--ig-blue) 100%);
  box-shadow: 0 30px 80px rgba(7, 25, 71, 0.24);
}

.ig-market-dashboard {
  padding: 26px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.ig-market-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 22px;
}

.ig-market-kicker {
  display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ig-market-dashboard h3 {
  margin: 0;
  color: var(--ig-navy);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 900;
}

.ig-market-status {
  padding: 9px 13px;
  border-radius: 999px;
  background: #e7f8ef;
  color: #0b7f47;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.ig-market-tabs {
  display: flex;
  gap: 8px;
  padding: 6px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: #f1f5fb;
}

.ig-market-tab {
  flex: 1;
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #64748b;
  font-size: 13px;
  font-weight: 850;
}

.ig-market-tab.active {
  background: #ffffff;
  color: var(--ig-blue);
  box-shadow: 0 10px 24px rgba(7, 25, 71, 0.08);
}

.ig-market-panel {
  display: none;
}

.ig-market-panel.active {
  display: block;
  animation: igMarketFadeIn 0.25s ease;
}

.ig-market-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.ig-market-kpi {
  padding: 16px;
  border-radius: 18px;
  background: #f7faff;
  border: 1px solid #e2eaf4;
}

.ig-market-kpi span {
  display: block;
  margin-bottom: 7px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.ig-market-kpi strong {
  color: var(--ig-blue);
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.ig-market-list {
  display: grid;
  gap: 12px;
}

.ig-market-row {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e2eaf4;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ig-market-row:hover {
  transform: translateX(6px);
  box-shadow: 0 14px 30px rgba(7, 25, 71, 0.08);
}

.ig-market-row-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #edf5ff;
  font-size: 23px;
}

.ig-market-row-icon.orange {
  background: #fff2d8;
}

.ig-market-row h4 {
  margin: 0 0 4px;
  color: var(--ig-navy);
  font-size: 15.5px;
  font-weight: 850;
}

.ig-market-row p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

.ig-market-tag {
  padding: 8px 11px;
  border-radius: 999px;
  background: #fff2d8;
  color: #b56d00;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.ig-market-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.ig-market-flow-step {
  padding: 13px 10px;
  border-radius: 16px;
  background: #f7faff;
  border: 1px solid #e2eaf4;
  text-align: center;
}

.ig-market-flow-step strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ig-navy);
  font-size: 13px;
  font-weight: 850;
}

.ig-market-flow-step span {
  color: #64748b;
  font-size: 11.5px;
  line-height: 1.35;
}

.ig-market-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.ig-market-note-card {
  padding: 20px;
  border-radius: 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.ig-market-note-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
  line-height: 1;
}

.ig-market-note-card span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.5;
}

@keyframes igMarketFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Visibility */
.visibility-section {
  padding: 112px 24px;
  background:
    radial-gradient(circle at 88% 10%, rgba(0,92,230,.11), transparent 28%),
    radial-gradient(circle at 8% 90%, rgba(244,163,0,.10), transparent 27%),
    #ffffff;
}

.visibility-container {
  width: min(1420px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 54px;
  align-items: center;
}

.visibility-copy h2,
.workflow-header h2,
.contact-copy h2 {
  margin: 0 0 22px;
  color: var(--ig-navy);
  font-size: clamp(38px, 4.6vw, 70px);
  line-height: 1.02;
  letter-spacing: -2.4px;
  font-weight: 900;
}

.visibility-copy p,
.workflow-header p,
.contact-copy p {
  margin: 0 0 32px;
  color: var(--ig-muted);
  font-size: 18px;
  line-height: 1.75;
}

.visibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.visibility-card {
  min-height: 240px;
  padding: 28px;
  border-radius: 28px;
  color: #fff;
  box-shadow: var(--ig-shadow);
}

.visibility-card span {
  display: inline-flex;
  margin-bottom: 48px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.visibility-card h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 900;
}

.visibility-card p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.65;
}

.visibility-card.is-blue {
  background: linear-gradient(135deg, var(--ig-blue), #28b8ff);
}

.visibility-card.is-orange {
  background: linear-gradient(135deg, #d88900, var(--ig-orange));
}

.visibility-card.is-green {
  background: linear-gradient(135deg, #058b79, #36e0b5);
}

.visibility-card.is-purple {
  background: linear-gradient(135deg, #4f46e5, #9b7cff);
}

/* Sectors */
.section {
  padding: 118px 0;
}

.section.alt {
  background:
    radial-gradient(circle at 8% 4%, rgba(0,92,230,0.065), transparent 28%),
    radial-gradient(circle at 94% 0%, rgba(244,163,0,0.055), transparent 24%),
    #f5f8fc;
}

.container {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
}

.section-header {
  max-width: 980px;
  margin: 0 auto 72px;
  text-align: center;
}

.section-header span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ig-blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-header h2 {
  margin: 0 0 18px;
  color: var(--ig-navy);
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: 1.04;
  letter-spacing: -2.45px;
  font-weight: 860;
}

.section-header p {
  margin: 0;
  color: #617089;
  font-size: 20px;
  line-height: 1.76;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.sector-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(210, 223, 239, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow:
    0 24px 70px rgba(7, 25, 71, 0.085),
    inset 0 1px 0 rgba(255,255,255,0.86);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sector-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #004fd6, #2bb8ff);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.sector-card.orange::before {
  background: linear-gradient(90deg, var(--ig-orange), #ffba52);
}

.sector-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 42px 105px rgba(7,25,71,0.145),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.sector-card:hover::before {
  opacity: 1;
}

.sector-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ig-blue);
  background: #edf5ff;
  box-shadow:
    0 14px 30px rgba(7,25,71,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.3s ease;
}

.sector-card.orange .sector-icon {
  color: var(--ig-orange-dark);
  background: #fff6e8;
}

.sector-card:hover .sector-icon {
  transform: scale(1.08) rotate(-2deg);
}

.sector-icon svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.sector-card h3 {
  margin: 0 0 10px;
  color: var(--ig-navy);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 830;
}

.sector-card p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.65;
}

/* Workflow */
.workflow-section {
  padding: 106px 24px;
  background: #ffffff;
}

.workflow-container {
  width: min(1420px, 100%);
  margin: 0 auto;
}

.workflow-header {
  max-width: 900px;
  margin: 0 auto 54px;
  text-align: center;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.workflow-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid #dce6f2;
  box-shadow: var(--ig-shadow);
}

.workflow-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--ig-blue);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2px;
}

.workflow-card h3 {
  margin: 0 0 10px;
  color: var(--ig-navy);
  font-size: 24px;
  font-weight: 900;
}

.workflow-card p {
  margin: 0;
  color: #607089;
  font-size: 15px;
  line-height: 1.65;
}

/* Corporate */
.ibg-corporate-full {
  width: 100%;
  padding: 108px 24px;
  background: #ffffff;
}

.ibg-corporate-container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
}

.ibg-corporate-header {
  max-width: 980px;
  margin: 0 auto 72px;
  text-align: center;
}

.ibg-corporate-header span,
.ibg-corporate-content span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ig-orange);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ibg-corporate-header h2 {
  margin: 0 0 18px;
  color: #111111;
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: 1.04;
  letter-spacing: -2.45px;
  font-weight: 860;
}

.ibg-corporate-header p {
  margin: 0;
  color: #555555;
  font-size: 20px;
  line-height: 1.76;
}

.ibg-corporate-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.ibg-corporate-card {
  overflow: hidden;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  box-shadow: 0 18px 45px rgba(0,0,0,.07);
}

.ibg-corporate-card img {
  width: 100%;
  height: 375px;
  object-fit: cover;
}

.ibg-corporate-content {
  padding: 32px;
  background: #ffffff;
}

.ibg-corporate-content h3 {
  margin: 0 0 12px;
  color: #111111;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 860;
}

.ibg-corporate-content p {
  margin: 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.7;
}

/* Contact */
.contact-section {
  padding: 112px 24px;
  background:
    radial-gradient(circle at 92% 10%, rgba(244,163,0,.13), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(0,92,230,.11), transparent 30%),
    linear-gradient(135deg, #04163d 0%, #08265c 46%, #005ce6 100%);
  color: #fff;
}

.contact-container {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 48px;
  align-items: start;
}

.contact-copy .section-kicker {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}

.contact-copy .section-kicker::before {
  background: var(--ig-orange);
  box-shadow: 0 0 0 6px rgba(244,163,0,.18);
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy p {
  color: rgba(255,255,255,.76);
}

.contact-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-trust article {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

.contact-trust strong {
  display: block;
  margin-bottom: 6px;
  font-size: 21px;
  font-weight: 900;
}

.contact-trust span {
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.55;
}

.contact-form {
  padding: 34px;
  border-radius: 34px;
  color: var(--ig-text);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 34px 90px rgba(0,0,0,.22);
}

.field-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: #31445f;
  font-size: 13px;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid #dce6f2;
  background: #f8fbff;
  color: #101d3d;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0,92,230,.56);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,92,230,.10);
}

.privacy-check {
  grid-template-columns: 22px 1fr;
  align-items: start;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--ig-blue);
}

.privacy-check a {
  color: var(--ig-blue);
  font-weight: 900;
}

.form-submit {
  width: 100%;
  border-radius: 999px;
}

.form-alert {
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.55;
}

.form-alert ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.form-alert--error {
  color: #7f1d1d;
  background: #fff0f0;
  border: 1px solid #fecaca;
}

.form-alert--success {
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 78px 24px 28px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(244,163,0,.18), transparent 30%),
    linear-gradient(135deg, #04163d 0%, #071947 48%, #002b7e 100%);
}

.site-footer__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -190px;
  border-radius: 50%;
  background: rgba(244,163,0,.18);
  filter: blur(25px);
}

.site-footer__inner {
  position: relative;
  z-index: 2;
  width: min(1420px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr .9fr;
  gap: 42px;
}

.footer-brand img {
  width: 236px;
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.18));
}

.footer-brand p {
  max-width: 460px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.75);
  font-size: 15px;
  line-height: 1.7;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.5;
}

.footer-column a:hover {
  color: #fff;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.14);
}

.footer-social a:hover {
  background: var(--ig-orange);
  color: var(--ig-navy);
}

.site-footer__bottom {
  position: relative;
  z-index: 2;
  width: min(1420px, 100%);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  color: rgba(255,255,255,.64);
  font-size: 13px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer__bottom a:hover {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 16px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  background: rgba(255,255,255,.96);
  border: 1px solid #dce6f2;
  box-shadow: var(--ig-shadow-xl);
}

.cookie-banner p {
  margin: 0;
  color: #41546d;
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-banner a {
  color: var(--ig-blue);
  font-size: 13px;
  font-weight: 850;
}

.cookie-banner button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--ig-blue);
  font-size: 13px;
  font-weight: 850;
}

.cookie-banner[hidden] {
  display: none;
}

/* Legal pages */
.page-shell {
  padding: 92px 24px 108px;
  background: #fff;
}

.page-container {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.page-hero {
  margin-bottom: 42px;
}

.page-hero h1 {
  margin: 0 0 18px;
  color: var(--ig-navy);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -2.6px;
  font-weight: 900;
}

.page-hero p {
  margin: 0;
  color: var(--ig-muted);
  font-size: 18px;
  line-height: 1.75;
}

.legal-card {
  padding: 34px;
  border-radius: 30px;
  background: #f8fbff;
  border: 1px solid #dce6f2;
  box-shadow: var(--ig-shadow);
}

.legal-card h2 {
  margin: 34px 0 12px;
  color: var(--ig-navy);
  font-size: 26px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: #52647f;
  font-size: 16px;
  line-height: 1.75;
}

.legal-card a {
  color: var(--ig-blue);
  font-weight: 850;
}

/* Responsive */
@media (max-width: 1280px) {
  .site-header__inner {
    grid-template-columns: auto auto;
  }

  .site-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 106px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.98);
    border: 1px solid #dce6f2;
    box-shadow: var(--ig-shadow-xl);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
  }

  .site-header__actions {
    display: none;
  }
}

@media (max-width: 1220px) {
  .ig-product-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ig-products-head,
  .ibg-corporate-grid,
  .visibility-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1180px) {
  .ibg-lines-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ibg-unify-container,
  .ig-market-card {
    grid-template-columns: 1fr;
  }

  .ibg-visual-system {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .ibg-platform-card,
  .ibg-floating-node {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .ibg-platform-card {
    order: 3;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-image img {
    height: 450px;
  }

  .hero-overlay-card,
  .floating-box {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-bottom: 16px;
  }

  .floating-box {
    margin-top: 16px;
  }
}

@media (max-width: 740px) {
  html {
    scroll-padding-top: 82px;
  }

  .site-header__inner {
    width: min(100% - 26px, 1500px);
    min-height: 76px;
  }

  .site-brand img {
    width: 178px;
  }

  .site-nav {
    top: 88px;
  }

  .hero {
    padding: 74px 15px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    letter-spacing: -2px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-image img {
    height: 320px;
  }

  .hero-btn,
  .ig-market-btn {
    width: 100%;
  }

  .hero-links {
    display: grid;
  }

  .ibg-lines-pro,
  .ibg-unify-section,
  .visibility-section,
  .workflow-section,
  .ibg-corporate-full,
  .contact-section {
    padding: 72px 18px;
  }

  .ibg-lines-header {
    margin-bottom: 48px;
  }

  .ibg-lines-header h2,
  .section-header h2,
  .ibg-corporate-header h2,
  .ig-section-header h2,
  .visibility-copy h2,
  .workflow-header h2,
  .contact-copy h2 {
    font-size: clamp(34px, 11vw, 48px);
    letter-spacing: -1.5px;
  }

  .ibg-lines-header p,
  .section-header p,
  .ibg-corporate-header p,
  .ig-section-header p {
    font-size: 16px;
  }

  .ibg-lines-grid,
  .ig-product-grid,
  .sectors-grid,
  .visibility-grid,
  .workflow-grid,
  .form-grid,
  .contact-trust,
  .ig-market-features,
  .ig-market-kpi-grid,
  .ig-market-flow,
  .ig-market-note,
  .ibg-kpi-grid,
  .ibg-platform-panels {
    grid-template-columns: 1fr;
  }

  .ibg-line-card {
    min-height: auto;
    padding: 28px;
    border-radius: 28px;
  }

  .ibg-line-card h3 {
    font-size: 26px;
  }

  .ibg-unify-container {
    width: 100%;
    gap: 48px;
  }

  .ibg-unify-title {
    font-size: clamp(40px, 12vw, 58px);
    letter-spacing: -2px;
  }

  .ibg-unify-text {
    font-size: 16px;
  }

  .ibg-benefit {
    grid-template-columns: 1fr;
  }

  .ibg-platform-card {
    grid-template-columns: 1fr;
  }

  .ibg-platform-sidebar {
    display: none;
  }

  .ibg-unify-btn,
  .visibility-btn {
    width: 100%;
  }

  .ibg-platform-content {
    padding: 22px;
  }

  .ig-container,
  .container {
    width: min(100% - 28px, 1420px);
  }

  .ig-services,
  .section,
  .ig-market-fixed {
    padding: 72px 0;
  }

  .ig-products-panel {
    padding: 32px 18px;
    border-radius: 28px;
  }

  .ig-product-card {
    min-height: auto;
  }

  .ig-market-fixed {
    padding-left: 14px;
    padding-right: 14px;
  }

  .ig-market-card {
    padding: 28px 18px;
    border-radius: 26px;
  }

  .ig-market-title {
    font-size: 38px;
    letter-spacing: -1.8px;
  }

  .ig-market-text {
    font-size: 16px;
  }

  .ig-market-visual {
    padding: 16px;
    border-radius: 26px;
  }

  .ig-market-dashboard {
    padding: 18px;
    border-radius: 22px;
  }

  .ig-market-dashboard-header {
    flex-direction: column;
  }

  .ig-market-tabs {
    flex-direction: column;
  }

  .ig-market-row {
    grid-template-columns: 46px 1fr;
  }

  .ig-market-tag {
    grid-column: 2;
    width: fit-content;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .ibg-corporate-card {
    border-radius: 26px;
  }

  .ibg-corporate-card img {
    height: 320px;
  }

  .ibg-corporate-content,
  .contact-form,
  .legal-card {
    padding: 24px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner div {
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================
   Home final pegada desde WordPress/Elementor, trasladada a PHP limpio
   ========================================================== */

.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
				.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
					background-image: none !important;
				}
				@media screen and (max-height: 1024px) {
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}
				@media screen and (max-height: 640px) {
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
					.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
						background-image: none !important;
					}
				}

#v360-form-shell{
  width:100% !important;
  max-width:1180px !important;
  margin:40px auto 0 !important;
  display:grid !important;
  grid-template-columns:repeat(4,1fr) !important;
  gap:18px !important;
}

/* Esto es clave: Contact Form 7 mete spans internos */
#v360-form-shell .wpcf7-form-control-wrap{
  display:block !important;
  width:100% !important;
}

#v360-form-shell input,
#v360-form-shell select,
#v360-form-shell textarea{
  width:100% !important;
  min-height:56px !important;
  border:1px solid rgba(21,95,159,.13) !important;
  border-radius:16px !important;
  background:#fff !important;
  padding:15px 18px !important;
  color:#14253a !important;
  font-size:15px !important;
  box-shadow:0 10px 24px rgba(21,95,159,.06) !important;
}

#v360-form-shell textarea{
  min-height:150px !important;
  grid-column:1/-1 !important;
}

#v360-form-shell p{
  display:contents !important;
}

#v360-form-shell .wpcf7-submit{
  grid-column:1/-1 !important;
  width:auto !important;
  min-width:280px !important;
  justify-self:center !important;
  border:0 !important;
  border-radius:999px !important;
  background:linear-gradient(135deg,#092b50,#1b74b8) !important;
  color:#fff !important;
  font-weight:900 !important;
  cursor:pointer !important;
}

@media(max-width:900px){
  #v360-form-shell{
    grid-template-columns:repeat(2,1fr) !important;
  }
}

@media(max-width:640px){
  #v360-form-shell{
    grid-template-columns:1fr !important;
  }
}

.ibg-business-lines {
      width: 100%;
      padding: 90px 32px;
      background: #ffffff;
      font-family: Arial, Helvetica, sans-serif;
      color: #062b52;
      overflow: hidden;
    }

    .ibg-business-wrap {
      width: 100%;
      max-width: 1680px;
      margin: 0 auto;
    }

    .ibg-business-header {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 80px;
      align-items: end;
      margin-bottom: 70px;
    }

    .ibg-business-kicker {
      display: inline-block;
      margin-bottom: 18px;
      color: #00529b;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .14em;
    }

    .ibg-business-header h2 {
      margin: 0;
      max-width: 700px;
      font-size: clamp(30px, 3vw, 42px);
      line-height: .96;
      letter-spacing: -2.5px;
      color: #062b52;
    }

    .ibg-business-header p {
      margin: 0;
      max-width: 720px;
      color: #526b84;
      font-size: 19px;
      line-height: 1.75;
    }

    .ibg-business-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .ibg-business-card {
      background: #ffffff;
      border: 1px solid rgba(0,82,155,.14);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 18px 48px rgba(0,45,95,.08);
      transition: .35s ease;
    }

    .ibg-business-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 28px 75px rgba(0,45,95,.16);
      border-color: rgba(0,82,155,.25);
    }

    .ibg-business-image {
      position: relative;
      height: 205px;
      overflow: hidden;
    }

    .ibg-business-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s ease;
    }

    .ibg-business-card:hover .ibg-business-image img {
      transform: scale(1.05);
    }

    .ibg-business-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
      rgba(6,43,82,.72),
      rgba(6,43,82,.06));
    }

    .ibg-business-label {
      position: absolute;
      left: 20px;
      bottom: 18px;
      z-index: 2;
      padding: 8px 13px;
      border-radius: 999px;
      background: #ffffff;
      color: #00529b;
      font-size: 11px;
      font-weight: 800;
      box-shadow: 0 10px 30px rgba(0,35,75,.18);
    }

    .ibg-business-body {
      padding: 24px;
    }

    .ibg-business-body h3 {
      margin: 0 0 12px;
      font-size: 22px;
      line-height: 1.12;
      color: #062b52;
      letter-spacing: -.4px;
    }

    .ibg-business-body p {
      margin: 0 0 20px;
      color: #526b84;
      font-size: 14.5px;
      line-height: 1.65;
    }

    .ibg-business-body ul {
      list-style: none;
      padding: 0;
      margin: 0 0 26px;
    }

    .ibg-business-body li {
      position: relative;
      padding-left: 24px;
      margin-bottom: 10px;
      color: #38556f;
      line-height: 1.45;
      font-size: 14px;
    }

    .ibg-business-body li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #00529b;
      box-shadow: 0 0 0 5px rgba(0,82,155,.08);
    }

    .ibg-business-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #00529b;
      text-decoration: none;
      font-weight: 900;
      border-bottom: 2px solid rgba(0,82,155,.2);
      padding-bottom: 5px;
      transition: .3s ease;
      font-size: 14px;
    }

    .ibg-business-link:hover {
      gap: 15px;
      border-color: #00529b;
    }

    .ibg-priority {
      position: relative;
      border: 2px solid rgba(0,82,155,.25);
    }

    .ibg-priority::before {
      content: "Más demandado";
      position: absolute;
      top: 18px;
      right: 18px;
      z-index: 5;
      background: #00529b;
      color: #ffffff;
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      box-shadow: 0 12px 25px rgba(0,82,155,.22);
    }

    @media (max-width: 1100px) {
      .ibg-business-header {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .ibg-business-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 720px) {
      .ibg-business-lines {
        padding: 80px 18px;
      }

      .ibg-business-grid {
        grid-template-columns: 1fr;
      }

      .ibg-business-body {
        padding: 28px;
      }
    }

.ig-services-strip {
      --white: #ffffff;
      --navy: #062344;
      --blue: #155f9f;
      --orange: #f4a62a;
      --border: rgba(21, 95, 159, .14);
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      padding: 20px 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      background: linear-gradient(90deg, #ffffff, #f5faff, #ffffff);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative;
      z-index: 1;
    }

    .ig-services-strip * {
      box-sizing: border-box;
    }

    .ig-services-strip-window {
      width: 100%;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .ig-services-strip-track {
      display: flex;
      align-items: center;
      gap: 14px;
      width: max-content;
      min-width: max-content;
      flex-shrink: 0;
      animation: igServicesMarquee 190s linear infinite;
      will-change: transform;
    }

    .ig-services-strip-item {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-width: max-content;
      padding: 12px 18px;
      border-radius: 999px;
      background: var(--white);
      border: 1px solid var(--border);
      box-shadow: 0 12px 28px rgba(21,95,159,.07);
      color: var(--navy);
      font-size: .95rem;
      font-weight: 900;
      line-height: 1;
      white-space: nowrap;
      user-select: none;
      pointer-events: none;
    }

    .ig-services-strip-item:nth-child(3n) {
      border-color: rgba(244, 166, 42, .25);
    }

    .ig-services-strip-item:nth-child(4n) {
      background: linear-gradient(180deg, #ffffff, #eef6ff);
    }

    @keyframes igServicesMarquee {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    @media (max-width: 640px) {
      .ig-services-strip {
        padding: 16px 0;
      }

      .ig-services-strip-track {
        gap: 10px;
        animation-duration: 165s;
      }

      .ig-services-strip-item {
        padding: 10px 14px;
        font-size: .86rem;
      }
    }

.ibg-unify-corporate,
    .ibg-unify-corporate * {
      box-sizing: border-box;
    }

    .ibg-unify-corporate {
      width: 100%;
      padding: 90px 32px;
      background: #ffffff;
      font-family: Arial, Helvetica, sans-serif;
      color: #062b52;
      overflow: hidden;
    }

    .ibg-unify-corporate-wrap {
      width: 100%;
      max-width: 1480px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 70px;
      align-items: center;
    }

    .ibg-unify-corporate-copy {
      max-width: 640px;
    }

    .ibg-unify-corporate-copy h2 {
      margin: 0 0 22px;
      max-width: 560px;
      color: #062b52;
      font-size: clamp(30px, 3vw, 42px);
      line-height: 1.08;
      letter-spacing: -1.1px;
      font-weight: 900;
    }

    .ibg-unify-corporate-copy h2 span {
      color: #00529b;
    }

    .ibg-unify-corporate-copy > p {
      margin: 0 0 34px;
      color: #526b84;
      font-size: 17px;
      line-height: 1.7;
    }

    .ibg-unify-corporate-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 34px;
    }

    .ibg-unify-corporate-item {
      padding: 22px;
      border-radius: 22px;
      background: #ffffff;
      border: 1px solid rgba(0, 82, 155, .12);
      box-shadow: 0 14px 36px rgba(0, 45, 95, .065);
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .ibg-unify-corporate-item:hover {
      transform: translateY(-4px);
      border-color: rgba(0, 82, 155, .24);
      box-shadow: 0 22px 50px rgba(0, 45, 95, .10);
    }

    .ibg-unify-corporate-icon {
      width: 42px;
      height: 42px;
      margin-bottom: 16px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background: #eef5fb;
      color: #00529b;
      border: 1px solid rgba(0, 82, 155, .12);
    }

    .ibg-unify-corporate-icon svg {
      width: 21px;
      height: 21px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .ibg-unify-corporate-item h3 {
      margin: 0 0 8px;
      color: #062b52;
      font-size: 17px;
      line-height: 1.25;
      font-weight: 900;
    }

    .ibg-unify-corporate-item p {
      margin: 0;
      color: #526b84;
      font-size: 14px;
      line-height: 1.55;
    }

    .ibg-unify-corporate-actions {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
    }

    .ibg-unify-corporate-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 23px;
      border-radius: 999px;
      background: #00529b;
      color: #ffffff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 900;
      box-shadow: 0 14px 30px rgba(0, 82, 155, .20);
      transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
    }

    .ibg-unify-corporate-btn:hover {
      transform: translateY(-3px);
      background: #062b52;
      box-shadow: 0 20px 44px rgba(0, 82, 155, .26);
    }

    .ibg-unify-corporate-link {
      color: #00529b;
      font-size: 14px;
      font-weight: 900;
      text-decoration: none;
      border-bottom: 2px solid rgba(0, 82, 155, .2);
      padding-bottom: 5px;
    }

    .ibg-unify-corporate-link:hover {
      border-color: #00529b;
    }

    .ibg-unify-image-area {
      position: relative;
      min-height: 560px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 36px;
      border-radius: 36px;
      background:
        radial-gradient(circle at 20% 20%, rgba(0, 82, 155, .10), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #eef5fb 100%);
      border: 1px solid rgba(0, 82, 155, .12);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.8);
      overflow: hidden;
    }

    .ibg-unify-image-area::before {
      content: "";
      position: absolute;
      inset: 32px;
      border-radius: 30px;
      border: 1px dashed rgba(0, 82, 155, .14);
      pointer-events: none;
    }

    .ibg-dashboard-image-card {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 680px;
      border-radius: 30px;
      overflow: hidden;
      background: #ffffff;
      border: 1px solid rgba(0, 82, 155, .14);
      box-shadow: 0 28px 76px rgba(0, 45, 95, .16);
      transform: perspective(1200px) rotateY(-3deg) rotateX(1.5deg);
      transition: transform .35s ease, box-shadow .35s ease;
    }

    .ibg-dashboard-image-card:hover {
      transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-5px);
      box-shadow: 0 36px 96px rgba(0, 45, 95, .20);
    }

    .ibg-dashboard-image-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .ibg-dashboard-floating-badge {
      position: absolute;
      z-index: 4;
      right: 22px;
      bottom: 22px;
      padding: 11px 15px;
      border-radius: 999px;
      background: #ffffff;
      color: #00529b;
      font-size: 12px;
      font-weight: 900;
      box-shadow: 0 16px 36px rgba(0, 45, 95, .14);
      border: 1px solid rgba(0, 82, 155, .12);
    }

    .ibg-reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .75s ease, transform .75s ease;
    }

    .ibg-reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1180px) {
      .ibg-unify-corporate-wrap {
        grid-template-columns: 1fr;
        gap: 60px;
      }

      .ibg-unify-corporate-copy {
        max-width: 820px;
      }

      .ibg-unify-image-area {
        min-height: auto;
      }
    }

    @media (max-width: 720px) {
      .ibg-unify-corporate {
        padding: 75px 18px;
      }

      .ibg-unify-corporate-copy h2 {
        font-size: clamp(28px, 9vw, 36px);
        line-height: 1.08;
        letter-spacing: -1px;
      }

      .ibg-unify-corporate-copy > p {
        font-size: 16px;
      }

      .ibg-unify-corporate-grid {
        grid-template-columns: 1fr;
      }

      .ibg-unify-image-area {
        padding: 20px;
        border-radius: 28px;
      }

      .ibg-dashboard-image-card {
        border-radius: 22px;
        transform: none;
      }

      .ibg-dashboard-floating-badge {
        display: none;
      }
    }

.ig-services-pro {
      --white: #ffffff;
      --soft: #f6faff;
      --soft-2: #eef6ff;
      --navy: #062344;
      --navy-2: #092b50;
      --blue: #155f9f;
      --blue-2: #1b74b8;
      --blue-3: #73bfe5;
      --orange: #f4a62a;
      --text: #14253a;
      --muted: #63758a;
      --border: rgba(21, 95, 159, .12);
      --shadow: 0 24px 70px rgba(21, 95, 159, .12);
      position: relative;
      overflow: hidden;
      padding: 100px 0;
      background:
        radial-gradient(circle at 8% 18%, rgba(21,95,159,.10), transparent 30%),
        radial-gradient(circle at 88% 16%, rgba(244,166,42,.10), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f6faff 46%, #ffffff 100%);
      font-family: Inter, Arial, Helvetica, sans-serif;
      color: var(--text);
    }

    .ig-services-pro * {
      box-sizing: border-box;
    }

    .ig-services-pro::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(21,95,159,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21,95,159,.045) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(to bottom, black, transparent 86%);
      pointer-events: none;
    }

    .ig-container {
      width: min(100% - 64px, 1680px);
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .ig-section-header {
      max-width: 860px;
      margin: 0 auto 48px;
      text-align: center;
    }

    .ig-eyebrow {
      display: inline-flex;
      width: max-content;
      margin: 0 auto 14px;
      padding: 8px 13px;
      border-radius: 999px;
      color: var(--blue);
      background: linear-gradient(90deg, rgba(21,95,159,.08), rgba(244,166,42,.10));
      border: 1px solid rgba(21,95,159,.10);
      font-size: .76rem;
      font-weight: 950;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .ig-section-header h2 {
      margin: 0 0 16px;
      color: var(--navy);
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      line-height: 1.02;
      letter-spacing: -.065em;
    }

    .ig-section-header p {
      margin: 0;
      color: var(--muted);
      font-size: 1.06rem;
      line-height: 1.7;
    }

    .ig-products-panel {
      padding: 38px;
      border-radius: 38px;
      background: rgba(255,255,255,.84);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .ig-products-head {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 30px;
      align-items: end;
      margin-bottom: 30px;
    }

    .ig-products-head h2 {
      margin: 0;
      color: var(--navy);
      font-size: clamp(1.9rem, 3vw, 2.8rem);
      line-height: 1.02;
      letter-spacing: -.055em;
    }

    .ig-products-head p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 1rem;
    }

    .ig-filter-bar {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 34px;
    }

    .ig-filter-btn {
      min-height: 44px;
      padding: 0 18px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255,255,255,.92);
      color: var(--navy);
      font: inherit;
      font-size: .9rem;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 12px 28px rgba(21,95,159,.07);
      transition: .25s ease;
    }

    .ig-filter-btn:hover,
    .ig-filter-btn.active {
      transform: translateY(-2px);
      color: #fff;
      border-color: transparent;
      background: linear-gradient(135deg, var(--navy-2), var(--blue-2));
      box-shadow: 0 16px 34px rgba(9,43,80,.20);
    }

    .ig-product-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(260px, 1fr));
      gap: 30px;
      align-items: stretch;
    }

    .ig-product-card {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      background: #fff;
      border: 1px solid var(--border);
      box-shadow: 0 18px 48px rgba(21,95,159,.10);
      transition: opacity .25s ease, filter .25s ease, transform .25s ease, box-shadow .25s ease;
    }

    .ig-product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 74px rgba(21,95,159,.16);
      border-color: rgba(21,95,159,.22);
    }

    .ig-product-card.is-dimmed {
      opacity: .22;
      filter: grayscale(.45);
      transform: none;
    }

    .ig-product-card.is-dimmed:hover {
      opacity: .34;
      transform: none;
      box-shadow: 0 18px 48px rgba(21,95,159,.10);
    }

    .ig-product-visual {
      position: relative;
      height: 190px;
      overflow: hidden;
      background: var(--soft-2);
    }

    .ig-product-visual img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: .45s ease;
    }

    .ig-product-card:hover .ig-product-visual img {
      transform: scale(1.08);
    }

    .ig-product-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(6,35,68,.04), rgba(6,35,68,.45));
      pointer-events: none;
    }

    .ig-product-icon {
      position: absolute;
      left: 16px;
      bottom: 14px;
      z-index: 2;
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      background: rgba(255,255,255,.94);
      border: 1px solid rgba(255,255,255,.70);
      box-shadow: 0 16px 38px rgba(6,35,68,.18);
      font-size: 1.38rem;
    }

    .ig-product-label {
      position: absolute;
      right: 14px;
      bottom: 17px;
      z-index: 2;
      padding: 7px 10px;
      border-radius: 999px;
      color: #fff;
      background: rgba(6,35,68,.72);
      font-size: .68rem;
      font-weight: 900;
      backdrop-filter: blur(10px);
    }

    .ig-product-body {
      padding: 22px;
      background: linear-gradient(180deg, #fff, #f8fbff);
    }

    .ig-product-body h3 {
      margin: 0 0 9px;
      color: var(--navy);
      font-size: 1.25rem;
      line-height: 1.14;
      letter-spacing: -.035em;
    }

    .ig-product-desc {
      margin: 0 0 16px;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.58;
    }

    .ig-metrics-preview {
      display: grid;
      gap: 8px;
      margin-bottom: 18px;
    }

    .ig-metric {
      padding: 9px 11px;
      border-radius: 14px;
      color: #38556f;
      background: rgba(255,255,255,.88);
      border: 1px solid rgba(21,95,159,.10);
      font-size: .8rem;
      line-height: 1.3;
      font-weight: 800;
    }

    .ig-open-modal {
      width: 100%;
      min-height: 43px;
      border: 0;
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(135deg, var(--navy-2), var(--blue-2));
      font: inherit;
      font-size: .86rem;
      font-weight: 950;
      cursor: pointer;
      transition: .25s ease;
    }

    .ig-open-modal:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(9,43,80,.20);
    }

    .ig-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(6, 35, 68, .58);
      backdrop-filter: blur(10px);
    }

    .ig-modal.active {
      display: flex;
      animation: igModalFade .25s ease both;
    }

    @keyframes igModalFade {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .ig-modal-box {
      width: min(920px, 100%);
      max-height: min(86vh, 760px);
      overflow: auto;
      border-radius: 34px;
      background:
        radial-gradient(circle at 85% 0%, rgba(244,166,42,.12), transparent 30%),
        linear-gradient(180deg, #ffffff, #f6faff);
      border: 1px solid rgba(255,255,255,.86);
      box-shadow: 0 34px 110px rgba(6,35,68,.35);
      animation: igModalUp .28s ease both;
    }

    @keyframes igModalUp {
      from { opacity: 0; transform: translateY(18px) scale(.98); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .ig-modal-top {
      position: sticky;
      top: 0;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: start;
      padding: 28px 30px 22px;
      background: rgba(255,255,255,.92);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(14px);
    }

    .ig-modal-kicker {
      display: inline-flex;
      width: max-content;
      margin-bottom: 10px;
      padding: 7px 11px;
      border-radius: 999px;
      color: var(--blue);
      background: rgba(21,95,159,.08);
      font-size: .72rem;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .ig-modal-title {
      margin: 0 0 8px;
      color: var(--navy);
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      line-height: 1.04;
      letter-spacing: -.055em;
    }

    .ig-modal-desc {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
      max-width: 690px;
    }

    .ig-modal-close {
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 999px;
      background: rgba(21,95,159,.08);
      color: var(--navy);
      font-size: 1.35rem;
      font-weight: 900;
      cursor: pointer;
      transition: .2s ease;
    }

    .ig-modal-close:hover {
      color: #fff;
      background: linear-gradient(135deg, var(--navy-2), var(--blue-2));
      transform: rotate(90deg);
    }

    .ig-modal-content {
      padding: 26px 30px 30px;
    }

    .ig-modal-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .ig-modal-kpi {
      padding: 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.88);
      border: 1px solid rgba(21,95,159,.11);
      color: #38556f;
      font-size: .9rem;
      line-height: 1.45;
      font-weight: 850;
      box-shadow: 0 10px 24px rgba(21,95,159,.06);
    }

    .ig-modal-footer {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      justify-content: space-between;
      margin-top: 22px;
      padding: 18px;
      border-radius: 22px;
      background: linear-gradient(90deg, rgba(21,95,159,.08), rgba(244,166,42,.10));
      border: 1px solid rgba(21,95,159,.10);
    }

    .ig-modal-footer strong {
      color: var(--navy);
    }

    .ig-modal-footer span {
      color: var(--muted);
      font-size: .92rem;
    }

    @media (max-width: 1180px) {
      .ig-product-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
        gap: 24px;
      }

      .ig-products-head {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 720px) {
      .ig-services-pro {
        padding: 78px 0;
      }

      .ig-container {
        width: min(100% - 28px, 1240px);
      }

      .ig-products-panel {
        padding: 18px;
        border-radius: 28px;
      }

      .ig-product-grid {
        grid-template-columns: 1fr;
      }

      .ig-modal-grid {
        grid-template-columns: 1fr;
      }

      .ig-modal-top {
        padding: 24px 22px 18px;
      }

      .ig-modal-content {
        padding: 22px;
      }
    }

* {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: #ffffff;
      color: #111827;
    }

    .visibility-section {
      width: 100%;
      background: #ffffff;
      padding: 0;
      overflow: hidden;
    }

    .visibility-hero {
      width: 100%;
      background: linear-gradient(135deg, #0b2f4f 0%, #123f63 100%);
      color: #ffffff;
      padding: 90px 6vw 120px;
      position: relative;
    }

    .visibility-hero::after {
      content: "";
      position: absolute;
      right: -120px;
      top: -120px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
    }

    .visibility-hero-content {
      position: relative;
      z-index: 2;
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 60px;
      align-items: center;
    }

    .visibility-kicker {
      display: inline-block;
      margin-bottom: 20px;
      color: #f6a15a;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .visibility-title {
      margin: 0;
      max-width: 680px;
      font-size: clamp(38px, 5vw, 64px);
      line-height: 1.03;
      letter-spacing: -2px;
      font-weight: 900;
    }

    .visibility-text {
      margin: 24px 0 0;
      max-width: 620px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 18px;
      line-height: 1.7;
    }

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

    .visibility-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 26px;
      border-radius: 8px;
      background: #f97316;
      color: #ffffff;
      font-size: 15px;
      font-weight: 800;
      text-decoration: none;
      transition: 0.2s ease;
      border: 1px solid transparent;
    }

    .visibility-btn:hover {
      background: #ea580c;
      transform: translateY(-2px);
    }

    .visibility-btn-secondary {
      background: transparent;
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.34);
    }

    .visibility-btn-secondary:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.55);
      transform: translateY(-2px);
    }

    .visibility-small {
      color: rgba(255, 255, 255, 0.68);
      font-size: 14px;
      font-weight: 600;
    }

    .visibility-summary {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 18px;
      padding: 28px;
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .summary-row:last-child {
      border-bottom: 0;
    }

    .summary-row span {
      color: rgba(255, 255, 255, 0.68);
      font-size: 14px;
      font-weight: 600;
    }

    .summary-row strong {
      color: #ffffff;
      font-size: 18px;
      font-weight: 800;
      text-align: right;
    }

    .visibility-content {
      max-width: 1180px;
      margin: -70px auto 0;
      padding: 0 20px 90px;
      position: relative;
      z-index: 4;
    }

    .visibility-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .visibility-card {
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      padding: 28px;
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
      min-height: 245px;
      transition: 0.2s ease;
    }

    .visibility-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
    }

    .visibility-number {
      display: inline-flex;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: #eef5fb;
      color: #0b2f4f;
      font-size: 14px;
      font-weight: 900;
      margin-bottom: 26px;
    }

    .visibility-card h3 {
      margin: 0 0 12px;
      color: #111827;
      font-size: 21px;
      line-height: 1.25;
      font-weight: 800;
    }

    .visibility-card p {
      margin: 0;
      color: #64748b;
      font-size: 15px;
      line-height: 1.6;
    }

    @media (max-width: 1050px) {
      .visibility-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .visibility-summary {
        max-width: 560px;
      }

      .visibility-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .visibility-hero {
        padding: 70px 20px 100px;
      }

      .visibility-title {
        font-size: 36px;
        letter-spacing: -1px;
      }

      .visibility-text {
        font-size: 16px;
      }

      .visibility-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .visibility-btn {
        width: 100%;
      }

      .visibility-small {
        text-align: center;
      }

      .visibility-content {
        margin-top: -55px;
        padding-bottom: 60px;
      }

      .visibility-grid {
        grid-template-columns: 1fr;
      }

      .visibility-card {
        min-height: auto;
      }

      .summary-row {
        flex-direction: column;
        gap: 6px;
      }

      .summary-row strong {
        text-align: left;
      }
    }

.ibg-ecosystem-premium {
      width: 100%;
      padding: 90px 32px;
      background: #ffffff;
      font-family: Arial, Helvetica, sans-serif;
      color: #062b52;
    }

    .ibg-ecosystem-premium-wrap {
      width: 100%;
      max-width: 1560px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      align-items: stretch;
      border-radius: 36px;
      overflow: hidden;
      background: #f4f8fc;
      border: 1px solid rgba(0, 82, 155, .12);
      box-shadow: 0 24px 70px rgba(0, 45, 95, .12);
    }

    .ibg-ecosystem-premium-image {
      min-height: 560px;
      position: relative;
      overflow: hidden;
    }

    .ibg-ecosystem-premium-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(.95) contrast(1.02);
    }

    .ibg-ecosystem-premium-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        90deg,
        rgba(6, 43, 82, .16),
        rgba(6, 43, 82, .02)
      );
    }

    .ibg-ecosystem-premium-content {
      padding: 72px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background:
        radial-gradient(circle at 90% 10%, rgba(0, 82, 155, .10), transparent 36%),
        #ffffff;
    }

    .ibg-ecosystem-premium-tag {
      width: fit-content;
      margin-bottom: 22px;
      padding: 9px 15px;
      border-radius: 999px;
      background: #eaf4ff;
      color: #00529b;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .14em;
    }

    .ibg-ecosystem-premium-content h3 {
      margin: 0 0 24px;
      max-width: 650px;
      font-size: clamp(38px, 4vw, 64px);
      line-height: 1;
      letter-spacing: -2px;
      color: #062b52;
    }

    .ibg-ecosystem-premium-content p {
      margin: 0 0 34px;
      max-width: 640px;
      color: #526b84;
      font-size: 18px;
      line-height: 1.75;
    }

    .ibg-ecosystem-premium-points {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 38px;
    }

    .ibg-ecosystem-premium-point {
      padding: 18px;
      border-radius: 18px;
      background: #f4f8fc;
      border: 1px solid rgba(0, 82, 155, .10);
    }

    .ibg-ecosystem-premium-point strong {
      display: block;
      color: #00529b;
      font-size: 22px;
      margin-bottom: 5px;
    }

    .ibg-ecosystem-premium-point span {
      color: #526b84;
      font-size: 13px;
      line-height: 1.35;
    }

    .ibg-ecosystem-premium-actions {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
    }

    .ibg-ecosystem-premium-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 24px;
      border-radius: 999px;
      background: #00529b;
      color: #ffffff;
      text-decoration: none;
      font-weight: 900;
      box-shadow: 0 14px 32px rgba(0, 82, 155, .22);
      transition: .3s ease;
    }

    .ibg-ecosystem-premium-btn:hover {
      transform: translateY(-3px);
      background: #062b52;
      box-shadow: 0 20px 45px rgba(0, 82, 155, .28);
    }

    .ibg-ecosystem-premium-link {
      color: #00529b;
      text-decoration: none;
      font-weight: 900;
      border-bottom: 2px solid rgba(0, 82, 155, .2);
      padding-bottom: 5px;
    }

    @media (max-width: 1100px) {
      .ibg-ecosystem-premium-wrap {
        grid-template-columns: 1fr;
      }

      .ibg-ecosystem-premium-image {
        min-height: 420px;
      }

      .ibg-ecosystem-premium-content {
        padding: 52px;
      }
    }

    @media (max-width: 720px) {
      .ibg-ecosystem-premium {
        padding: 70px 18px;
      }

      .ibg-ecosystem-premium-content {
        padding: 34px;
      }

      .ibg-ecosystem-premium-points {
        grid-template-columns: 1fr;
      }

      .ibg-ecosystem-premium-image {
        min-height: 300px;
      }
    }

.ig-sectors-web {
      --white: #ffffff;
      --soft: #f6faff;
      --soft-2: #eef6ff;
      --navy: #062344;
      --navy-2: #092b50;
      --blue: #155f9f;
      --blue-2: #1b74b8;
      --blue-3: #73bfe5;
      --orange: #f4a62a;
      --text: #14253a;
      --muted: #63758a;
      --border: rgba(21, 95, 159, .12);
      --shadow: 0 24px 70px rgba(21, 95, 159, .12);
      position: relative;
      overflow: hidden;
      padding: 96px 0;
      background:
        radial-gradient(circle at 8% 18%, rgba(21,95,159,.10), transparent 30%),
        radial-gradient(circle at 88% 16%, rgba(244,166,42,.10), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f6faff 46%, #ffffff 100%);
    }

    .ig-sectors-web * { box-sizing: border-box; }

    .ig-sectors-web::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(21,95,159,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21,95,159,.045) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(to bottom, black, transparent 86%);
      pointer-events: none;
    }

    .ig-sectors-web .container {
      position: relative;
      z-index: 2;
    }

    .ig-sectors-web .section-header {
      max-width: 830px;
      margin: 0 auto 46px;
      text-align: center;
    }

    .ig-sectors-web .section-header span {
      display: inline-flex;
      width: max-content;
      margin: 0 auto 14px;
      padding: 8px 13px;
      border-radius: 999px;
      color: var(--blue);
      background: linear-gradient(90deg, rgba(21,95,159,.08), rgba(244,166,42,.10));
      border: 1px solid rgba(21,95,159,.10);
      font-size: .76rem;
      font-weight: 950;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .ig-sectors-web .section-header h2 {
      color: var(--navy);
      font-size: clamp(2.1rem, 4vw, 3.35rem);
      line-height: 1.04;
      letter-spacing: -.06em;
      margin: 0 0 16px;
    }

    .ig-sectors-web .section-header p {
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.7;
      margin: 0;
    }

    .ig-sector-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin: 0 auto 34px;
    }

    .ig-sector-tab {
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255,255,255,.88);
      color: var(--navy);
      min-height: 44px;
      padding: 0 18px;
      box-shadow: 0 12px 28px rgba(21,95,159,.07);
      font: inherit;
      font-size: .9rem;
      font-weight: 900;
      cursor: pointer;
      transition: .25s ease;
    }

    .ig-sector-tab:hover,
    .ig-sector-tab.active {
      transform: translateY(-2px);
      color: #fff;
      border-color: transparent;
      background: linear-gradient(135deg, var(--navy-2), var(--blue-2));
      box-shadow: 0 16px 34px rgba(9,43,80,.20);
    }

    .ig-sectors-panel {
      display: none;
      animation: igSectorFade .45s ease both;
    }

    .ig-sectors-panel.active { display: block; }

    @keyframes igSectorFade {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .ig-sectors-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .ig-sector-card {
      position: relative;
      min-height: 350px;
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid var(--border);
      background: #fff;
      box-shadow: var(--shadow);
      transition: .3s ease;
    }

    .ig-sector-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 74px rgba(21,95,159,.16);
      border-color: rgba(21,95,159,.22);
    }

    .ig-sector-image {
      position: relative;
      height: 178px;
      overflow: hidden;
      background: var(--soft-2);
    }

    .ig-sector-image img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: .45s ease;
    }

    .ig-sector-card:hover .ig-sector-image img { transform: scale(1.08); }

    .ig-sector-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(6,35,68,.04), rgba(6,35,68,.34));
      pointer-events: none;
    }

    .ig-sector-icon {
      position: absolute;
      left: 16px;
      bottom: 14px;
      z-index: 2;
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      background: rgba(255,255,255,.94);
      border: 1px solid rgba(255,255,255,.70);
      box-shadow: 0 16px 38px rgba(6,35,68,.18);
      font-size: 1.35rem;
    }

    .ig-sector-body {
      padding: 18px;
      background: linear-gradient(180deg, #fff, #f8fbff);
    }

    .ig-sector-kicker {
      display: inline-flex;
      margin-bottom: 9px;
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--blue);
      background: rgba(21,95,159,.08);
      font-size: .68rem;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .ig-sector-body h3 {
      margin: 0 0 9px;
      color: var(--navy);
      font-size: 1.03rem;
      line-height: 1.16;
      letter-spacing: -.035em;
    }

    .ig-sector-body p {
      margin: 0;
      color: var(--muted);
      font-size: .82rem;
      line-height: 1.52;
    }

    .ig-sector-bottom-strip {
      overflow: hidden;
      margin-top: 32px;
      padding: 18px 0;
      border-radius: 24px;
      border: 1px solid var(--border);
      background: linear-gradient(90deg, #fff, #f5faff, #fff);
      box-shadow: 0 16px 38px rgba(21,95,159,.08);
    }

    .ig-sector-strip-track {
      display: flex;
      width: max-content;
      gap: 14px;
      animation: igSectorMarquee 120s linear infinite;
    }

    .ig-sector-strip-item {
      padding: 12px 18px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--border);
      box-shadow: 0 12px 28px rgba(21,95,159,.07);
      color: var(--navy);
      font-weight: 900;
      white-space: nowrap;
    }

    @keyframes igSectorMarquee { to { transform: translateX(-50%); } }

    @media (max-width: 1180px) {
      .ig-sectors-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
      .ig-sector-body { padding: 16px; }
      .ig-sector-body h3 { font-size: .96rem; }
      .ig-sector-body p { font-size: .78rem; }
    }

    @media (max-width: 980px) {
      .ig-sectors-grid { grid-template-columns: repeat(2, 1fr); }
      .ig-sector-card { min-height: 340px; }
    }

    @media (max-width: 640px) {
      .ig-sectors-web { padding: 78px 0; }
      .ig-sectors-grid { grid-template-columns: 1fr; }
      .ig-sector-card { min-height: auto; }
      .ig-sector-image { height: 190px; }
    }

.ibg-elegance-section {
    width: 100%;
    padding: 64px 32px;
    background:
      radial-gradient(circle at 8% 12%, rgba(255, 122, 0, 0.06), transparent 26%),
      linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    font-family: Arial, Helvetica, sans-serif;
    color: #102033;
    overflow: hidden;
  }

  .ibg-elegance-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 64px;
    align-items: center;
  }

  .ibg-elegance-copy {
    max-width: 520px;
  }

  .ibg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #ff7a00;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1.3px;
    text-transform: uppercase;
  }

  .ibg-eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: #ff7a00;
    opacity: 0.75;
  }

  .ibg-elegance-copy h2 {
    margin: 0;
    color: #082544;
    font-size: clamp(31px, 3.7vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.2px;
    font-weight: 900;
  }

  .ibg-elegance-copy > p {
    margin: 16px 0 0;
    color: #52657a;
    font-size: 16px;
    line-height: 1.65;
  }

  .ibg-elegance-message {
    margin-top: 24px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(8, 37, 68, 0.14);
  }

  .ibg-elegance-message p {
    margin: 0;
    color: #082544;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 750;
    letter-spacing: -0.2px;
  }

  .ibg-elegance-message span {
    display: inline-block;
    margin-top: 11px;
    color: #ff7a00;
    font-size: 11.5px;
    font-weight: 850;
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }

  .ibg-elegance-visual {
    position: relative;
    min-height: 430px;
  }

  .ibg-main-photo {
    position: absolute;
    inset: 0 72px 58px 0;
    border-radius: 24px;
    overflow: hidden;
    background: #e5e7eb;
    box-shadow: 0 18px 48px rgba(8, 37, 68, 0.12);
  }

  .ibg-main-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(8, 37, 68, 0.02) 0%,
      rgba(8, 37, 68, 0.18) 100%
    );
    pointer-events: none;
  }

  .ibg-main-photo img,
  .ibg-floating-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .ibg-main-photo img {
    transform: scale(1.02);
    animation: ibgPhotoFloat 12s ease-in-out infinite;
  }

  .ibg-floating-photo {
    position: absolute;
    width: 38%;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #e5e7eb;
    border: 8px solid #f4f7fb;
    box-shadow: 0 18px 42px rgba(8, 37, 68, 0.15);
    animation: ibgSoftFloat 7.5s ease-in-out infinite;
  }

  .ibg-floating-photo img {
    aspect-ratio: 4 / 3;
  }

  .ibg-floating-card {
    position: absolute;
    left: 26px;
    bottom: 34px;
    max-width: 235px;
    padding: 15px 17px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(223, 231, 241, 0.9);
    box-shadow: 0 14px 34px rgba(8, 37, 68, 0.14);
    animation: ibgCardFloat 8s ease-in-out infinite;
  }

  .ibg-floating-card small {
    display: block;
    margin-bottom: 5px;
    color: #ff7a00;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.9px;
    text-transform: uppercase;
  }

  .ibg-floating-card strong {
    display: block;
    color: #082544;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 850;
  }

  .ibg-bubble-line {
    width: 100%;
    max-width: 1320px;
    margin: 34px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .ibg-bubble-line span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dfe7f1;
    color: #082544;
    font-size: 13px;
    font-weight: 750;
    box-shadow: 0 8px 22px rgba(8, 37, 68, 0.05);
    transition: all 0.22s ease;
  }

  .ibg-bubble-line span:nth-child(1),
  .ibg-bubble-line span:nth-child(4),
  .ibg-bubble-line span:nth-child(8),
  .ibg-bubble-line span:nth-child(10) {
    background: #fff1e6;
    border-color: rgba(255, 122, 0, 0.18);
    color: #ff7a00;
  }

  .ibg-bubble-line span:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(8, 37, 68, 0.09);
  }

  .reveal {
    opacity: 0;
    transform: translateY(16px);
    animation: ibgReveal 0.7s ease forwards;
  }

  .ibg-elegance-visual.reveal {
    animation-delay: 0.1s;
  }

  .ibg-bubble-line.reveal {
    animation-delay: 0.18s;
  }

  @keyframes ibgReveal {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes ibgSoftFloat {
    0%, 100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-7px);
    }
  }

  @keyframes ibgCardFloat {
    0%, 100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(6px);
    }
  }

  @keyframes ibgPhotoFloat {
    0%, 100% {
      transform: scale(1.02);
    }

    50% {
      transform: scale(1.045);
    }
  }

  @media (max-width: 950px) {
    .ibg-elegance-section {
      padding: 58px 20px;
    }

    .ibg-elegance-container {
      grid-template-columns: 1fr;
      gap: 34px;
    }

    .ibg-elegance-copy {
      max-width: 720px;
    }

    .ibg-elegance-visual {
      min-height: 390px;
    }

    .ibg-bubble-line {
      margin-top: 26px;
    }
  }

  @media (max-width: 600px) {
    .ibg-elegance-section {
      padding: 48px 16px;
    }

    .ibg-elegance-copy h2 {
      font-size: 30px;
      letter-spacing: -0.8px;
    }

    .ibg-elegance-copy > p {
      font-size: 15px;
    }

    .ibg-elegance-message p {
      font-size: 16px;
    }

    .ibg-elegance-visual {
      min-height: auto;
      display: grid;
      gap: 14px;
    }

    .ibg-main-photo,
    .ibg-floating-photo,
    .ibg-floating-card {
      position: relative;
      inset: auto;
      width: 100%;
      border: 0;
      animation: none;
    }

    .ibg-main-photo,
    .ibg-floating-photo {
      border-radius: 18px;
    }

    .ibg-main-photo img,
    .ibg-floating-photo img {
      aspect-ratio: 16 / 10;
    }

    .ibg-floating-card {
      left: auto;
      bottom: auto;
    }

    .ibg-bubble-line {
      gap: 8px;
    }

    .ibg-bubble-line span {
      min-height: 34px;
      padding: 0 12px;
      font-size: 12.5px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation: none !important;
      transition: none !important;
    }

    .reveal {
      opacity: 1;
      transform: none;
    }
  }
