/* ============================================================
   INSIDERS MEDIA — MASTER STYLESHEET
   Premium B2B Technology & Growth Agency
   Design: Clean white, navy, logo-gradient accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Base */
  --white: #FFFFFF;
  --off-white: #FAFBFD;
  --gray-50: #F7F9FC;
  --gray-100: #EEF1F7;
  --gray-200: #E2E6EF;
  --gray-300: #CBD0DD;
  --gray-400: #9BA3B5;
  --gray-500: #6B7585;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1E2535;

  /* Brand Navy */
  --navy: #0B1729;
  --navy-mid: #102040;
  --navy-soft: #1C3260;

  /* Brand Blue */
  --blue: #1E40AF;
  --blue-mid: #2563EB;
  --blue-light: #DBEAFE;

  /* Logo Gradient Palette (pulled from iM logo) */
  --logo-blue: #50AAFF;
  --logo-purple: #7C5EE8;
  --logo-pink: #CE6ADA;

  /* The Accent Gradient — USE SPARINGLY */
  --ag: linear-gradient(135deg, #50AAFF 0%, #7C5EE8 52%, #CE6ADA 100%);
  --ag-text: linear-gradient(135deg, #50AAFF 0%, #7C5EE8 52%, #CE6ADA 100%);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --r-full: 9999px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(0,0,0,0.04);
  --sh-sm: 0 1px 4px rgba(0,0,0,0.06), 0 2px 10px rgba(0,0,0,0.04);
  --sh-md: 0 4px 20px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --sh-lg: 0 8px 36px rgba(0,0,0,0.09), 0 2px 8px rgba(0,0,0,0.04);
  --sh-xl: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --tf: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --tm: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --ts: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-w: 1200px;
  --pad: 0 clamp(20px, 5vw, 48px);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul, ol { list-style: none; }
input, textarea { font-family: var(--font); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 700;
}
h1 { font-size: clamp(40px, 6vw, 74px); font-weight: 800; }
h2 { font-size: clamp(30px, 4.5vw, 52px); }
h3 { font-size: clamp(20px, 3vw, 28px); font-weight: 600; }
h4 { font-size: 17px; font-weight: 600; }
p  { color: var(--gray-600); line-height: 1.75; }
.lead { font-size: clamp(16px, 2vw, 19px); color: var(--gray-500); line-height: 1.7; }

.gradient-text {
  background: var(--ag-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad);
}

.section         { padding: clamp(64px, 10vw, 104px) 0; }
.section--sm     { padding: clamp(40px, 6vw, 64px) 0; }
.section--alt    { background: var(--gray-50); }
.section--navy   { background: var(--navy); }

.section-header  { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header p { margin-top: 14px; font-size: 17px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ag);
  border-radius: 2px;
  flex-shrink: 0;
}

.gradient-rule { width: 40px; height: 2px; background: var(--ag); border-radius: 2px; margin: 16px 0 24px; }
.gradient-rule--center { margin: 16px auto 24px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--tm), box-shadow var(--tm);
}
.nav.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--sh-sm);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo img {
  height: 38px;
  width: auto;
}
.nav__logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--r-md);
  transition: color var(--tf), background var(--tf);
}
.nav__links a:hover, .nav__links a.active {
  color: var(--navy);
  background: var(--gray-100);
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  background: var(--navy);
  color: white !important;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: var(--tm);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.nav__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ag);
  opacity: 0;
  transition: opacity var(--tm);
}
.nav__cta:hover::before { opacity: 1; }
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(11,23,41,0.22); }
.nav__cta > * { position: relative; z-index: 1; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: var(--r-sm);
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--tm);
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--gray-100);
  padding-bottom: 16px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  display: block;
  padding: 12px clamp(20px, 5vw, 48px);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  transition: background var(--tf);
}
.nav__mobile a:hover { background: var(--gray-50); color: var(--navy); }
.nav__mobile .nav__cta {
  margin: 12px clamp(20px, 5vw, 48px) 0;
  border-radius: var(--r-md);
  justify-content: center;
}

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__cta.desktop-cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: var(--tm);
  cursor: pointer;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  line-height: 1;
}
.btn > span, .btn > svg { position: relative; z-index: 1; }

