/* ============================================================
   COPILOT HUB — style.css
   Microsoft Copilot-inspired design system — LIGHT THEME ONLY
   No dark mode. No [data-theme] overrides.
   ============================================================ */

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
  /* Copilot brand palette */
  --cp-blue:   #199fd7;
  --cp-orange: #fc7942;
  --cp-green:  #99bd3c;
  --cp-purple: #8a50d8;
  --cp-pink:   #ee5091;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #199fd7 0%, #8a50d8 100%);
  --gradient-copilot: linear-gradient(135deg, #99bd3c 0%, #199fd7 35%, #8a50d8 70%, #ee5091 100%);

  /* Light theme surfaces */
  --bg-primary:   #ffffff;
  --bg-secondary: #f5f7fa;
  --surface:      #ffffff;
  --surface-2:    #f0f4f8;

  /* Text */
  --text-primary:   #0f172a;
  --text-secondary: #475569;
  --text-muted:     #94a3b8;

  /* Borders */
  --border:       #e2e8f0;
  --border-hover: #cbd5e1;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);

  /* Legacy aliases — kept so existing JS / inline references don't break */
  --ms-blue:         #199fd7;
  --ms-blue-light:   #199fd7;
  --ms-purple:       #8a50d8;
  --accent:          #199fd7;
  --accent-rgb:      25,159,215;
  --border-glow:     rgba(25,159,215,.35);
  --shadow-card:     var(--shadow-md);
  --shadow-glow:     0 0 32px rgba(25,159,215,.14);
  --bg-card:         #ffffff;
  --bg-card-hover:   #f8fafc;
  --blur:            blur(20px);

  /* Radii */
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--cp-blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--cp-purple); }
img, svg { max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
p { color: var(--text-secondary); }

/* ── Scroll Progress Bar ────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--gradient-primary);
  z-index: 9999;
  transition: width .1s linear;
  pointer-events: none;
}

/* ── Typography ─────────────────────────────────────────────── */
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; color: var(--text-primary); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; color: var(--text-primary); }
h3 { font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 600; color: var(--text-primary); }
h4 { font-size: 1.2rem; font-weight: 600; color: var(--text-primary); }
h5 { font-size: 1rem; font-weight: 600; color: var(--text-primary); }
h6 { font-size: .875rem; font-weight: 600; color: var(--text-primary); }

