/*
Theme Name:        InsightX Advisory
Theme URI:         https://insightxadvisory.com
Author:            InsightX Advisory Ltd
Author URI:        https://insightxadvisory.com
Description:       Premium executive WordPress theme for InsightX Advisory Ltd. Light palette, Manrope headings, DM Sans body. Integris structure, Vanta restraint, AHEAD delivery discipline.
Version:           2.0.0
Requires at least: 6.0
Tested up to:      6.7
Requires PHP:      8.0
License:           Private - InsightX Advisory Ltd
Text Domain:       insightx
*/

/* Google Fonts: Manrope (headings) + DM Sans (body) — loaded via functions.php */

/* ================================================================
   CSS CUSTOM PROPERTIES — Light executive palette
================================================================ */
:root {
  --bg:          #ffffff;
  --bg-2:        #f8fafc;
  --bg-3:        #f1f5f9;
  --bg-4:        #e8edf5;
  --navy:        #0c1a35;
  --navy-2:      #1a2e50;
  --navy-3:      #2d4270;
  --text:        #0c1a35;
  --text-2:      #3d5278;
  --text-3:      #6b7fa3;
  --text-4:      #9aaac4;
  --teal:        #0891b2;
  --teal-2:      #0e7490;
  --teal-light:  #e0f2fe;
  --teal-mid:    #bae6fd;
  --border:      #e2e8f0;
  --border-2:    #cbd5e1;
  --border-3:    #94a3b8;
  --white:       #ffffff;
  --shadow-sm:   0 1px 3px rgba(12,26,53,0.06), 0 1px 2px rgba(12,26,53,0.04);
  --shadow-md:   0 4px 16px rgba(12,26,53,0.08), 0 2px 6px rgba(12,26,53,0.04);
  --shadow-lg:   0 12px 40px rgba(12,26,53,0.10), 0 4px 12px rgba(12,26,53,0.06);
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --ease:        0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================
   RESET & BASE
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: var(--teal); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--teal-2); }

/* ================================================================
   TYPOGRAPHY
================================================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
}
p { color: var(--text-2); line-height: 1.75; }

/* ================================================================
   LAYOUT
================================================================ */
.container     { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.ix-section    { padding: 100px 0; }
.ix-section-sm { padding: 64px 0; }
.ix-divider    { width: 100%; height: 1px; background: var(--border); }

/* ================================================================
   EYEBROW LABEL
================================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}

/* ================================================================
   SCROLL REVEAL
================================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible  { opacity: 1; transform: translateY(0); }
.reveal-delay-1  { transition-delay: 0.10s; }
.reveal-delay-2  { transition-delay: 0.20s; }
.reveal-delay-3  { transition-delay: 0.30s; }
.reveal-delay-4  { transition-delay: 0.40s; }
.reveal-delay-5  { transition-delay: 0.50s; }

/* ================================================================
   BUTTONS
================================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  padding: 14px 28px; border-radius: var(--radius-sm); border: 2px solid var(--navy);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-primary:hover { background: var(--navy-2); border-color: var(--navy-2); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  padding: 14px 28px; border-radius: var(--radius-sm); border: 2px solid var(--border-2);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}
.btn-secondary:hover { border-color: var(--navy); background: var(--bg-2); color: var(--navy); transform: translateY(-1px); }

.btn-teal {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: var(--white);
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-sm); border: 2px solid var(--teal);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-teal:hover { background: var(--teal-2); border-color: var(--teal-2); color: var(--white); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(8,145,178,0.25); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--navy);
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius-sm); border: 2px solid var(--white);
  text-decoration: none; cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.btn-white:hover { background: #f0f7ff; color: var(--navy); transform: translateY(-1px); }

.btn-white-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.8);
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-sm); border: 2px solid rgba(255,255,255,0.28);
  text-decoration: none; cursor: pointer;
  transition: border-color var(--ease), color var(--ease), transform var(--ease);
}
.btn-white-outline:hover { border-color: rgba(255,255,255,0.6); color: var(--white); transform: translateY(-1px); }

/* ================================================================
   NAVIGATION
================================================================ */
.ix-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 500; padding: 0 40px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.ix-nav.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.ix-nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.ix-logo { text-decoration: none; display: flex; align-items: center; flex-shrink: 0; }
.ix-logo-mark { font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.04em; }
.ix-logo-mark span { color: var(--teal); }
.ix-logo-sub {
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3);
  margin-left: 10px; padding-left: 10px; border-left: 1px solid var(--border-2);
  align-self: center; line-height: 1;
}
.ix-nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.ix-nav-menu li a {
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400; color: var(--text-2);
  text-decoration: none; padding: 8px 12px; border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
}
.ix-nav-menu li a:hover { color: var(--navy); background: var(--bg-2); }
.ix-nav-menu li.current-menu-item a { color: var(--navy); font-weight: 500; }
.ix-nav-cta {
  font-family: 'Manrope', sans-serif !important; font-size: 13.5px !important;
  font-weight: 600 !important; color: var(--white) !important;
  background: var(--navy) !important; padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important; text-decoration: none !important; flex-shrink: 0;
  transition: background var(--ease), transform var(--ease) !important;
}
.ix-nav-cta:hover { background: var(--navy-2) !important; color: var(--white) !important; transform: translateY(-1px); }
.ix-nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.ix-nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.ix-nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ix-nav-toggle.open span:nth-child(2) { opacity: 0; }
.ix-nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.ix-nav-menu.mobile-open {
  display: flex; flex-direction: column; position: fixed;
  top: 72px; left: 0; right: 0; background: var(--white);
  padding: 24px 40px 32px; gap: 4px;
  border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); z-index: 499;
}
.ix-nav-menu.mobile-open li a { font-size: 17px; display: block; padding: 10px 12px; }