.btn--primary {
  background: var(--navy);
  color: white;
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ag);
  opacity: 0;
  transition: opacity var(--tm);
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(11,23,41,0.22); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-300);
}
.btn--outline:hover {
  border-color: var(--navy);
  background: var(--gray-50);
  transform: translateY(-1px);
}

.btn--white {
  background: white;
  color: var(--navy);
  font-weight: 700;
}
.btn--white:hover { background: var(--gray-100); transform: translateY(-1px); }

.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }

.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--sm { padding: 8px 18px; font-size: 13px; }

.btn .arrow { transition: transform var(--tf); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(80px, 14vh, 150px) 0 clamp(64px, 10vh, 110px);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(80,170,255,0.055) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(206,106,218,0.045) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 880px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ag);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(42px, 6.5vw, 80px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--navy);
  line-height: 1.06;
  margin-bottom: 24px;
}

.hero__desc {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--gray-500);
  line-height: 1.72;
  max-width: 580px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 64px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}
.hero__trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.hero__trust-items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
}
.trust-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gray-300); }

/* ============================================================
   PILLAR CARDS
   ============================================================ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .pillar-grid { grid-template-columns: 1fr; } }

.pillar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: var(--tm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: default;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ag);
  opacity: 0;
  transition: opacity var(--tm);
}
.pillar-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--sh-lg);
  transform: translateY(-5px);
}
.pillar-card:hover::before { opacity: 1; }

.pillar-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 18px;
}
.pillar-card__icon {
  width: 46px;
  height: 46px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: var(--tm);
}
.pillar-card:hover .pillar-card__icon {
  background: var(--navy);
  border-color: var(--navy);
}

.pillar-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pillar-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  flex-grow: 1;
}
.pillar-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 18px;
}
.tag {
  display: inline-block;
  padding: 3px 9px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 11.5px;
  font-weight: 500;
  border-radius: var(--r-full);
}

.pillar-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  transition: gap var(--tf);
}
.pillar-card__link:hover { gap: 10px; }

/* ============================================================
   WHY US / DIFFERENTIATORS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 48px; } }

.why-text h2 { margin-bottom: 16px; }
.why-text > p { margin-bottom: 36px; font-size: 17px; }

.why-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}
.why-item:last-child { margin-bottom: 0; }
.why-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--sh-xs);
  margin-top: 2px;
}
.why-item h4 { font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

.stats-quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--sh-xs);
  transition: var(--tm);
}
.stat-box:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.stat-box__num {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--ag);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box__label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ============================================================
   INDUSTRIES GRID
   ============================================================ */
.industries-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--tf);
  box-shadow: var(--sh-xs);
}
.industry-pill:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}
.industry-pill-icon { font-size: 16px; }

/* ============================================================
   TECH TICKER
   ============================================================ */
.ticker-section {
  overflow: hidden;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
  padding: 36px 0;
}
.ticker-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 22px;
}
.ticker-wrapper {
  overflow: hidden;
  position: relative;
}
.ticker-wrapper::before, .ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.ticker-wrapper::before { left: 0; background: linear-gradient(90deg, var(--gray-50), transparent); }
.ticker-wrapper::after  { right: 0; background: linear-gradient(-90deg, var(--gray-50), transparent); }

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gray-500);
  white-space: nowrap;
  transition: color var(--tf);
}
.ticker-item:hover { color: var(--navy); }
.ticker-item-icon { font-size: 18px; }
.ticker-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--gray-300); flex-shrink: 0; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--navy);
  padding: clamp(56px, 8vw, 88px) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(80,170,255,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(206,106,218,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner__text h2 {
  font-size: clamp(26px, 4vw, 44px);
  color: white;
  margin-bottom: 8px;
}
.cta-banner__text p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
}
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer__brand img { height: 34px; margin-bottom: 16px; opacity: 0.85; }
.footer__brand p { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }
.footer__brand-contact { margin-top: 20px; }
.footer__brand-contact a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
  transition: color var(--tf);
}
.footer__brand-contact a:hover { color: rgba(255,255,255,0.8); }
.footer__col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 11px;
  transition: color var(--tf);
}
.footer__col a:hover { color: rgba(255,255,255,0.9); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 12.5px; color: rgba(255,255,255,0.35); }