/* ── Gradient Text ──────────────────────────────────────────── */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-full {
  background: var(--gradient-copilot);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-shimmer {
  background: linear-gradient(90deg, var(--cp-blue), var(--cp-purple), var(--cp-blue));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ── Layout ─────────────────────────────────────────────────── */
.container       { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide  { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section         { padding: 5rem 0; }
.section-sm      { padding: 3rem 0; }
.section.bg-secondary { background: var(--bg-secondary); }
.bg-secondary    { background: var(--bg-secondary); }

/* ── Section Header ─────────────────────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--text-primary); margin: .5rem 0 1rem; }
.section-header p { font-size: 1.05rem; max-width: 600px; margin-top: .75rem; color: var(--text-secondary); }
.section-header.text-center p { margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--cp-blue);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(25,159,215,.08);
  padding: .3rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(25,159,215,.18);
}

/* ── Utility Classes ────────────────────────────────────────── */
.text-center  { text-align: center; }
.w-100        { width: 100%; }
.pos-relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.gap-1 { gap: .5rem; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

/* ── Tag ────────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: 999px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

/* ── Badge Chip ─────────────────────────────────────────────── */
.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(25,159,215,.08);
  color: var(--cp-blue);
  border: 1px solid rgba(25,159,215,.2);
  border-radius: 999px;
  padding: .35rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(25,159,215,.3);
}
.btn-primary:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(25,159,215,.4);
  color: white;
}
.btn-outline {
  background: transparent;
  color: var(--cp-blue);
  border: 1.5px solid var(--cp-blue);
}
.btn-outline:hover {
  background: var(--cp-blue);
  color: white;
}
.btn-group {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn-mini {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .4rem .8rem;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  background: rgba(25,159,215,.12);
  color: var(--cp-blue);
  text-decoration: none;
  transition: all .2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-mini:hover { background: var(--cp-blue); color: white; }

/* ── Navbar — Floating Pill ─────────────────────────────────── */
.navbar-mega {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 68px;
  z-index: 1000;
  border-radius: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06), 0 4px 24px rgba(0,0,0,0.05);
  transition: background .35s, box-shadow .35s, border-color .35s;
}
.navbar-mega.scrolled {
  background: rgba(255,255,255,1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06);
  border-bottom-color: var(--border);
}

.navbar-mega::after { display: none; }

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .5rem;
  padding: 0 2rem;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* Right-side slot: CTA + mobile toggle */
.nav-right {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: flex-end;
}

/* Separator — kept for compat but hidden */
.nav-logo-sep { display: none; }

/* ── Logo ───────────────────────────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--text-primary); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand-name { font-size: 1.05rem; font-weight: 800; letter-spacing: -.01em; color: var(--text-primary); }
.nav-logo-text .brand-name strong { color: var(--cp-blue); }
.nav-logo-text .brand-sub { font-size: .58rem; font-weight: 500; color: var(--text-muted); letter-spacing: .1em; text-transform: uppercase; }
.copilot-logo { height: 30px; width: auto; flex-shrink: 0; }

/* ── Nav Items ──────────────────────────────────────────────── */
.nav-items {
  display: flex;
  align-items: center;
  gap: .2rem;
  list-style: none;
  margin: 0; padding: 0;
  justify-content: center;
}
.nav-items > li { position: relative; }
.nav-items > li > a {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .44rem .78rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 999px;
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.nav-items > li > a:hover { color: var(--text-primary); background: var(--bg-secondary); }
.nav-items > li > a.active { color: var(--cp-blue); font-weight: 600; }

/* Color-coded hover — pill background + text */
.nav-items > li[data-color="blue"]   > a:hover { color: var(--cp-blue);   background: rgba(25,159,215,0.09); }
.nav-items > li[data-color="orange"] > a:hover { color: var(--cp-orange); background: rgba(252,121,66,0.09); }
.nav-items > li[data-color="green"]  > a:hover { color: var(--cp-green);  background: rgba(153,189,60,0.09); }
.nav-items > li[data-color="purple"] > a:hover { color: var(--cp-purple); background: rgba(138,80,216,0.09); }
.nav-items > li[data-color="pink"]   > a:hover { color: var(--cp-pink);   background: rgba(238,80,145,0.09); }

/* Active indicator — coloured underline dot */
.nav-items > li > a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 3px;
  border-radius: 999px;
  background: var(--cp-blue);
}

.nav-items > li > a .fa-chevron-down { font-size: .58rem; opacity: .5; transition: transform .2s; }
.nav-items > li.has-mega:hover > a .fa-chevron-down { transform: rotate(180deg); }

/* ── Products dropdown ── */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown:hover > a .fa-chevron-down,
.nav-has-dropdown.open  > a .fa-chevron-down { transform: rotate(180deg); opacity: .8; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  min-width: 260px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: .6rem .5rem;
  z-index: 1100;
  box-shadow: 0 8px 32px rgba(15,23,42,.12), 0 2px 8px rgba(15,23,42,.06);
  animation: dropSlide .18s cubic-bezier(.4,0,.2,1);
}
/* bridge gap so mouse can travel from nav link to dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
  background: transparent;
}
@keyframes dropSlide {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-dropdown.is-open { display: block; }

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .55rem .85rem;
  border-radius: 10px;
  font-size: .855rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
  width: 100%;
}
.nav-dropdown-item:hover { background: var(--bg-secondary); color: var(--text-primary); }
.nav-dropdown-item .ndi-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  overflow: hidden;
}
/* Wider slot for logos that include text */
.nav-dropdown-item .ndi-icon.ndi-logo {
  width: 72px; height: 30px;
  border-radius: 8px;
  overflow: hidden;
}
.nav-dropdown-item .ndi-icon.ndi-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
/* Thumbnail slot (screenshot crop) */
.nav-dropdown-item .ndi-icon.ndi-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 0 0;
  display: block;
  border-radius: 6px;
}
.nav-dropdown-item .ndi-text { display: flex; flex-direction: column; gap: .05rem; flex-shrink: 0; }
.nav-dropdown-item .ndi-title { font-size: .855rem; font-weight: 600; color: var(--text-primary); line-height: 1.2; white-space: nowrap; }
.nav-dropdown-item .ndi-sub { font-size: .72rem; color: var(--text-muted); font-weight: 400; white-space: nowrap; }
.nav-dropdown-divider { height: 1px; background: var(--border); margin: .4rem .85rem; }

/* CTA button — fills the right edge of the nav pill */
/* ── Contact Us / CTA button ─────────────────────────────── */
/* ── Contact Us — animated 8-colour gradient ─────────────────
   The gradient is wider than the button (background-size: 300%)
   and slides left/right on a loop, cycling through all 8 brand
   colours. On hover the animation speeds up and a glow blooms.
   ──────────────────────────────────────────────────────────── */
@keyframes ctaGradientFlow {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 12px 2px rgba(23,129,222,.45),  0 0 28px 4px rgba(181,88,216,.25); }
  25%       { box-shadow: 0 0 12px 2px rgba(91,180,108,.45),  0 0 28px 4px rgba(221,196,21,.25); }
  50%       { box-shadow: 0 0 12px 2px rgba(251,149,94,.45),  0 0 28px 4px rgba(243,104,129,.25); }
  75%       { box-shadow: 0 0 12px 2px rgba(213,84,170,.45),  0 0 28px 4px rgba(50,164,164,.25); }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 8px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .875rem;
  text-decoration: none;
  color: white !important;
  flex-shrink: 0;

  /* 8-colour spectrum — looped seamlessly */
  background: linear-gradient(
    135deg,
    #1781DE, #32A4A4, #5CB46C, #DDC415,
    #FB955E, #F36881, #D554AA, #B658D8,
    #1781DE, #32A4A4, #5CB46C
  );
  background-size: 300% 300%;
  animation:
    ctaGradientFlow 5s ease infinite,
    ctaGlow        5s ease infinite;
  transition: transform .2s, filter .2s;
}

.nav-cta:hover {
  color: white !important;
  animation:
    ctaGradientFlow 1.8s ease infinite,
    ctaGlow        1.8s ease infinite;
  transform: translateY(-1px) scale(1.03);
  filter: brightness(1.08);
}

/* Theme toggle — kept in DOM but visually minimal */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--border); color: var(--text-primary); }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  width: 38px; height: 38px;
  margin: auto .5rem auto .5rem;
  border-radius: 10px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Mega Menu ──────────────────────────────────────────────── */
.has-mega { position: static; }

.mega-panel {
  display: none;
  position: fixed;
  top: 68px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1060px, calc(100vw - 40px));
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  animation: megaSlideDown .2s cubic-bezier(.4,0,.2,1);
}
@keyframes megaSlideDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Transparent bridge across gap */
.mega-panel::before {
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0;
  height: 16px;
  background: transparent;
}

.has-mega:hover .mega-panel,
.mega-panel.is-open { display: block; }

/* Copilots panel grid */
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 200px;
  gap: 1.5rem;
}
.mega-grid-8 {
  display: grid !important;
  grid-template-columns: repeat(4,1fr) !important;
  gap: .6rem;
}

.mega-col-title, .mega-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border);
}

.mega-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem .6rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background .15s;
  margin-bottom: .1rem;
}
.mega-item:hover { background: var(--bg-secondary); color: var(--text-primary); }
.mega-item span  { display: flex; flex-direction: column; gap: .05rem; }
.mega-item strong { display: block; font-size: .84rem; font-weight: 600; color: var(--text-primary); line-height: 1.2; }
.mega-item small  { display: block; font-size: .73rem; color: var(--text-muted); }

/* Mega icons */
.mega-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  transition: transform .18s;
}
.mega-item:hover .mega-icon { transform: scale(1.1); }
.mega-icon.blue   { background: rgba(25,159,215,.12); color: var(--cp-blue); }
.mega-icon.purple { background: rgba(138,80,216,.12); color: var(--cp-purple); }
.mega-icon.orange { background: rgba(252,121,66,.12); color: var(--cp-orange); }
.mega-icon.green  { background: rgba(153,189,60,.12); color: var(--cp-green); }
.mega-icon.pink   { background: rgba(238,80,145,.12); color: var(--cp-pink); }
.mega-icon.grad   { background: var(--gradient-primary); color: white; }