/* ================================================================
   HERO
================================================================ */
.ix-hero {
  background: var(--bg); padding: 140px 0 100px;
  position: relative; overflow: hidden;
}
.ix-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.ix-hero-bg::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 640px; height: 640px;
  background: radial-gradient(ellipse at center, rgba(8,145,178,0.06) 0%, transparent 65%);
}
.ix-hero-bg::after {
  content: ''; position: absolute; bottom: -10%; left: -5%;
  width: 480px; height: 480px;
  background: radial-gradient(ellipse, rgba(12,26,53,0.03) 0%, transparent 65%);
}
.ix-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(12,26,53,0.028) 1px, transparent 1px), linear-gradient(90deg, rgba(12,26,53,0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 90% at 60% 40%, black 30%, transparent 80%);
}
.ix-hero-inner {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center; width: 100%;
}
.ix-hero h1 { font-size: clamp(38px, 5vw, 62px); font-weight: 800; line-height: 1.06; letter-spacing: -0.03em; color: var(--navy); margin-bottom: 24px; }
.ix-hero h1 em { font-style: normal; color: var(--teal); }
.ix-hero-sub { font-size: 17px; font-weight: 300; color: var(--text-2); line-height: 1.75; max-width: 520px; margin-bottom: 40px; }
.ix-hero-actions { display: flex; align-items: center; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.ix-hero-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.ix-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500; color: var(--text-2);
  background: var(--bg-2); border: 1px solid var(--border); padding: 6px 14px; border-radius: 100px;
  transition: border-color var(--ease), color var(--ease);
}
.ix-pill::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.ix-pill:hover { border-color: var(--teal); color: var(--navy); }