@media (max-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: clamp(56px, 10vw, 88px) 0 clamp(40px, 6vw, 64px);
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.page-hero__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero__label::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--ag);
  border-radius: 2px;
}
.page-hero h1 { font-size: clamp(34px, 5vw, 60px); margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--gray-500); max-width: 600px; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-section {
  padding: clamp(64px, 9vw, 96px) 0;
}
.service-section:nth-child(even) { background: var(--gray-50); }

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 52px;
}
.service-num {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: var(--r-lg);
  background: var(--ag);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-top: 6px;
  box-shadow: var(--sh-sm);
}
.service-header-text h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 10px; }
.service-header-text p { font-size: 17px; color: var(--gray-500); max-width: 600px; }

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  transition: var(--tm);
}
.service-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--gray-300);
  transform: translateY(-3px);
}
.service-card__icon { font-size: 26px; margin-bottom: 14px; }
.service-card h4 { font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 13.5px; color: var(--gray-500); line-height: 1.65; }

.callout-box {
  background: var(--navy);
  border-radius: var(--r-2xl);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .callout-box { grid-template-columns: 1fr; padding: 32px 28px; }
  .service-header { flex-direction: column; }
}
.callout-box__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.callout-box h3 { font-size: 22px; color: white; margin-bottom: 20px; font-weight: 600; }
.callout-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
  line-height: 1.55;
}
.callout-list li::before {
  content: '→';
  color: var(--logo-blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.callout-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.callout-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .about-intro { grid-template-columns: 1fr; gap: 48px; } }

.methodology-steps { margin-top: 48px; }
.mstep {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  position: relative;
}
.mstep:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: -6px;
  width: 2px;
  background: var(--gray-200);
}
.mstep__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  z-index: 1;
}
.mstep.active .mstep__num { background: var(--ag); border-color: transparent; color: white; }
.mstep__content h4 { font-size: 15px; color: var(--navy); margin-bottom: 5px; }
.mstep__content p { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 900px) { .expertise-grid { grid-template-columns: 1fr; } }
.expertise-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: var(--tm);
}
.expertise-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.expertise-card__icon { font-size: 32px; margin-bottom: 18px; }
.expertise-card h3 { font-size: 17px; margin-bottom: 10px; }
.expertise-card p { font-size: 14px; color: var(--gray-500); }

/* ============================================================
   RESULTS / TESTIMONIALS
   ============================================================ */