/* Featured card */
.mega-featured { }
.mega-feature-card {
  background: var(--gradient-primary);
  border-radius: 12px;
  padding: 1.25rem;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mega-feature-card i { font-size: 1.5rem; margin-bottom: .5rem; display: block; }
.mega-feature-card strong { display: block; font-size: .9rem; font-weight: 700; margin-bottom: .3rem; }
.mega-feature-card p { font-size: .78rem; opacity: .85; margin: 0 0 .75rem; flex: 1; color: rgba(255,255,255,.85); }

/* Sector items */
.mega-sector {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem .9rem;
  border-radius: 12px;
  color: var(--text-secondary);
  transition: all .18s;
  border: 1px solid transparent;
  text-decoration: none;
}
.mega-sector:hover { border-color: var(--border); color: var(--text-primary); background: var(--bg-secondary); }
.mega-sector-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(25,159,215,.1);
  color: var(--cp-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: transform .18s;
}
.mega-sector:hover .mega-sector-icon { transform: scale(1.1); }
.mega-sector-text { display: flex; flex-direction: column; gap: .08rem; }
.mega-sector-text strong { display: block; font-size: .78rem; font-weight: 600; color: var(--text-primary); }
.mega-sector-text small  { display: block; font-size: .68rem; color: var(--text-muted); }

/* Sector icon colours */
.mega-sector[data-sector="healthcare"]    .mega-sector-icon { background: rgba(25,159,215,.12);  color: var(--cp-blue); }
.mega-sector[data-sector="education"]     .mega-sector-icon { background: rgba(252,121,66,.12);  color: var(--cp-orange); }
.mega-sector[data-sector="government"]    .mega-sector-icon { background: rgba(138,80,216,.12);  color: var(--cp-purple); }
.mega-sector[data-sector="finance"]       .mega-sector-icon { background: rgba(153,189,60,.12);  color: var(--cp-green); }
.mega-sector[data-sector="retail"]        .mega-sector-icon { background: rgba(238,80,145,.12);  color: var(--cp-pink); }
.mega-sector[data-sector="manufacturing"] .mega-sector-icon { background: rgba(25,159,215,.12);  color: var(--cp-blue); }
.mega-sector[data-sector="legal"]         .mega-sector-icon { background: rgba(252,121,66,.12);  color: var(--cp-orange); }
.mega-sector[data-sector="energy"]        .mega-sector-icon { background: rgba(153,189,60,.12);  color: var(--cp-green); }

/* ── Products Mega Menu ─────────────────────────────────────── */
.mega-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 220px;
  gap: 1rem;
  align-items: start;
}

.mega-product-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  padding: 1.25rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  min-height: 200px;
}
.mega-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  color: inherit;
}
.mega-product-card--safescan {
  background: #070e1f;
  border: 1px solid rgba(25,159,215,.2);
}
.mega-product-card--ndmo {
  background: #001a0d;
  border: 1px solid rgba(153,189,60,.2);
}

.mpc-logo {
  width: 48px; height: 48px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: .75rem;
  background: rgba(255,255,255,.08);
}
.mpc-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 4px;
}

.mpc-title {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: .4rem;
}

.mpc-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  margin: 0 0 .9rem;
  flex: 1;
  line-height: 1.5;
}

.mpc-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 600;
  border-radius: 6px;
  padding: .35rem .7rem;
  transition: background .18s, border-color .18s;
  align-self: flex-start;
  border: 1px solid transparent;
}
.mega-product-card--safescan .mpc-cta { color: #5bc8f5; border-color: rgba(91,200,245,.3); }
.mega-product-card--safescan:hover .mpc-cta { background: rgba(91,200,245,.1); border-color: rgba(91,200,245,.5); }
.mega-product-card--ndmo .mpc-cta { color: #7ed957; border-color: rgba(126,217,87,.3); }
.mega-product-card--ndmo:hover .mpc-cta { background: rgba(126,217,87,.1); border-color: rgba(126,217,87,.5); }

.mega-products-list {
  display: flex;
  flex-direction: column;
}

.mpc-view-all {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .5rem;
  padding: .4rem .6rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--cp-blue);
  text-decoration: none;
  border-radius: 6px;
  transition: background .15s;
}
.mpc-view-all:hover { background: rgba(25,159,215,.08); color: var(--cp-blue); }

@media (max-width: 768px) {
  .mega-products-grid { grid-template-columns: 1fr; }
  .mega-product-card { min-height: auto; }
}

/* ══════════════════════════════════════════════════════════════
   BREADCRUMB — redesigned
   ══════════════════════════════════════════════════════════════ */
.site-breadcrumb {
  padding: 0;
  background: transparent;
}

/* Clears the fixed navbar — works whether breadcrumb is a top-level sibling
   or the first child inside a content section */
.site-breadcrumb--top {
  padding-top: 90px;
  padding-bottom: 0;
}

.site-breadcrumb .breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 0;
  /* Left-align to match nav-inner logo position */
  padding: 0.55rem 2rem 0.75rem;
  max-width: 1440px;
  margin: 0 auto;
  background: transparent;
  border-bottom: none;
}

/* ── No pill, no accent bar ── */
.site-breadcrumb .breadcrumb-inner::before { display: none; }
.site-breadcrumb .breadcrumb-inner::after  { display: none; }

/* ── Breadcrumb items ── */
.bc-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.site-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  padding: 0.15rem 0.3rem;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.site-breadcrumb a:hover {
  color: var(--cp-blue);
  background: rgba(25,159,215,0.06);
}
.site-breadcrumb a i {
  font-size: 0.78rem;
  color: var(--cp-blue);
  opacity: 0.8;
}

/* ── Separator ── */
.bc-sep {
  display: inline-flex;
  align-items: center;
  color: #c8d3e0;
  font-size: 0.65rem;
  margin: 0 0.25rem;
  user-select: none;
  flex-shrink: 0;
}