/* Dashboard card */
.ix-hero-visual { position: relative; }
.ix-dash-wrap   { position: relative; }
.ix-dash-card   { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.ix-dash-titlebar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; background: var(--bg-2); border-bottom: 1px solid var(--border); }
.ix-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.ix-dot-r { background: #f87171; } .ix-dot-y { background: #fbbf24; } .ix-dot-g { background: #4ade80; }
.ix-dash-title-text { margin-left: 6px; font-size: 11px; font-weight: 500; color: var(--text-3); letter-spacing: 0.08em; font-family: 'DM Sans', sans-serif; }
.ix-dash-body { padding: 18px; }
.ix-kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.ix-kpi { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 12px; position: relative; overflow: hidden; }
.ix-kpi::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform 1.2s ease 0.8s; }
.ix-kpi.lit::before { transform: scaleX(1); }
.ix-kpi.navy-kpi::before { background: var(--navy); }
.ix-kpi-label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; font-family: 'Manrope', sans-serif; }
.ix-kpi-val { font-family: 'Manrope', sans-serif; font-size: 26px; font-weight: 800; color: var(--navy); line-height: 1; }
.ix-kpi-val.teal { color: var(--teal); }
.ix-kpi-suffix { font-size: 13px; font-weight: 600; }
.ix-chart-area { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; margin-bottom: 12px; }
.ix-chart-label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; font-family: 'Manrope', sans-serif; }
.ix-bars { display: flex; align-items: flex-end; gap: 5px; height: 52px; }
.ix-bar { flex: 1; border-radius: 3px 3px 0 0; background: var(--bg-3); }
.ix-bar.teal-bar { background: linear-gradient(180deg, var(--teal) 0%, rgba(8,145,178,0.2) 100%); }
.ix-bar.navy-bar { background: linear-gradient(180deg, var(--navy-3) 0%, rgba(45,66,112,0.15) 100%); }
.ix-status-list { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.ix-status-item { display: flex; align-items: center; justify-content: space-between; padding: 9px 14px; border-bottom: 1px solid var(--border); font-size: 12px; }
.ix-status-item:last-child { border-bottom: none; }
.ix-status-item-label { color: var(--text-2); font-weight: 400; }
.ix-status-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 700; font-family: 'Manrope', sans-serif; }
.ix-status-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; }
.ix-status-badge.ok   { color: #0891b2; } .ix-status-badge.ok::before   { background: #0891b2; }
.ix-status-badge.warn { color: #d97706; } .ix-status-badge.warn::before { background: #d97706; }
.ix-float-card {
  position: absolute; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 11px 15px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-md); white-space: nowrap;
}
.ix-float-card-1 { top: -20px; right: -24px; animation: ixFloat 5s ease-in-out infinite; }
.ix-float-card-2 { bottom: -16px; left: -28px; animation: ixFloat 5s ease-in-out infinite 2s; }
@keyframes ixFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.ix-fc-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.ix-fc-icon.alt { background: var(--bg-3); }
.ix-fc-text strong { display: block; font-family: 'Manrope', sans-serif; font-size: 12.5px; font-weight: 700; color: var(--navy); margin-bottom: 1px; }
.ix-fc-text span { font-size: 11px; color: var(--text-3); }

/* ================================================================
   TRUST STRIP
================================================================ */
.ix-trust-strip { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 40px; }
.ix-trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.ix-trust-item { display: flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 400; color: var(--text-3); padding: 5px 24px; transition: color var(--ease); white-space: nowrap; }
.ix-trust-item:hover { color: var(--text-2); }
.ix-trust-sep { width: 1px; height: 18px; background: var(--border-2); flex-shrink: 0; }

/* Platform strip */
.ix-platform-strip { background: var(--white); padding: 40px 40px; border-bottom: 1px solid var(--border); }
.ix-platform-header { display: flex; align-items: center; gap: 20px; justify-content: center; margin-bottom: 24px; }
.ix-platform-header-text { font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-4); }
.ix-platform-header-line { flex: 1; max-width: 80px; height: 1px; background: var(--border); }
.ix-platform-logos { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.ix-platform-logo { font-family: 'Manrope', sans-serif; font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-4); transition: color var(--ease); cursor: default; }
.ix-platform-logo:hover { color: var(--text-2); }

/* ================================================================
   STATS STRIP — dark reverse block
================================================================ */
.ix-stats-strip { background: var(--navy); padding: 72px 0; }
.ix-stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.07);
}
.ix-stat-block { background: var(--navy); padding: 40px 32px; text-align: center; transition: background var(--ease); }
.ix-stat-block:hover { background: var(--navy-2); }
.ix-stat-num { font-family: 'Manrope', sans-serif; font-size: 52px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 10px; letter-spacing: -0.03em; }
.ix-stat-num .accent { color: var(--teal); }
.ix-stat-label { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.5; }
.ix-stat-sub { font-family: 'DM Sans', sans-serif; font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 5px; font-style: italic; }

