/* 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;
  }
}