/* ── Current page (last crumb) ── */
.bc-current {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 380px;
  padding: 0.15rem 0.3rem;
}
.bc-current i {
  font-size: 0.8rem;
  opacity: 0.75;
  flex-shrink: 0;
}

/* ── Use-case hero with breadcrumb ──────────────────────────── */
.uc-hero.has-breadcrumb { padding-top: 3.5rem !important; }

/* ── All-sectors navigation (industry page bottom) ───────────── */
.all-sectors-nav {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid #e2e8f0;
}
.all-sectors-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.all-sectors-grid {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.sector-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1.5px solid #e2e8f0;
  transition: all 0.2s;
  min-width: 96px;
  max-width: 116px;
  text-align: center;
  background: #fff;
}
.sector-thumb:hover {
  border-color: var(--cp-blue);
  background: rgba(25,159,215,0.05);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(25,159,215,0.12);
}
.sector-thumb.active {
  border-color: var(--cp-blue);
  background: rgba(25,159,215,0.08);
  box-shadow: 0 4px 16px rgba(25,159,215,0.15);
}
.sector-thumb img {
  width: 44px; height: 44px;
  object-fit: contain;
}
.sector-thumb span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}
.sector-thumb.active span { color: var(--cp-blue); }

/* ── Blog card as anchor ─────────────────────────────────────── */
a.blog-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
a.blog-card h3 { color: var(--text-primary, #0f172a); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding-top: 68px;
  min-height: 85vh;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-text h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; color: var(--text-primary); margin-bottom: 1.5rem; }
.hero-text p  { font-size: 1.1rem; max-width: 520px; margin-bottom: 2.5rem; color: var(--text-secondary); }
.hero-illustration { display: flex; align-items: center; justify-content: center; }
.hero-illustration svg { width: 100%; height: auto; filter: drop-shadow(0 20px 40px rgba(25,159,215,.15)); }

/* Background decorations */
.hero-mesh {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(25,159,215,.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(138,80,216,.06) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(153,189,60,.05) 0%, transparent 40%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(25,159,215,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,159,215,.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: .25;
}
.blob-1 { width: 500px; height: 500px; background: var(--cp-blue);   top: -100px; right: -100px; animation: floatBlob 9s ease-in-out infinite; }
.blob-2 { width: 400px; height: 400px; background: var(--cp-purple); bottom: -50px; left: -50px;  animation: floatBlob 12s ease-in-out infinite reverse; }
.blob-3 { width: 300px; height: 300px; background: var(--cp-green);  top: 50%; left: 40%;          animation: floatBlob 7s ease-in-out infinite 2s; }

@keyframes floatBlob {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(40px,-40px) scale(1.08); }
  66%       { transform: translate(-30px,30px) scale(.94); }
}

/* Particles */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { transform: translateY(0) scale(1);   opacity: .6; }
  50%  { transform: translateY(-30px) scale(1.2); opacity: .3; }
  100% { transform: translateY(0) scale(1);   opacity: .6; }
}

/* ── Hero Slider ────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  overflow: hidden;
  padding-top: 68px;
  min-height: 100vh;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: all;
  position: relative;
}
.slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(25,159,215,.3);
  border: none;
  cursor: pointer;
  transition: all .3s;
}
.slider-dot.active { background: var(--cp-blue); width: 24px; border-radius: 4px; }
.slider-arrows {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 10;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  color: var(--cp-blue);
  transition: all .2s;
}
.slider-btn:hover { background: var(--cp-blue); color: white; border-color: var(--cp-blue); }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-hover); }

/* Card icon */
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon.blue   { background: rgba(25,159,215,.12); color: var(--cp-blue); }
.card-icon.purple { background: rgba(138,80,216,.12); color: var(--cp-purple); }
.card-icon.orange { background: rgba(252,121,66,.12); color: var(--cp-orange); }
.card-icon.green  { background: rgba(153,189,60,.12); color: var(--cp-green); }
.card-icon.pink   { background: rgba(238,80,145,.12); color: var(--cp-pink); }

/* Legacy glass card — maps to plain card in light theme */
.card-glass {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card-glass:hover { transform: translateY(-6px); border-color: var(--border-hover); box-shadow: var(--shadow-lg); }

/* Gradient border card */
.card-gradient-border {
  position: relative;
  background: var(--surface);
  border-radius: 16px;
  padding: 1.75rem;
}
.card-gradient-border::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Icon orb */
.icon-orb {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: white;
  box-shadow: 0 8px 24px rgba(25,159,215,.25);
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.icon-orb-sm { width: 44px; height: 44px; border-radius: 10px; font-size: 1rem; margin-bottom: 0; }

/* ── Copilot Product Cards ───────────────────────────────────── */
.copilot-cards-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.copilot-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.copilot-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
}
.copilot-card.blue::before   { background: var(--cp-blue); }
.copilot-card.purple::before { background: var(--cp-purple); }
.copilot-card.orange::before { background: var(--cp-orange); }
.copilot-card.green::before  { background: var(--cp-green); }
.copilot-card.pink::before   { background: var(--cp-pink); }
.copilot-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.copilot-card-svg { width: 60px; height: 60px; }
.copilot-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin: 0; }
.copilot-card p  { font-size: .88rem; color: var(--text-secondary); line-height: 1.6; flex: 1; }

.copilot-card-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.copilot-tag { font-size: .72rem; font-weight: 600; padding: .2rem .6rem; border-radius: 999px; }
.copilot-tag.blue   { background: rgba(25,159,215,.1);  color: var(--cp-blue); }
.copilot-tag.purple { background: rgba(138,80,216,.1);  color: var(--cp-purple); }
.copilot-tag.orange { background: rgba(252,121,66,.1);  color: var(--cp-orange); }
.copilot-tag.green  { background: rgba(153,189,60,.1);  color: var(--cp-green); }
.copilot-tag.pink   { background: rgba(238,80,145,.1);  color: var(--cp-pink); }

.copilot-card-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .83rem; font-weight: 600; text-decoration: none; }
.copilot-card.blue   .copilot-card-link { color: var(--cp-blue); }
.copilot-card.purple .copilot-card-link { color: var(--cp-purple); }
.copilot-card.orange .copilot-card-link { color: var(--cp-orange); }
.copilot-card.green  .copilot-card-link { color: var(--cp-green); }
.copilot-card.pink   .copilot-card-link { color: var(--cp-pink); }