/* ================================================================
   POSITIONING BLOCK
================================================================ */
.ix-pos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.ix-pos-left h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 18px; }
.ix-pos-left p  { font-size: 16px; color: var(--text-2); font-weight: 300; line-height: 1.8; margin-bottom: 32px; max-width: 440px; }
.ix-pos-right { display: flex; flex-direction: column; gap: 6px; }
.ix-pos-block {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 26px; display: grid; grid-template-columns: 32px 1fr; gap: 16px;
  align-items: start; transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease); cursor: default;
}
.ix-pos-block:hover { border-color: var(--border-2); box-shadow: var(--shadow-md); transform: translateX(4px); }
.ix-pos-num { font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 800; color: var(--teal); line-height: 1.9; letter-spacing: 0.06em; }
.ix-pos-title { font-family: 'Manrope', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.ix-pos-desc  { font-size: 14px; color: var(--text-2); font-weight: 300; line-height: 1.7; }

/* ================================================================
   SERVICES ACCORDION
================================================================ */
.ix-services-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.ix-services-header h2 { font-size: clamp(26px, 3.5vw, 44px); margin-bottom: 16px; }
.ix-services-header p  { font-size: 15px; color: var(--text-2); line-height: 1.8; font-weight: 300; margin-bottom: 28px; }
.ix-services-cta-row   { display: flex; gap: 12px; flex-wrap: wrap; }
.ix-accordion { display: flex; flex-direction: column; gap: 6px; }
.ix-acc-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--ease), box-shadow var(--ease); }
.ix-acc-item.open { border-color: rgba(8,145,178,0.35); box-shadow: var(--shadow-md); }
.ix-acc-item:not(.open):hover { border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.ix-acc-trigger { display: flex; align-items: center; gap: 14px; padding: 18px 20px; cursor: pointer; user-select: none; transition: background var(--ease); }
.ix-acc-trigger:hover { background: var(--bg-2); }
.ix-acc-icon-wrap { width: 38px; height: 38px; border-radius: 8px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; transition: background var(--ease); }
.ix-acc-item.open .ix-acc-icon-wrap { background: rgba(8,145,178,0.15); }
.ix-acc-trigger-text { flex: 1; }
.ix-acc-name    { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.ix-acc-tagline { font-size: 12.5px; color: var(--text-3); font-weight: 300; }
.ix-acc-chevron { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border-2); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--text-3); flex-shrink: 0; transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease); }
.ix-acc-item.open .ix-acc-chevron { transform: rotate(180deg); background: var(--teal-light); color: var(--teal); border-color: rgba(8,145,178,0.3); }
.ix-acc-body { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1); }
.ix-acc-item.open .ix-acc-body { max-height: 280px; }
.ix-acc-content { padding: 0 20px 20px 72px; }
.ix-acc-desc { font-size: 14px; color: var(--text-2); font-weight: 300; line-height: 1.75; margin-bottom: 12px; }
.ix-acc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.ix-acc-tag { font-family: 'Manrope', sans-serif; font-size: 10.5px; font-weight: 600; color: var(--teal); background: var(--teal-light); border: 1px solid var(--teal-mid); padding: 3px 10px; border-radius: 100px; letter-spacing: 0.02em; }
.ix-acc-link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--teal); letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; font-family: 'Manrope', sans-serif; transition: gap var(--ease); }
.ix-acc-link:hover { gap: 9px; color: var(--teal-2); }

/* ================================================================
   INDUSTRIES
================================================================ */
.ix-industries-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; margin-bottom: 20px; }
.ix-industry-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 18px; text-align: center; cursor: default;
  position: relative; overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.ix-industry-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--teal); transform: scaleX(0); transition: transform var(--ease); }