.stats-banner {
  background: var(--navy);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(80,170,255,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(206,106,218,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media (max-width: 768px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
.stats-row__num {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--ag);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stats-row__label { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ============================================================
   TESTIMONIAL SLIDER
   ============================================================ */
.testimonial-slider-container {
  position: relative;
  max-width: 100%;
}
.testimonial-track-wrap {
  overflow: hidden;
  margin: 0 -12px;
  padding: 12px; /* to allow shadows */
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.slide-card {
  flex: 0 0 calc(50% - 24px);
  margin: 0 12px;
  min-width: 320px;
}
@media (max-width: 800px) {
  .slide-card { flex: 0 0 calc(100% - 24px); }
}

.slider-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  cursor: pointer;
  transition: var(--tm);
  box-shadow: var(--sh-xs);
}
.slider-btn:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}

.avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gray-500);
  flex-shrink: 0;
  border: 2px solid var(--gray-200);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.tcard {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: var(--tm);
  height: 100%;
}
.tcard:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); border-color: var(--gray-300); }
.tcard__stars { display: flex; gap: 3px; margin-bottom: 18px; }
.tcard__stars span { color: #F59E0B; font-size: 14px; }
.tcard__quote {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.78;
  flex-grow: 1;
  font-style: italic;
  margin-bottom: 24px;
}
.tcard__footer {
  border-top: 1px solid var(--gray-100);
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tcard__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gray-100);
}
.tcard__name { font-size: 14.5px; font-weight: 700; color: var(--navy); }
.tcard__role { font-size: 12.5px; color: var(--gray-400); margin-top: 2px; }
.tcard__badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.video-section {
  background: var(--gray-50);
  border: 2px dashed var(--gray-200);
  border-radius: var(--r-2xl);
  padding: clamp(48px, 8vw, 80px);
  text-align: center;
}
.video-section__icon { font-size: 52px; margin-bottom: 20px; display: block; }
.video-section h3 { font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.video-section p { font-size: 15px; color: var(--gray-500); max-width: 380px; margin: 0 auto 24px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { font-size: 16px; color: var(--gray-500); margin-bottom: 40px; line-height: 1.7; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 3px;
}
.contact-detail a, .contact-detail span {
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 500;
  transition: color var(--tf);
}
.contact-detail a:hover { color: var(--blue-mid); }

.calendly-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.flex  { display: flex; }
.gap-3 { gap: 12px; }
.items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

@media (max-width: 640px) {
  .section { padding: clamp(48px, 8vw, 72px) 0; }
  .hide-mobile { display: none !important; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }
}

/* ============================================================
   3D TECH ENHANCEMENTS
   ============================================================ */

/* Hero: Dot grid background for tech depth */
.hero {
  background-image: radial-gradient(circle, rgba(11,23,41,0.055) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
}
/* Keep pseudo overlays on top of grid */
.hero::before, .hero::after { z-index: 0; }
.hero .container { position: relative; z-index: 1; }

/* Hero floating metrics card */
.hero-metrics {
  position: absolute;
  right: clamp(2%, 5%, 80px);
  top: 50%;
  transform: translateY(-55%);
  width: 248px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--r-xl);
  padding: 22px;
  box-shadow: var(--sh-xl), 0 0 0 1px rgba(80,170,255,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
  z-index: 3;
  display: none;
  animation: float-card 5s ease-in-out infinite;
}
@keyframes float-card {
  0%, 100% { transform: translateY(-55%); }
  50%       { transform: translateY(calc(-55% - 10px)); }
}
@media (min-width: 1180px) {
  .hero-metrics { display: block; }
  .hero__inner  { max-width: 640px; }
}

.hero-metrics__hdr {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.hero-metrics__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.hero-metrics__sub {
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 1px;
}

/* Pulsing green status dot */
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-50);
}
.metric-row:last-of-type { border-bottom: none; }
.metric-lbl { font-size: 11.5px; color: var(--gray-500); font-weight: 500; }
.metric-val {
  font-size: 12.5px;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  background: var(--ag);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-metrics__ftr {
  margin-top: 14px;
  padding-top: 11px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #22C55E;
  font-weight: 600;
  font-family: 'Courier New', monospace;
}

/* 3D Card will-change for smooth GPU compositing */
.pillar-card, .tcard, .expertise-card, .stat-box, .service-card {
  will-change: transform;
  backface-visibility: hidden;
}

/* CTA button glow */
.btn--primary:hover {
  box-shadow: 0 0 30px rgba(80,170,255,0.22), 0 12px 36px rgba(11,23,41,0.2);
}

/* Tech grid lines on dark sections */
.stats-banner,
.cta-banner,
.footer {
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 48px 48px;
}
/* Make sure existing bg-color overrides grid pattern */
.stats-banner { background-color: var(--navy); }
.cta-banner   { background-color: var(--navy); }
.footer       { background-color: var(--navy); }

/* Pillar card num — monospace/code style */
.pillar-card__num {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
}

/* Service num badge glow */
.service-num {
  box-shadow: 0 4px 20px rgba(80,170,255,0.28);
}

/* Subtle gradient tint on hovered pillar card */
.pillar-card:hover {
  background: linear-gradient(175deg, rgba(80,170,255,0.018) 0%, white 40%);
}

/* Stat box gradient glow on hover */
.stat-box:hover .stat-box__num {
  filter: drop-shadow(0 0 8px rgba(80,170,255,0.2));
}

/* Hero badge glass */
.hero__badge {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Ticker brand logos */
.ticker-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Code-style tag (used in hero badge or decorative text) */
.code-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: var(--navy);
  color: #50AAFF;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