/* ── Feature Cards ──────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.feature-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all .3s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-hover); box-shadow: var(--shadow-lg); }
.feature-card h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.feature-card p  { font-size: .875rem; }

/* ── Industry Cards ─────────────────────────────────────────── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
}
.industry-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--cp-blue); }
.industry-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

/* Sector cards (alternate name) */
.sector-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}
.sector-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-hover); color: inherit; }
.sector-card i { font-size: 2.5rem; }
.sector-card h3 { font-size: 1rem; font-weight: 600; color: var(--text-primary); }
.sector-card p  { font-size: .8rem; color: var(--text-muted); }

/* ── Stats ──────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-value {
  font-size: 2.5rem; font-weight: 900; line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: .84rem; color: var(--text-muted); margin-top: .25rem; }

/* Legacy stat number (coloured bar variant) */
.stats-bar { background: var(--gradient-primary); padding: 4rem 0; position: relative; overflow: hidden; }
.stats-bar::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 30px 30px; }
.stat-number { font-size: clamp(2rem,4vw,3.5rem); font-weight: 800; color: #fff; line-height: 1; margin-bottom: .4rem; display: block; }
.stat-label.white, .stats-bar .stat-label { color: rgba(255,255,255,.82); }
.stat-icon { font-size: 1.4rem; color: rgba(255,255,255,.55); margin-bottom: .4rem; display: block; }

/* ── Process Steps ──────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2rem;
  position: relative;
}
.process-step { text-align: center; position: relative; }
.step-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 14px rgba(25,159,215,.3);
}

/* Step list (alternating layout) */
.steps-list { display: flex; flex-direction: column; gap: 0; position: relative; }
.steps-list::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: var(--gradient-primary); opacity: .25; }
.step-item { display: flex; gap: 1.5rem; padding: 1.5rem 0; position: relative; }
.step-number {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: white;
  box-shadow: 0 4px 16px rgba(25,159,215,.25);
  position: relative; z-index: 1;
}
.step-content h4 { margin-bottom: .5rem; }
.step-content p  { color: var(--text-secondary); font-size: .95rem; }

/* ── Pricing ────────────────────────────────────────────────── */
.pricing-table { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.pricing-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }

.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.pricing-card.featured {
  border-color: var(--cp-blue);
  box-shadow: 0 0 0 1px var(--cp-blue), var(--shadow-lg);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured:hover { box-shadow: 0 0 0 1px var(--cp-blue), var(--shadow-lg); }

.pricing-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gradient-primary);
  color: white;
  font-size: .65rem;
  font-weight: 800;
  padding: .3rem .7rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pricing-name  { font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.pricing-price { font-size: 2.8rem; font-weight: 900; line-height: 1; color: var(--text-primary); }
.pricing-price sup { font-size: 1.2rem; font-weight: 700; vertical-align: top; margin-top: .5rem; color: var(--text-secondary); }
.pricing-price sub { font-size: .85rem; font-weight: 400; color: var(--text-muted); }
.pricing-desc  { color: var(--text-secondary); font-size: .875rem; }
.pricing-divider { height: 1px; background: var(--border); }

.pricing-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .86rem; color: var(--text-secondary); padding: .4rem 0; border-bottom: 1px solid var(--border); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i.check { color: var(--cp-green); margin-top: .1rem; flex-shrink: 0; }
.pricing-features li i.cross { color: #d1d5db; margin-top: .1rem; flex-shrink: 0; }
.pricing-features li i { color: var(--cp-blue); margin-top: .15rem; flex-shrink: 0; font-size: .8rem; }

/* Product pricing card (with colour top strip) */
.product-pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.product-pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-primary); }
.product-pricing-card:hover { transform: translateY(-8px); border-color: var(--border-hover); box-shadow: var(--shadow-lg); }
.product-pricing-card.featured { border-color: var(--cp-blue); box-shadow: 0 0 0 1px rgba(25,159,215,.2), var(--shadow-md); }
.product-badge { position: absolute; top: 1.5rem; right: 1.5rem; background: var(--gradient-primary); color: white; font-size: .7rem; font-weight: 700; padding: .25rem .75rem; border-radius: 999px; }
.product-price { font-size: 3rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.product-price span { font-size: 1rem; font-weight: 400; color: var(--text-secondary); }
.product-features { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: .75rem; }
.product-features li { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: var(--text-secondary); }
.product-features li i { color: var(--cp-blue); margin-top: .15rem; flex-shrink: 0; }

/* Check / cross globals */
.check { color: var(--cp-green); }
.cross { color: #d1d5db; }

/* ── Comparison Table ───────────────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.comparison-table th {
  background: var(--bg-secondary);
  padding: 1rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-align: center;
  border-bottom: 1.5px solid var(--border);
}
.comparison-table th:first-child { text-align: left; }
.comparison-table td {
  padding: .9rem 1rem;
  font-size: .85rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--text-primary); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--bg-secondary); }

/* ── Tabs ───────────────────────────────────────────────────── */
.tab-group { }
.tab-nav {
  display: flex;
  gap: .25rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2rem;
  overflow-x: auto;
}
.tab-btn {
  padding: .65rem 1.25rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
  white-space: nowrap;
  font-family: inherit;
}
.tab-btn.active { color: var(--cp-blue); border-bottom-color: var(--cp-blue); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ── Accordion ──────────────────────────────────────────────── */
.accordion-item {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-bottom: .75rem;
  overflow: hidden;
  background: var(--surface);
  transition: border-color .2s;
}
.accordion-item.open { border-color: rgba(25,159,215,.3); }
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  background: var(--surface);
  font-weight: 600;
  color: var(--text-primary);
  font-size: .92rem;
  transition: background .2s;
}
.accordion-header:hover { background: var(--bg-secondary); }
.accordion-item.open .accordion-header { background: rgba(25,159,215,.04); color: var(--cp-blue); }
.accordion-header i { transition: transform .3s; color: var(--text-muted); font-size: .875rem; }
.accordion-item.open .accordion-header i { transform: rotate(180deg); color: var(--cp-blue); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-item.open .accordion-body { max-height: 600px; }
.accordion-body-inner { padding: 1.25rem; border-top: 1px solid var(--border); font-size: .88rem; color: var(--text-secondary); line-height: 1.7; }

/* ── Timeline ───────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 3rem; }
.timeline::before { content: ''; position: absolute; left: 1rem; top: 0; bottom: 0; width: 2px; background: var(--gradient-primary); opacity: .3; }
.timeline-item { position: relative; margin-bottom: 3rem; }
.timeline-item::before {
  content: attr(data-step);
  position: absolute; left: -2.25rem;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white; font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  top: .25rem;
}
.timeline-item h4 { color: var(--text-primary); margin-bottom: .5rem; }
.timeline-item p  { font-size: .9rem; }

/* ── ROI Calculator ─────────────────────────────────────────── */
.roi-calculator {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
}
.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.slider-group { margin-bottom: 2rem; }
.slider-group label { display: flex; justify-content: space-between; align-items: center; font-size: .875rem; font-weight: 600; color: var(--text-primary); margin-bottom: .75rem; }
.slider-group label span { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: 1rem; font-weight: 700; }

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  border-radius: 3px;
  background: var(--bg-secondary);
  outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gradient-primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(25,159,215,.35);
}

.roi-result-card { background: var(--gradient-primary); border-radius: 16px; padding: 2rem; color: white; margin-bottom: 1.5rem; }
.roi-result-card h3 { font-size: .875rem; opacity: .8; margin-bottom: .5rem; color: white; }
.roi-result-value { font-size: 2.5rem; font-weight: 800; }
.roi-breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.roi-breakdown-item { background: var(--bg-secondary); border: 1.5px solid var(--border); border-radius: 12px; padding: 1rem; }
.roi-breakdown-item .label { font-size: .8rem; color: var(--text-muted); margin-bottom: .25rem; }
.roi-breakdown-item .value { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); }
.roi-formula { background: var(--bg-secondary); border: 1.5px solid var(--border); border-radius: 12px; padding: 1.25rem; font-family: 'JetBrains Mono', monospace; font-size: .8rem; color: var(--text-secondary); margin-top: 1.5rem; line-height: 1.8; }
.roi-formula span { color: var(--cp-blue); }

.roi-highlight { background: linear-gradient(135deg, rgba(25,159,215,.07), rgba(138,80,216,.07)); border: 1.5px solid rgba(25,159,215,.2); border-radius: 16px; padding: 2rem; text-align: center; }
.roi-highlight .roi-number { font-size: 3rem; font-weight: 800; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; line-height: 1; margin-bottom: .5rem; }
.roi-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

/* ── Readiness Checker ──────────────────────────────────────── */
.readiness-score-bar { background: var(--bg-secondary); border-radius: 999px; height: 12px; overflow: hidden; margin: 1rem 0 .5rem; }
.readiness-score-fill { height: 100%; border-radius: 999px; background: var(--gradient-primary); transition: width .5s ease; width: 0%; }
.readiness-score-label { text-align: right; font-size: .8rem; color: var(--text-muted); }
.score-feedback { margin-top: 1.5rem; padding: 1.25rem 1.5rem; border-radius: 12px; border: 1.5px solid rgba(25,159,215,.2); background: rgba(25,159,215,.05); font-size: .9rem; color: var(--text-secondary); display: none; }
.score-feedback.visible { display: block; }
.readiness-checkbox { display: flex; align-items: flex-start; gap: .75rem; padding: .5rem 0; cursor: pointer; color: var(--text-secondary); font-size: .875rem; }
.readiness-checkbox input[type="checkbox"] { width: 18px; height: 18px; border-radius: 4px; accent-color: var(--cp-blue); cursor: pointer; flex-shrink: 0; margin-top: .1rem; }

/* ── Blog Cards ─────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.75rem;
}
.blog-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: linear-gradient(135deg, var(--cp-blue), var(--cp-purple)); display: block; }
.blog-thumb-placeholder { width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; background: linear-gradient(135deg, rgba(25,159,215,.1), rgba(138,80,216,.1)); }

/* Legacy blog card image (height-based) */
.blog-card-img { height: 200px; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; overflow: hidden; }
.blog-card-img svg { width: 80px; height: 80px; opacity: .7; }

.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.blog-tag { display: inline-flex; align-items: center; gap: .3rem; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--cp-blue); background: rgba(25,159,215,.08); padding: .25rem .6rem; border-radius: 999px; border: 1px solid rgba(25,159,215,.18); margin-bottom: .5rem; }
.blog-card-title, .blog-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); line-height: 1.4; text-decoration: none; display: block; }
.blog-card-title:hover, .blog-title:hover { color: var(--cp-blue); }
.blog-excerpt { font-size: .9rem; color: var(--text-secondary); line-height: 1.6; }
.blog-card-meta, .blog-meta { font-size: .78rem; color: var(--text-muted); display: flex; gap: .75rem; align-items: center; margin-top: auto; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--gradient-copilot);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-banner h2, .cta-banner h3 { color: white; font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin: 0 0 1rem; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 2rem; font-size: 1rem; line-height: 1.7; }
.cta-banner .btn-group { justify-content: center; }
.cta-banner .btn-outline { border-color: rgba(255,255,255,.5); color: white; background: rgba(255,255,255,.12); }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,.25); }

/* ── Alternating Layout ─────────────────────────────────────── */
.alt-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.alt-layout.reverse .alt-img { order: -1; }

/* ── Pain Point Cards ───────────────────────────────────────── */
.pain-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--cp-blue);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all .3s;
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pain-card > i { font-size: 1.6rem; color: var(--cp-blue); margin-bottom: 1rem; display: block; }
.pain-card h4 { margin-bottom: .5rem; font-size: 1.05rem; }

/* ── Contact / Info Cards ───────────────────────────────────── */
.info-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: 16px; padding: 1.5rem; display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; transition: all .2s; }
.info-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-sm); }
.info-card .icon-orb { margin-bottom: 0; flex-shrink: 0; }
.info-card-text h5 { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .25rem; }
.info-card-text p { font-size: .95rem; color: var(--text-primary); }