.ix-industry-card:hover { border-color: var(--border-2); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ix-industry-card:hover::after { transform: scaleX(1); }
.ix-industry-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.ix-industry-name { font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.35; }
.ix-industry-sub  { font-size: 11.5px; color: var(--text-3); margin-top: 4px; font-weight: 300; }
.ix-industries-note { text-align: center; font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 300; color: var(--text-3); font-style: italic; margin-top: 16px; }

/* ================================================================
   WHY INSIGHTX
================================================================ */
.ix-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.ix-why-items { display: flex; flex-direction: column; gap: 4px; margin-top: 28px; }
.ix-why-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; border-radius: var(--radius); border: 1px solid transparent; transition: background var(--ease), border-color var(--ease); cursor: default; }
.ix-why-item:hover { background: var(--bg-2); border-color: var(--border); }
.ix-why-check { width: 24px; height: 24px; border-radius: 50%; background: var(--teal-light); border: 1px solid var(--teal-mid); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.ix-why-text strong { display: block; font-family: 'Manrope', sans-serif; font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.ix-why-text p { font-size: 13.5px; color: var(--text-3); font-weight: 300; line-height: 1.6; }
.ix-why-panel { background: var(--navy); border-radius: var(--radius-lg); padding: 44px; position: relative; overflow: hidden; }
.ix-why-panel::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--teal); }
.ix-why-panel blockquote { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.88); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.ix-why-panel blockquote em { font-style: normal; color: var(--teal); font-weight: 500; }
.ix-why-panel-sub { font-size: 13.5px; color: rgba(255,255,255,0.4); font-weight: 300; line-height: 1.75; margin-bottom: 28px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.ix-why-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ix-why-kpi { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 16px; transition: background var(--ease); }
.ix-why-kpi:hover { background: rgba(255,255,255,0.09); }
.ix-why-kpi-num   { font-family: 'Manrope', sans-serif; font-size: 32px; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 4px; }
.ix-why-kpi-label { font-size: 11px; color: rgba(255,255,255,0.38); font-weight: 300; line-height: 1.5; }

/* ================================================================
   OUTCOMES
================================================================ */
.ix-outcomes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 36px; }
.ix-outcome-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; position: relative; overflow: hidden; transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease); }
.ix-outcome-card:hover { border-color: var(--border-2); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.ix-outcome-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--navy-3)); }
.ix-outcome-icon   { font-size: 26px; margin-bottom: 18px; display: block; }
.ix-outcome-sector { font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.ix-outcome-title  { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.ix-outcome-desc   { font-size: 14px; color: var(--text-2); font-weight: 300; line-height: 1.75; margin-bottom: 18px; }
.ix-outcome-result { display: flex; align-items: center; gap: 7px; font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 600; color: var(--teal); padding-top: 14px; border-top: 1px solid var(--border); }
.ix-outcome-result::before { content: '↗'; font-size: 13px; }

/* ================================================================
   PROCESS
================================================================ */
.ix-process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.ix-process-steps::before { content: ''; position: absolute; top: 31px; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, var(--border-2) 20%, var(--teal) 50%, var(--border-2) 80%, transparent); z-index: 0; }
.ix-process-step { padding: 0 24px 36px; position: relative; z-index: 1; }
.ix-step-num-wrap { width: 62px; height: 62px; border-radius: 50%; background: var(--white); border: 2px solid var(--border-2); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: border-color var(--ease), background var(--ease), box-shadow var(--ease); }
.ix-process-step:hover .ix-step-num-wrap { border-color: var(--teal); background: var(--teal-light); box-shadow: 0 0 0 4px rgba(8,145,178,0.1); }
.ix-step-num { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 800; color: var(--text-3); transition: color var(--ease); }
.ix-process-step:hover .ix-step-num { color: var(--teal); }
.ix-step-title { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.ix-step-desc  { font-size: 13.5px; color: var(--text-2); font-weight: 300; line-height: 1.75; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.ix-test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ix-test-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; gap: 20px; transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease); }
.ix-test-card:hover { border-color: var(--border-2); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ix-test-quote-mark { font-family: 'Manrope', sans-serif; font-size: 48px; font-weight: 800; color: var(--teal); opacity: 0.15; line-height: 0.8; margin-bottom: -8px; }
.ix-test-text  { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 300; color: var(--text-2); font-style: italic; line-height: 1.75; flex: 1; }
.ix-test-footer { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
.ix-test-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-light); border: 1px solid var(--teal-mid); display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 800; color: var(--teal); flex-shrink: 0; }
.ix-test-name { font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.ix-test-role { font-size: 12px; color: var(--text-3); }

/* ================================================================
   FINAL CTA — navy reverse
================================================================ */
.ix-final-cta { background: var(--navy); text-align: center; padding: 112px 0; position: relative; overflow: hidden; }
.ix-final-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 350px; background: radial-gradient(ellipse, rgba(8,145,178,0.12) 0%, transparent 70%); pointer-events: none; }
.ix-final-cta-inner { position: relative; z-index: 1; }
.ix-final-cta h2 { font-size: clamp(26px,4vw,50px); color: var(--white); max-width: 680px; margin: 0 auto 18px; }
.ix-final-cta p  { font-size: 17px; color: rgba(255,255,255,0.5); font-weight: 300; max-width: 460px; margin: 0 auto 40px; line-height: 1.75; }
.ix-final-cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ================================================================
   FOOTER
================================================================ */
.ix-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 72px 0 36px; }
.ix-footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.ix-footer-brand .ix-logo { margin-bottom: 16px; display: inline-flex; }
.ix-footer-brand p { font-size: 13.5px; color: var(--text-3); font-weight: 300; line-height: 1.75; max-width: 280px; margin-bottom: 22px; }
.ix-footer-cert-row { display: flex; gap: 6px; flex-wrap: wrap; }
.ix-footer-cert { font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--text-3); background: var(--white); border: 1px solid var(--border); padding: 4px 10px; border-radius: 4px; text-transform: uppercase; }
.ix-footer-col h5 { font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); margin-bottom: 18px; }
.ix-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ix-footer-col ul li a { font-size: 13.5px; color: var(--text-3); text-decoration: none; font-weight: 300; transition: color var(--ease); }
.ix-footer-col ul li a:hover { color: var(--navy); }
.ix-footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.ix-footer-bottom p, .ix-footer-bottom a { font-size: 12.5px; color: var(--text-4); }
.ix-footer-bottom a { text-decoration: none; transition: color var(--ease); }
.ix-footer-bottom a:hover { color: var(--navy); }
.ix-footer-legal { display: flex; gap: 18px; }

/* ================================================================
   INNER PAGE HERO
================================================================ */
.ix-page-hero { background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 140px 0 64px; }
.ix-page-hero-inner { max-width: 760px; }
.ix-page-hero h1 { font-size: clamp(32px, 4.5vw, 52px); margin-bottom: 18px; }
.ix-page-hero p  { font-size: 17px; color: var(--text-2); font-weight: 300; line-height: 1.75; }
.ix-breadcrumb { font-size: 13px; color: var(--text-3); margin-bottom: 28px; }
.ix-breadcrumb a { color: var(--text-3); text-decoration: none; transition: color var(--ease); }
.ix-breadcrumb a:hover { color: var(--navy); }
.ix-breadcrumb .sep { margin: 0 8px; opacity: 0.4; }

/* ================================================================
   POST CONTENT
================================================================ */
.ix-post-content h2 { font-size: clamp(22px, 3vw, 32px); margin: 36px 0 16px; }
.ix-post-content h3 { font-size: clamp(18px, 2.5vw, 24px); margin: 28px 0 12px; }
.ix-post-content p  { font-size: 16px; color: var(--text-2); margin-bottom: 20px; line-height: 1.85; }
.ix-post-content ul, .ix-post-content ol { padding-left: 22px; margin-bottom: 20px; color: var(--text-2); }
.ix-post-content li { margin-bottom: 8px; line-height: 1.75; }
.ix-post-content strong { color: var(--navy); font-weight: 600; }
.ix-post-content blockquote { border-left: 3px solid var(--teal); padding: 12px 20px; margin: 24px 0; background: var(--bg-2); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.ix-post-content blockquote p { margin: 0; font-style: italic; }

/* ================================================================
   WORDPRESS / ELEMENTOR OVERRIDES
================================================================ */
.wp-block-image { max-width: 100%; height: auto; }
.alignwide { max-width: 1400px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100%; max-width: 100%; }
.elementor-section .elementor-container { max-width: 1200px; }
.e-con, .elementor-widget-container { width: 100%; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .ix-hero-inner, .ix-pos-grid, .ix-services-layout, .ix-why-grid { grid-template-columns: 1fr; gap: 48px; }
  .ix-hero-visual { display: none; }
  .ix-industries-grid { grid-template-columns: repeat(3,1fr); }
  .ix-outcomes-grid { grid-template-columns: 1fr; }
  .ix-process-steps { grid-template-columns: 1fr 1fr; }
  .ix-process-steps::before { display: none; }
  .ix-test-grid { grid-template-columns: 1fr; }
  .ix-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ix-stats-grid { grid-template-columns: 1fr 1fr; }
  .ix-nav-menu { display: none; }
  .ix-nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .ix-section { padding: 72px 0; }
  .ix-industries-grid { grid-template-columns: 1fr 1fr; }
  .ix-process-steps { grid-template-columns: 1fr; }
  .ix-kpi-row { grid-template-columns: 1fr; }
  .ix-footer-grid { grid-template-columns: 1fr; }
  .ix-hero-actions { flex-direction: column; align-items: flex-start; }
  .ix-final-cta-btns { flex-direction: column; align-items: center; }
  .ix-platform-logos { gap: 24px; }
  .ix-trust-strip { padding: 20px; }
  .ix-stats-grid { grid-template-columns: 1fr 1fr; }
  .ix-why-panel { padding: 28px; }
}