/* ── Contact Form ───────────────────────────────────────────── */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: .5rem; }
.form-control {
  width: 100%;
  padding: .875rem 1.25rem;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: .9rem;
  transition: all .2s;
  outline: none;
}
.form-control:focus { border-color: var(--cp-blue); background: white; box-shadow: 0 0 0 3px rgba(25,159,215,.1); }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-control::placeholder { color: var(--text-muted); }
.form-input {
  width: 100%; background: var(--bg-secondary); border: 1.5px solid var(--border);
  border-radius: 10px; padding: .75rem 1rem; color: var(--text-primary);
  font-size: .9rem; transition: border-color .2s; font-family: inherit; outline: none;
}
.form-input:focus { border-color: var(--cp-blue); box-shadow: 0 0 0 3px rgba(25,159,215,.1); }
.form-success { display: none; text-align: center; padding: 3rem; }
.form-success.show { display: block; }
.form-success i { font-size: 3rem; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 1rem; display: block; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all .3s;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 1rem; left: 1.5rem;
  font-size: 4rem; line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-family: Georgia, serif; opacity: .5;
}
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-text { margin-top: 1.5rem; font-size: 1rem; font-style: italic; color: var(--text-secondary); }
.testimonial-author { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 1.1rem; flex-shrink: 0; }
.testimonial-name { font-weight: 600; color: var(--text-primary); }
.testimonial-role { font-size: .8rem; color: var(--text-muted); }
.stars { color: #f59e0b; font-size: .9rem; margin-bottom: .5rem; }

/* ── Scroll Container (product cards) ──────────────────────── */
.scroll-container { display: flex; gap: 1.5rem; overflow-x: auto; padding-bottom: 1.25rem; scrollbar-width: thin; scrollbar-color: var(--border) transparent; scroll-snap-type: x mandatory; }
.scroll-container::-webkit-scrollbar { height: 6px; }
.scroll-container::-webkit-scrollbar-track { background: transparent; }
.scroll-container::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.scroll-container > * { scroll-snap-align: start; }

.product-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: 20px; overflow: hidden; transition: all .3s; flex-shrink: 0; width: 260px; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-hover); }
.product-card-header { padding: 1.5rem; background: var(--gradient-primary); }
.product-card-header i { font-size: 2rem; color: white; }
.product-card-body { padding: 1.5rem; }
.product-card-body h3 { font-size: 1rem; margin-bottom: .5rem; }
.product-card-body p { font-size: .82rem; }

/* ── Sector Nav (prev/next links) ───────────────────────────── */
.sector-nav { display: flex; justify-content: space-between; align-items: center; padding: 2rem 0; border-top: 1px solid var(--border); margin-top: 4rem; }
.sector-nav a { display: flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 600; color: var(--text-secondary); padding: .6rem 1.25rem; border: 1.5px solid var(--border); border-radius: 999px; transition: all .2s; text-decoration: none; }
.sector-nav a:hover { border-color: var(--cp-blue); color: var(--cp-blue); }

/* ── Admin layout ───────────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--bg-secondary); border-right: 1.5px solid var(--border); padding: 1.5rem 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-sidebar .sidebar-logo { padding: .5rem 1.5rem 1.5rem; border-bottom: 1px solid var(--border); margin-bottom: 1rem; }
.admin-nav-item { display: flex; align-items: center; gap: .75rem; padding: .75rem 1.5rem; color: var(--text-secondary); font-size: .9rem; font-weight: 500; transition: all .2s; text-decoration: none; }
.admin-nav-item:hover, .admin-nav-item.active { background: rgba(25,159,215,.08); color: var(--cp-blue); border-right: 3px solid var(--cp-blue); }
.admin-nav-item i { width: 18px; text-align: center; }
.admin-content { padding: 2.5rem; background: var(--bg-primary); }
.admin-header { margin-bottom: 2rem; }
.admin-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: 16px; padding: 1.5rem; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.admin-table th { padding: .75rem 1rem; text-align: left; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); border-bottom: 1.5px solid var(--border); }
.admin-table td { padding: .875rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-secondary); }
.admin-table tr:hover td { background: var(--bg-secondary); }
.status-badge { display: inline-block; padding: .2rem .6rem; border-radius: 999px; font-size: .75rem; font-weight: 600; }
.status-active { background: rgba(153,189,60,.12); color: var(--cp-green); }
.status-draft  { background: rgba(252,121,66,.12); color: var(--cp-orange); }

/* ── Sparkle animation (copilots page) ─────────────────────── */
@keyframes sparkle {
  0%,100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50%      { opacity: 1; transform: scale(1) rotate(180deg); }
}
.sparkle { position: absolute; pointer-events: none; animation: sparkle 2s ease-in-out infinite; }
.sparkle::before { content: '✦'; font-size: 1rem; color: var(--cp-blue); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: #0f172a; color: #94a3b8; padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: .6rem; font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 1rem; }
.footer-logo svg { width: 28px; height: 28px; }
.footer-logo strong { color: var(--cp-blue); }
.footer-tagline { font-size: .84rem; line-height: 1.6; margin-bottom: 1.5rem; color: #94a3b8; }
.footer-col h6 { color: white; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { color: #94a3b8; text-decoration: none; font-size: .86rem; transition: color .2s; }
.footer-col a:hover { color: white; }
.footer-contact-item { display: flex; align-items: center; gap: .6rem; font-size: .85rem; margin-bottom: .6rem; color: #94a3b8; }
.footer-contact-item i { color: var(--cp-blue); width: 16px; }
.footer-partners-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #475569; margin-bottom: .75rem; }
.footer-partners-list { display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }
.footer-partner-item { display: inline-block; line-height: 0; }
.footer-partner-logo { width: 180px; height: 56px; display: block; object-fit: contain; object-position: left center; border-radius: 6px; padding: 4px 0; filter: grayscale(1) brightness(1.8); opacity: .65; transition: filter .2s, opacity .2s; }
.footer-partner-logo:hover { filter: grayscale(0) brightness(1); opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; display: flex; justify-content: space-between; font-size: .8rem; color: #94a3b8; }
.footer-bottom a { color: var(--cp-blue); text-decoration: none; }
.footer-bottom p { color: #94a3b8; }

/* ── AOS compatibility ──────────────────────────────────────── */
[data-aos] { transition-property: transform, opacity; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-inner   { padding: 0 1.25rem; }
  .mega-panel  { width: calc(100vw - 32px); }
  .mega-grid   { grid-template-columns: 1fr 1fr; }
  .mega-grid-8 { grid-template-columns: repeat(4,1fr) !important; }
  .mega-featured { display: none; }
  .copilot-cards-grid { grid-template-columns: repeat(2,1fr); }
  .grid-4   { grid-template-columns: repeat(2,1fr); }
  .industry-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
  .hero-inner  { grid-template-columns: 1fr; }
  .hero-illustration { display: none; }
}

@media (max-width: 900px) {
  .blog-grid   { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 0; }
}

@media (max-width: 768px) {
  section { padding: 48px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .uc-cards-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .domains-grid { grid-template-columns: 1fr; }
  .lp-hero-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .hero-screenshot { max-width: 100%; }
  .hero-float-card { display: none; }
  .uc-orbit-wrapper { display: none; }
}

@media (max-width: 768px) {
  .navbar-mega { height: 58px; }
  .nav-inner   { padding: 0 1rem; grid-template-columns: auto auto; }

  .nav-items {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 58px; left: 0; right: 0;
    background: white;
    border-top: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
    border-radius: 0;
    padding: .75rem 1rem;
    box-shadow: 0 8px 32px rgba(15,23,42,.1);
    margin-top: 0;
    overflow-y: auto;
    gap: .2rem;
    z-index: 998;
    max-height: calc(100vh - 58px);
  }
  .nav-items.open { display: flex; }
  .nav-items > li > a { padding: .7rem .9rem; border-radius: 10px; }
  /* Products dropdown — inline on mobile */
  .nav-dropdown {
    position: static;
    transform: none;
    animation: none;
    box-shadow: none;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin: .3rem 0 .3rem .5rem;
    padding: .3rem .3rem;
    width: 100%;
    min-width: 0;
    display: none;
  }
  .nav-dropdown-item .ndi-title,
  .nav-dropdown-item .ndi-sub { white-space: normal; }
  .nav-has-dropdown.open .nav-dropdown { display: block; }
  .nav-has-dropdown:hover .nav-dropdown { display: none; }
  .nav-has-dropdown.open .nav-dropdown { display: block; }

  .mega-panel {
    position: static;
    display: none !important;
    border: none;
    background: transparent !important;
    backdrop-filter: none;
    padding: .25rem 0 0 .75rem;
    animation: none;
    transform: none;
    width: auto;
    border-radius: 0;
    box-shadow: none;
  }
  .has-mega.open > .mega-panel { display: block !important; }
  .mega-grid            { grid-template-columns: 1fr; gap: 0; }
  .mega-grid-8          { grid-template-columns: repeat(2,1fr) !important; gap: .3rem; }
  .mega-featured        { display: none; }
  .mega-products-grid   { grid-template-columns: 1fr; gap: .5rem; }
  .mega-product-card    { min-height: auto; padding: 1rem; }
  .mpc-desc             { display: none; }  /* save space on mobile */

  .mobile-toggle { display: flex; }
  /* Keep Contact Us visible on mobile — compact pill next to hamburger */
  .nav-cta {
    display: inline-flex !important;
    padding: 7px 14px !important;
    font-size: 0.78rem !important;
    border-radius: 8px !important;
    white-space: nowrap;
  }
  .nav-cta i { display: none !important; } /* hide icon, keep text */

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-illustration { display: none; }
  .hero-text > p { margin-left: auto; margin-right: auto; }
  .btn-group { justify-content: center; }

  .grid-2, .grid-3, .features-grid, .pricing-grid, .alt-layout,
  .roi-grid, .roi-grid-3, .copilot-cards-grid, .industry-grid { grid-template-columns: 1fr; }

  .stats-grid  { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; }

  .section { padding: 3rem 0; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .alt-layout.reverse .alt-img { order: 0; }
  h1 { font-size: 2.4rem; }
}

@media (max-width: 580px) {
  .blog-grid           { grid-template-columns: 1fr; }
  .copilot-cards-grid  { grid-template-columns: 1fr; }
  .industry-grid       { grid-template-columns: 1fr; }
}

@media (min-width: 769px) {
  .mobile-toggle { display: none; }
}

/* ── Asset Icon Animations ── */
.icon-float { animation: iconFloat 3s ease-in-out infinite; }
.icon-float-delay { animation: iconFloat 3s ease-in-out 0.5s infinite; }
.icon-float-slow { animation: iconFloat 4s ease-in-out infinite; }
.icon-pulse { animation: iconPulse 2.5s ease-in-out infinite; }
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ── Orbit animation for hero use-case image ── */
.uc-orbit-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 360px;
  flex-shrink: 0;
}

.uc-orbit-ring {
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 2px dashed rgba(25, 159, 215, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbitRingPulse 4s ease-in-out infinite;
}

@keyframes orbitRingPulse {
  0%, 100% { border-color: rgba(25, 159, 215, 0.25); }
  50%       { border-color: rgba(138, 80, 216, 0.4); }
}

.uc-industry-img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 16px 40px rgba(25, 159, 215, 0.15));
  /* remove the old icon-float animation — orbit wrapper handles motion */
  animation: none !important;
}

.uc-orbit-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  /* centre the logo at the origin, then orbit animation moves it out */
  width: 52px;
  height: 48px;
  margin-top: -24px;
  margin-left: -26px;
  z-index: 3;
  animation: ucOrbit 7s linear infinite;
  filter: drop-shadow(0 4px 16px rgba(25, 159, 215, 0.5));
}

@keyframes ucOrbit {
  from {
    transform: rotate(0deg) translateX(165px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(165px) rotate(-360deg);
  }
}

/* Slow down on hover */
.uc-orbit-wrapper:hover .uc-orbit-logo {
  animation-duration: 14s;
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .roi-breakdown { grid-template-columns: 1fr; }
  section { padding: 36px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  .cta-banner { padding: 2rem 1rem; }
  .section-inner, .container { padding-left: 1rem; padding-right: 1rem; }
  .grid-4 { grid-template-columns: 1fr; }
}
