/* ============================================================
   IGS — Invoria Global Solutions
   components.css  |  Nav · Hero · Cards · Buttons · Forms · Footer
   ============================================================ */

/* ================================================================
   NAV ANNOUNCEMENT BAR — Royal Grand Launch (site-wide)
   ================================================================ */
.igs-nav-announce {
  --igs-linkedin-blue: #0a66c2;
  --ann-grand-launch: #f47323;
  --ann-message-font: 'Lora', Georgia, 'Times New Roman', serif;
  --ann-bar-min-h: 44px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 7020;
  overflow: hidden;
  min-height: var(--ann-bar-min-h);
  box-sizing: border-box;
  background: var(--igs-linkedin-blue);
  color: #fff;
  border-bottom: 2px solid #fbbf24;
  box-shadow:
    0 3px 14px rgba(10, 102, 194, 0.32),
    0 0 18px rgba(10, 102, 194, 0.18);
  transform: translate3d(0, -100%, 0);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* Animated gold sweep along bottom edge */
.igs-nav-announce::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #fbbf24 18%,
    #fff 50%,
    #fbbf24 82%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: igs-nav-announce-gold-sweep 2.8s linear infinite;
  pointer-events: none;
  z-index: 4;
}

@keyframes igs-nav-announce-gold-sweep {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}

@keyframes igs-nav-announce-enter {
  0% {
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }
  65% {
    transform: translate3d(0, 6%, 0);
    opacity: 1;
  }
  85% {
    transform: translate3d(0, -2%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes igs-nav-announce-bar-glow {
  0%,
  100% {
    box-shadow:
      0 3px 14px rgba(10, 102, 194, 0.32),
      0 0 12px rgba(251, 191, 36, 0.12);
  }
  50% {
    box-shadow:
      0 4px 18px rgba(10, 102, 194, 0.4),
      0 0 22px rgba(251, 191, 36, 0.28);
  }
}

.igs-nav-announce__royal-border {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 18px,
      rgba(251, 191, 36, 0.04) 18px,
      rgba(251, 191, 36, 0.04) 19px
    );
}

/* Light sweep across the bar — draws the eye without blocking text */
.igs-nav-announce__wave {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    105deg,
    transparent 28%,
    rgba(255, 255, 255, 0.16) 48%,
    rgba(251, 191, 36, 0.12) 52%,
    transparent 72%
  );
  background-size: 260% 100%;
  animation: igs-nav-announce-wave 4s ease-in-out infinite;
}

@keyframes igs-nav-announce-wave {
  0% {
    background-position: 130% 0;
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
  100% {
    background-position: -130% 0;
    opacity: 0.55;
  }
}

/* Floating Christmas stars — gold glow (edges only, behind copy) */
.igs-nav-announce__floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.igs-nav-announce__floaters i {
  --star-size: 11px;
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  font-style: normal;
  background: none;
  border: none;
  opacity: 0;
  animation: igs-announce-star-float 4.4s ease-in-out infinite;
}

.igs-nav-announce__floaters i::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  font-size: var(--star-size);
  line-height: 1;
  color: #fde68a;
  text-shadow:
    0 0 3px #fff,
    0 0 8px rgba(255, 215, 0, 0.95),
    0 0 16px rgba(251, 191, 36, 0.9),
    0 0 26px rgba(251, 191, 36, 0.55);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 4px rgba(255, 223, 128, 0.85));
  animation: igs-announce-star-twinkle 4.4s ease-in-out infinite;
}

.igs-nav-announce__floaters i:nth-child(even)::before {
  content: '✦';
  font-size: calc(var(--star-size) * 0.92);
}

/* Desktop: only far left / far right margins (away from centered text) */
.igs-nav-announce__floaters i:nth-child(1) {
  left: 2%;
  top: 14%;
  --star-size: 9px;
  animation-delay: 0s;
}

.igs-nav-announce__floaters i:nth-child(2) {
  left: 2.5%;
  top: 72%;
  --star-size: 8px;
  animation-delay: 1.1s;
}

.igs-nav-announce__floaters i:nth-child(3) {
  left: auto;
  right: 2%;
  top: 14%;
  --star-size: 10px;
  animation-delay: 2s;
}

.igs-nav-announce__floaters i:nth-child(4) {
  left: auto;
  right: 2.5%;
  top: 72%;
  --star-size: 8px;
  animation-delay: 3s;
}

/* Gap stars: left of label, between message & CTAs, right of close */
.igs-nav-announce__floaters i:nth-child(5) {
  left: 11%;
  top: 50%;
  --star-size: 10px;
  animation-delay: 0.6s;
}

.igs-nav-announce__floaters i:nth-child(6) {
  left: 66%;
  top: 50%;
  --star-size: 9px;
  animation-delay: 1.7s;
}

.igs-nav-announce__floaters i:nth-child(7) {
  left: auto;
  right: 0.75%;
  top: 50%;
  --star-size: 9px;
  animation-delay: 2.8s;
}

@keyframes igs-announce-star-float {
  0%,
  100% {
    opacity: 0;
  }
  15% {
    opacity: 0.55;
  }
  35% {
    opacity: 1;
  }
  60% {
    opacity: 0.92;
  }
  85% {
    opacity: 0.35;
  }
}

.igs-nav-announce__floaters i:nth-child(1)::before {
  animation-delay: 0s;
}

.igs-nav-announce__floaters i:nth-child(2)::before {
  animation-delay: 1.1s;
}

.igs-nav-announce__floaters i:nth-child(3)::before {
  animation-delay: 2s;
}

.igs-nav-announce__floaters i:nth-child(4)::before {
  animation-delay: 3s;
}

.igs-nav-announce__floaters i:nth-child(5)::before {
  animation-delay: 0.6s;
}

.igs-nav-announce__floaters i:nth-child(6)::before {
  animation-delay: 1.7s;
}

.igs-nav-announce__floaters i:nth-child(7)::before {
  animation-delay: 2.8s;
}

@keyframes igs-announce-star-twinkle {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.8) rotate(0deg);
    filter: drop-shadow(0 0 2px rgba(255, 223, 128, 0.5))
      brightness(0.85);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1) rotate(10deg);
    filter: drop-shadow(0 0 8px rgba(255, 223, 128, 1)) brightness(1.15);
  }
}

.igs-nav-announce.is-visible,
.igs-nav-announce.is-revealing {
  animation:
    igs-nav-announce-enter 0.7s cubic-bezier(0.22, 1.15, 0.36, 1) forwards,
    igs-nav-announce-bar-glow 3s ease-in-out 0.7s infinite;
  pointer-events: auto;
}

.igs-nav-confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 7055;
  pointer-events: none;
}

.igs-nav-announce__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 45%,
    transparent 55%
  );
  background-size: 200% 100%;
  animation: igs-nav-announce-shine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes igs-nav-announce-shine {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -80% 0;
  }
}

.igs-nav-announce__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px 10px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 4px 44px 4px 14px;
  min-height: var(--ann-bar-min-h);
  box-sizing: border-box;
}

.igs-nav-announce__badge {
  display: inline-flex;
  align-items: stretch;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35),
    0 4px 14px rgba(0, 0, 0, 0.28);
  animation: igs-nav-announce-badge-pop 2.4s ease-in-out infinite;
}

@keyframes igs-nav-announce-badge-pop {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

.igs-nav-announce__badge-new {
  display: inline-flex;
  align-items: center;
  padding: 2px 5px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1c1917;
  background: linear-gradient(180deg, #fde68a 0%, #f59e0b 100%);
  animation: igs-nav-announce-new-flash 1.8s ease-in-out infinite;
}

@keyframes igs-nav-announce-new-flash {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.35);
  }
}

.igs-nav-announce__badge-text {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
}

.igs-nav-announce__text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  margin: 0;
  min-width: 0;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}

@keyframes igs-grand-launch-attention {
  0%,
  100% {
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 9px rgba(255, 255, 255, 0.7));
    transform: scale(1.05);
  }
}

@keyframes igs-announce-slide-in {
  from {
    opacity: 0;
    transform: translateY(5px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes igs-announce-sparkle-spin {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.9;
  }
}

@keyframes igs-announce-message-shimmer {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.78;
  }
}

.igs-nav-announce.is-visible .igs-nav-announce__label,
.igs-nav-announce.is-revealing .igs-nav-announce__label {
  animation:
    igs-announce-slide-in 0.55s cubic-bezier(0.22, 1.1, 0.36, 1) 0.2s both,
    igs-grand-launch-attention 2.8s ease-in-out 0.75s infinite;
}

.igs-nav-announce__label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--ann-grand-launch, #f47323);
  -webkit-text-stroke: 0.85px rgba(255, 255, 255, 0.98);
  paint-order: stroke fill;
  text-shadow:
    1px 0 0 rgba(255, 255, 255, 0.55),
    -1px 0 0 rgba(255, 255, 255, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 -1px 0 rgba(255, 255, 255, 0.55),
    0 2px 4px rgba(0, 25, 55, 0.55);
}

.igs-nav-announce__label::before {
  content: '✦';
  display: inline-block;
  margin-right: 5px;
  font-size: 11px;
  line-height: 1;
  color: #fde68a;
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.95);
  -webkit-text-stroke: 0;
  animation: igs-announce-sparkle-spin 2.4s ease-in-out infinite;
}

.igs-nav-announce.is-visible .igs-nav-announce__message,
.igs-nav-announce.is-revealing .igs-nav-announce__message {
  animation:
    igs-announce-slide-in 0.6s ease-out 0.35s both,
    igs-announce-message-shimmer 3.2s ease-in-out 1s infinite;
}

.igs-nav-announce__sep {
  flex-shrink: 0;
  display: inline-block;
  width: 1px;
  height: 1.15em;
  margin: 0 12px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.15);
  animation: igs-announce-sep-pulse 2.2s ease-in-out infinite;
}

@keyframes igs-announce-sep-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.12);
  }
}

.igs-nav-announce__message {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--ann-message-font);
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 20, 40, 0.5);
}

.igs-nav-announce__text strong {
  font-weight: 800;
}

.igs-nav-announce__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.igs-nav-announce__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  border: none;
  font-family: inherit;
}

.igs-nav-announce__cta--learn {
  color: var(--color-primary-900, #002a52);
  background: linear-gradient(180deg, #fffef8 0%, #fde68a 100%);
  border: 1px solid rgba(245, 158, 11, 0.55);
  box-shadow: 0 3px 12px rgba(245, 158, 11, 0.35);
  animation:
    igs-nav-announce-cta-glow 2.2s ease-in-out infinite,
    igs-announce-cta-bounce 2.4s ease-in-out infinite;
}

@keyframes igs-nav-announce-cta-glow {
  0%,
  100% {
    box-shadow: 0 3px 12px rgba(245, 158, 11, 0.3);
  }
  50% {
    box-shadow: 0 4px 18px rgba(251, 191, 36, 0.55);
  }
}

@keyframes igs-announce-cta-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.igs-nav-announce.is-visible .igs-nav-announce__actions,
.igs-nav-announce.is-revealing .igs-nav-announce__actions {
  animation: igs-announce-slide-in 0.5s ease-out 0.45s both;
}

.igs-nav-announce__cta--learn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.igs-nav-announce__cta--link {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.igs-nav-announce__cta--link:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.igs-nav-announce__close {
  position: absolute;
  top: 50%;
  right: 8px;
  z-index: 6;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  padding: 0;
  border: 1px solid rgba(248, 113, 113, 0.55);
  border-radius: 4px;
  background: rgba(254, 226, 226, 0.98);
  color: #dc2626;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.igs-nav-announce__close:hover {
  background: #fecaca;
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 767px) {
  .igs-nav-announce {
    --ann-bar-min-h: auto;
  }

  .igs-nav-announce__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 36px 8px 10px;
    gap: 8px;
  }

  .igs-nav-announce__text {
    flex: none;
    width: 100%;
    order: 1;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    text-align: left;
    row-gap: 4px;
  }

  .igs-nav-announce__label {
    font-size: 12px;
  }

  .igs-nav-announce__sep {
    display: none;
  }

  .igs-nav-announce__message {
    flex: 1 1 100%;
    font-size: 11px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.45;
  }

  .igs-nav-announce__actions {
    order: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: stretch;
  }

  .igs-nav-announce__cta {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 8px 10px;
    font-size: 11px;
    box-sizing: border-box;
    justify-content: center;
  }

  .igs-nav-announce__close {
    top: 8px;
    right: 6px;
    transform: none;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    font-size: 16px;
  }

  .igs-nav-announce__close:hover {
    transform: scale(1.05);
  }

  /* Stars: top/bottom side gutters only — not over message or buttons */
  .igs-nav-announce__floaters i:nth-child(1) {
    left: 3%;
    top: 8%;
  }

  .igs-nav-announce__floaters i:nth-child(2) {
    left: 3%;
    top: auto;
    bottom: 10%;
  }

  .igs-nav-announce__floaters i:nth-child(3) {
    right: 40px;
    top: 8%;
  }

  .igs-nav-announce__floaters i:nth-child(4) {
    right: 4%;
    top: auto;
    bottom: 10%;
  }

  /* Gap stars overlap stacked copy on narrow screens */
  .igs-nav-announce__floaters i:nth-child(5),
  .igs-nav-announce__floaters i:nth-child(6),
  .igs-nav-announce__floaters i:nth-child(7) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .igs-nav-announce,
  .igs-nav-announce::after,
  .igs-nav-announce__shine,
  .igs-nav-announce__wave,
  .igs-nav-announce__floaters i,
  .igs-nav-announce__floaters i::before,
  .igs-nav-announce__badge,
  .igs-nav-announce__badge-new,
  .igs-nav-announce__label,
  .igs-nav-announce__label::before,
  .igs-nav-announce__message,
  .igs-nav-announce__sep,
  .igs-nav-announce__actions,
  .igs-nav-announce__cta--learn,
  .igs-launch-slide__title-label {
    animation: none;
    filter: none;
    transition: opacity 0.25s ease;
  }

  .igs-nav-announce.is-visible,
  .igs-nav-announce.is-revealing {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  .igs-nav-announce__floaters i {
    opacity: 0.7;
  }

  .igs-nav-announce__floaters i::before {
    transform: translate(-50%, -50%);
  }

  .igs-nav-announce {
    transform: none;
  }

  .igs-nav-announce:not(.is-visible) {
    display: none;
  }
}

/* ================================================================
   1. NAVIGATION
   ================================================================ */
.site-nav {
  position: sticky;
  top: var(--nav-announce-h, 0px);
  z-index: 7000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  /* Dropdown panel sits below the bar — must not clip (see global.css overflow-x rules) */
  overflow: visible;
}

.nav-inner,
.nav-links {
  overflow: visible;
}

/* Scrolled state — set by nav.js */
.site-nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(0,0,0,0.08);
  border-color: transparent;
}

.site-nav.is-menu-open {
  z-index: 7600;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: var(--container);
  min-width: 0;
  margin: 0 auto;
  padding: 0 32px;
  gap: 24px;
  box-sizing: border-box;
}

/* Logo */
.nav-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.8; }
.nav-logo-img {
  width: auto;
  height: 54px;
  max-width: 248px;
  object-fit: contain;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  border-radius: 6px;
  position: relative;
  transition: color var(--t-fast) ease;
}

/* Underline sweep */
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--color-primary);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav-dropdown { position: relative; }

/* Invisible bridge on the <li> (not the menu) so the cursor can cross
   from “Services” to the panel without leaving the dropdown hit area. */
.nav-dropdown::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: max(100%, 230px);
  height: 12px;
  pointer-events: none;
}

.nav-dropdown:hover::after,
.nav-dropdown.open::after,
.nav-dropdown:focus-within::after {
  pointer-events: auto;
}

.dropdown-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav-dropdown:hover .dropdown-chevron,
.nav-dropdown.open .dropdown-chevron,
.nav-dropdown:focus-within .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 4px;
  transform: translateX(-50%) translateY(4px);
  transform-origin: top center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  max-width: calc(100% - 32px);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease-standard, ease),
              transform 0.22s var(--ease-standard, ease),
              visibility 0s linear 0.22s;
  z-index: 7100;
}

/* Open on hover (standard) or JS `.open` / keyboard `:focus-within` */
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.22s var(--ease-standard, ease),
              transform 0.22s var(--ease-standard, ease),
              visibility 0s linear 0s;
}

@media (max-width: 480px) {
  .dropdown-menu {
    left: auto;
    right: 0;
    transform: translateY(4px);
    transform-origin: top right;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown.open .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    transform: translateY(0);
  }
}

/* Active page highlight (replaces inline styles) */
.dropdown-menu a.is-active-page {
  color: var(--color-primary);
  font-weight: 600;
  background: rgba(10, 102, 194, 0.06);
}
.dropdown-menu a.is-active-page::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--color-primary);
  border-radius: 0 2px 2px 0;
}
.dropdown-menu a { position: relative; }

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  transition: background var(--t-fast) ease, color var(--t-fast) ease;
}

.dropdown-menu a:hover {
  background: var(--color-bg);
  color: var(--color-primary);
}

.dm-icon {
  width: 17px;
  height: 17px;
  opacity: 0.5;
  flex-shrink: 0;
}

.dropdown-menu a:hover .dm-icon { opacity: 0.9; }

/* CTA in nav */
.nav-cta { margin-left: 8px; flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  transition: background var(--t-fast) ease;
}

.nav-hamburger:hover { background: var(--color-bg); }

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s var(--ease-in-out), opacity 0.3s ease, width 0.3s ease;
}

.nav-hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu backdrop */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 7450;
  background: rgba(15, 23, 42, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

html.nav-menu-open,
html.nav-menu-open body {
  overflow: hidden;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: calc(var(--nav-h) + var(--nav-announce-h, 0px));
  left: 0;
  right: 0;
  width: 100%;
  max-height: calc(100dvh - var(--nav-h) - var(--nav-announce-h, 0px));
  max-height: calc(100vh - var(--nav-h) - var(--nav-announce-h, 0px));
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  z-index: 7500;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s var(--ease-out), opacity 0.35s ease, visibility 0.35s ease;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer ul {
  padding: 16px 24px 24px;
  list-style: none;
}

.mobile-drawer ul li {
  border-bottom: 1px solid var(--color-border);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-drawer.open ul li { opacity: 1; transform: translateX(0); }
.mobile-drawer.open ul li:nth-child(1) { transition-delay: 0.05s; }
.mobile-drawer.open ul li:nth-child(2) { transition-delay: 0.10s; }
.mobile-drawer.open ul li:nth-child(3) { transition-delay: 0.15s; }
.mobile-drawer.open ul li:nth-child(4) { transition-delay: 0.20s; }

.mobile-drawer ul li:last-child { border-bottom: none; }

.mobile-drawer ul li a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--t-fast) ease;
}

.mobile-drawer ul li a:hover,
.mobile-drawer ul li a.active { color: var(--color-primary); }

.mobile-sub-toggle {
  width: 100%;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.mobile-sub-toggle::after {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.mobile-sub-toggle.open::after {
  transform: rotate(-135deg);
}

.mobile-sub {
  display: none;
  padding-left: 20px !important;
}

.mobile-sub.is-open {
  display: block;
}

.mobile-sub li { border-bottom: none !important; }
.mobile-sub a {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--color-muted) !important;
  padding: 12px 0 !important;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-sub a:hover { color: var(--color-primary) !important; }

.mobile-cta-wrap {
  padding: 16px 24px 28px;
}

/* ================================================================
   2. BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}

/* Ripple element */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  pointer-events: none;
  animation: rippleEffect 0.6s ease-out forwards;
}

/* Primary — LinkedIn blue; hover #004182 */
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

/* Ghost (outlined light) */
.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-2px);
}

/* Outline dark (on light bg) — solid hover, no gradient sweep */
.btn-outline-dark {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s var(--ease-out),
    box-shadow 0.25s ease;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
  background-color: var(--color-card-hover-bg);
  border-color: var(--color-card-hover-border);
  color: var(--color-card-hover-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 65, 130, 0.1);
}

.btn-outline-dark:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-full { width: 100%; }

/* ================================================================
   3. HERO SECTION (Home)
   ================================================================ */
.hero-section {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  padding: 80px 0 100px;
}

.hero-section > .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%,
      rgba(10,102,194,0.10) 0%,
      transparent 70%),
    radial-gradient(ellipse 40% 30% at 30% 40%,
      rgba(14,138,222,0.06) 0%,
      transparent 60%);
  animation: glowBreath 6s ease-in-out infinite;
}

/* Decorative layer: soft shapes, rings, grid — motion in animations.css */
.hero-optics {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-optic {
  position: absolute;
}

.hero-optic-grid {
  inset: -20%;
  background-image:
    linear-gradient(rgba(10, 102, 194, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 102, 194, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.45;
  mask-image: radial-gradient(ellipse 72% 65% at 50% 42%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 72% 65% at 50% 42%, #000 0%, transparent 72%);
  animation: heroOpticGridDrift 48s linear infinite;
}

.hero-optic-blur {
  border-radius: 50%;
  filter: blur(56px);
  will-change: transform;
}

.hero-optic-blur-a {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  top: 8%;
  right: -8%;
  background: radial-gradient(circle at 35% 35%,
    rgba(10, 102, 194, 0.22) 0%,
    rgba(14, 138, 222, 0.08) 42%,
    transparent 68%);
  animation: heroOpticDriftA 26s ease-in-out infinite alternate;
}

.hero-optic-blur-b {
  width: min(42vw, 380px);
  height: min(42vw, 380px);
  bottom: 5%;
  left: -12%;
  background: radial-gradient(circle at 55% 45%,
    rgba(10, 102, 194, 0.12) 0%,
    rgba(10, 102, 194, 0.04) 50%,
    transparent 70%);
  animation: heroOpticDriftB 32s ease-in-out infinite alternate;
}

.hero-optic-ring {
  display: none;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 50%;
  background: transparent;
  will-change: transform;
}

.hero-optic-ring-a {
  width: clamp(100px, 14vw, 160px);
  height: clamp(100px, 14vw, 160px);
  top: 12%;
  left: 6%;
  animation: heroOpticSway 18s ease-in-out infinite alternate;
}

.hero-optic-ring-b {
  width: clamp(56px, 8vw, 88px);
  height: clamp(56px, 8vw, 88px);
  top: 38%;
  right: 12%;
  border-color: rgba(10, 102, 194, 0.12);
  animation: heroOpticSway 14s ease-in-out infinite alternate-reverse;
}

.hero-optic-arc {
  width: min(220px, 28vw);
  height: min(220px, 28vw);
  left: -6%;
  bottom: -8%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, rgba(10, 102, 194, 0.55) 100%);
  opacity: 0.12;
  animation: heroOpticArcDrift 24s ease-in-out infinite alternate;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(1120px, 100%);
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  container-type: inline-size;
  container-name: hero-inner;
}

.hero-tagline .hero-word {
  max-width: 100%;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 56px);
  font-size: clamp(32px, 8cqi, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin: 0 auto 16px;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(10px);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.35vw, 17px);
  font-size: clamp(14px, 2.4cqi, 17px);
  font-weight: 600;
  line-height: 1.35;
  color: #0a66c2;
  margin: 0 auto 24px;
  padding: 0;
  border: none;
  max-width: 100%;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-align: center;
}

.hero-word {
  display: inline-block;
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
}

.hero-word.space { display: inline; }

.hero-sub {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--color-muted);
  max-width: 540px;
  line-height: 1.65;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(16px);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 48px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: rotate(90deg);
  transform-origin: right center;
}

.scroll-indicator.visible { opacity: 1; }

.scroll-line {
  width: 48px;
  height: 1px;
  background: var(--color-border);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  animation: scrollLinePulse 2s ease infinite;
}

.scroll-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-muted);
  white-space: nowrap;
}

/* ================================================================
   4. SERVICE ROWS (Home + Services pages)
   ================================================================ */
.services-list {
  border-top: 1px solid var(--color-border);
  padding-inline-end: 8px;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 6px 32px 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.3s ease;
  cursor: pointer;
  overflow: visible;
}

.service-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-card-hover-bg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
  z-index: 0;
}

.service-row:hover::before { transform: scaleX(1); }

.service-row > * { position: relative; z-index: 1; }

.service-row-number {
  font-family: var(--font-display);
  font-size: clamp(60px, 6vw, 96px);
  font-weight: 800;
  color: rgba(25, 55, 100, 0.06);
  line-height: 1;
  min-width: 110px;
  text-align: right;
  flex-shrink: 0;
  transition: color 0.35s ease;
  user-select: none;
}

.service-row:hover .service-row-number {
  color: rgba(10,102,194,0.15);
}

.service-row-icon {
  width: 52px;
  height: 52px;
  background: rgba(10,102,194,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-row-icon svg { width: 26px; height: 26px; }
.service-row:hover .service-row-icon { background: rgba(10,102,194,0.12); transform: scale(1.05); }

.service-row-body { flex: 1; min-width: 0; }

.service-row-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
}

/* Underline sweep on hover */
.service-row-name::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-row:hover .service-row-name::after { transform: scaleX(1); }

.service-row:hover .service-row-name {
  color: var(--color-card-hover-text);
}

.service-row:hover .service-row-name::after {
  background: var(--color-card-hover-border);
}

.service-row:hover .service-row-desc {
  color: var(--color-card-hover-text);
}

.service-row-desc {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 500px;
}

.service-row-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin-top: 10px;
  overflow: hidden;
  max-width: 100%;
}

.svc-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary);
  background: none;
  padding: 0;
  border: none;
  border-radius: 0;
}

.service-row-tags .svc-tag + .svc-tag::before {
  content: '·';
  margin: 0 8px;
  font-weight: 400;
  color: rgba(10, 102, 194, 0.45);
}

.service-row-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.service-row-arrow svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-row:hover .service-row-arrow {
  border-color: var(--color-cta-hover);
  background: var(--color-cta-hover);
  color: white;
}

.service-row:hover .service-row-arrow svg { transform: translateX(2px); }

/* ================================================================
   5. STATS BAR
   ================================================================ */
.stats-bar {
  background: #0a66c2;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 0 40px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 80px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  display: block;
  transition: filter 1.8s ease;
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  display: block;
}

/* Progress line under stat */
.stat-progress {
  width: 0%;
  height: 2px;
  background: rgba(255,255,255,0.5);
  margin: 12px auto 0;
  transition: width 1.8s var(--ease-out);
  max-width: 80px;
}

.stat-item.counted .stat-progress { width: 80px; }

/* ================================================================
   5b. UNIFIED CARD HOVER (square + rectangular — layout unchanged)
   Square cards: thick top accent | Rectangular: thick left accent
   ================================================================ */
.why-card,
.value-card,
.persona-card,
.team-card,
.testimonial-card,
.card {
  box-sizing: border-box;
  border: 1px solid var(--color-border);
  border-top-width: var(--card-accent-w);
  border-top-color: transparent;
  transition: var(--card-hover-transition);
}

/* Rectangular Key Offerings + wide service rows — accent on the left */
.offering-item,
.service-full-card,
.why-row {
  box-sizing: border-box;
  border: 1px solid var(--color-border);
  border-left-width: var(--card-accent-w);
  border-left-color: transparent;
  transition: var(--card-hover-transition);
}

.job-card {
  box-sizing: border-box;
  border: 1px solid var(--color-border);
  border-top-width: var(--card-accent-w);
  border-top-color: var(--color-primary);
  transition: var(--card-hover-transition);
}

.card-icon,
.value-icon,
.offering-icon,
.persona-icon,
.service-full-card .svc-icon,
.why-row-icon {
  transition: background-color 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

.why-row-text h4,
.why-row-text p {
  transition: color 0.35s ease;
}

.offering-text h4,
.offering-text p {
  transition: color 0.35s ease;
}

@media (hover: hover) {
  .why-card:hover,
  .why-card:focus-within,
  .value-card:hover,
  .value-card:focus-within,
  .persona-card:hover,
  .persona-card:focus-within,
  .team-card:hover,
  .team-card:focus-within,
  .testimonial-card:hover,
  .testimonial-card:focus-within,
  .job-card:hover,
  .job-card:focus-within,
  .card:hover,
  .card:focus-within {
    transform: translateY(var(--card-hover-y));
    box-shadow: var(--shadow-lg);
    background-color: var(--color-card-hover-bg);
    border-color: var(--color-card-hover-border);
    border-top-color: var(--color-card-hover-border);
    border-top-width: var(--card-accent-w);
  }

  .offering-item:hover,
  .offering-item:focus-within,
  .service-full-card:hover,
  .service-full-card:focus-within,
  .why-row:hover,
  .why-row:focus-within {
    transform: translateY(var(--card-hover-y));
    box-shadow: var(--shadow-lg);
    background-color: var(--color-card-hover-bg);
    border-color: var(--color-card-hover-border);
    border-left-color: var(--color-card-hover-border);
    border-left-width: var(--card-accent-w);
    border-top-width: 1px;
    border-top-color: var(--color-card-hover-border);
  }

  .why-card:hover h3,
  .why-card:hover p,
  .value-card:hover h3,
  .value-card:hover p,
  .offering-item:hover .offering-text h4,
  .offering-item:hover .offering-text p,
  .persona-card:hover h3,
  .persona-card:hover p,
  .team-card:hover h3,
  .team-card:hover p,
  .team-card:hover .team-title,
  .testimonial-card:hover .testimonial-quote,
  .testimonial-card:hover .author-info strong,
  .testimonial-card:hover .author-info span,
  .job-card:hover .job-card-title,
  .job-card:hover .job-card-dept,
  .job-card:hover .job-card-type,
  .job-card:hover .job-card-meta,
  .job-card:hover .job-card-summary,
  .job-card:hover .job-card-desc,
  .job-card:hover .job-card-reqs,
  .service-full-card:hover .svc-body h3,
  .service-full-card:hover .svc-body p,
  .card:hover h3,
  .card:hover p,
  .why-row:hover .why-row-text h4,
  .why-row:hover .why-row-text p {
    color: var(--color-card-hover-text);
  }

  .why-card:hover .card-icon,
  .value-card:hover .value-icon,
  .offering-item:hover .offering-icon,
  .persona-card:hover .persona-icon,
  .service-full-card:hover .svc-icon,
  .why-row:hover .why-row-icon {
    background-color: rgba(10, 102, 194, 0.12);
    transform: scale(1.05);
  }

}

.why-card:focus-within h3,
.why-card:focus-within p,
.value-card:focus-within h3,
.value-card:focus-within p,
.offering-item:focus-within .offering-text h4,
.offering-item:focus-within .offering-text p,
.persona-card:focus-within h3,
.persona-card:focus-within p,
.team-card:focus-within h3,
.team-card:focus-within p,
.job-card:focus-within .job-card-title,
.service-full-card:focus-within .svc-body h3,
.service-full-card:focus-within .svc-body p,
.card:focus-within h3,
.card:focus-within p,
.why-row:focus-within .why-row-text h4,
.why-row:focus-within .why-row-text p {
  color: var(--color-card-hover-text);
}

@media (prefers-reduced-motion: reduce) {
  .why-card,
  .value-card,
  .offering-item,
  .persona-card,
  .team-card,
  .testimonial-card,
  .job-card,
  .service-full-card,
  .card,
  .why-row {
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .why-card:hover,
  .value-card:hover,
  .offering-item:hover,
  .persona-card:hover,
  .team-card:hover,
  .testimonial-card:hover,
  .job-card:hover,
  .service-full-card:hover,
  .card:hover,
  .why-row:hover {
    transform: none;
  }

  .why-card:hover .card-icon,
  .value-card:hover .value-icon,
  .offering-item:hover .offering-icon,
  .persona-card:hover .persona-icon,
  .service-full-card:hover .svc-icon,
  .why-row:hover .why-row-icon {
    transform: none;
  }
}

/* ================================================================
   6. WHY IGS CARDS
   ================================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.why-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(10,102,194,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 18px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.card-icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 16px; margin-bottom: 8px; }
.why-card p  { font-size: 13px; color: var(--color-muted); line-height: 1.6; }

/* ================================================================
   7. OUR ENGAGEMENT MODEL — split layout + horizontal scroll
   ================================================================ */
.engagement-section {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.engagement-layout {
  display: flex;
  flex-direction: column;
  min-height: auto;
}

.engagement-aside {
  padding: 40px 24px 24px;
  text-align: center;
}

.engagement-aside .section-label {
  opacity: 1;
  transform: none;
  text-align: center;
}

.engagement-aside .t-section {
  text-align: center;
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.engagement-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.engagement-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(10, 102, 194, 0.22);
  transition: transform 0.3s ease, background 0.3s ease;
}

.engagement-dot.is-active {
  background: var(--color-primary);
  transform: scale(1.25);
}

.engagement-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.engagement-scroll-cue {
  display: none;
}

.engagement-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0 20px 48px;
}

.engagement-step {
  position: relative;
  list-style: none;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
}

.engagement-step__body {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.engagement-step__head {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: clamp(12px, 3vw, 20px);
  margin-bottom: 16px;
}

.engagement-step__bg-num {
  flex: 0 0 auto;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 13vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--color-primary);
  opacity: 0.14;
  user-select: none;
  pointer-events: none;
}

.engagement-step.active .engagement-step__bg-num {
  opacity: 0.2;
}

.engagement-step__title {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 36px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
  margin: 0;
  padding-left: 0;
  letter-spacing: -0.02em;
}

.engagement-step__text {
  font-size: clamp(16px, 3.8vw, 18px);
  line-height: 1.65;
  color: var(--color-muted);
  margin: 0;
  max-width: 100%;
}

/* Desktop: fixed left title + horizontal step panels */
@media (min-width: 768px) {
  .engagement-layout {
    flex-direction: row;
    align-items: stretch;
    min-height: 100vh;
  }

  .engagement-aside {
    flex: 0 0 clamp(280px, 30vw, 380px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 28px 48px clamp(24px, 4vw, 56px);
    text-align: left;
    background: var(--color-bg);
    z-index: 12;
    pointer-events: none;
  }

  .engagement-aside .section-label {
    text-align: left;
  }

  .engagement-aside .t-section {
    text-align: left;
    font-size: clamp(30px, 2.8vw, 42px);
    max-width: 280px;
  }

  .engagement-dots {
    justify-content: flex-start;
    margin-top: 28px;
  }

  .engagement-viewport {
    flex: 1;
    min-width: 0;
    min-height: 100vh;
  }

  .engagement-viewport::before,
  .engagement-viewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(48px, 8vw, 96px);
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.45s ease;
  }

  .engagement-viewport::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg) 0%, transparent 100%);
    opacity: 0;
  }

  .engagement-viewport::after {
    right: 0;
    background: linear-gradient(270deg, var(--color-bg) 12%, transparent 100%);
    opacity: 1;
    animation: engagement-edge-pulse 2.4s ease-in-out infinite;
  }

  .engagement-section--mid .engagement-viewport::before {
    opacity: 1;
  }

  .engagement-section--end .engagement-viewport::after {
    opacity: 0;
    animation: none;
  }

  @keyframes engagement-edge-pulse {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
  }

  .engagement-scroll-cue {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 32px;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
  }

  .engagement-scroll-cue__mouse {
    display: block;
    width: 26px;
    height: 40px;
    border: 2px solid rgba(10, 102, 194, 0.45);
    border-radius: 14px;
    position: relative;
  }

  .engagement-scroll-cue__wheel {
    position: absolute;
    left: 50%;
    top: 8px;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    border-radius: 2px;
    background: var(--color-primary);
    animation: engagement-scroll-wheel 1.6s ease-in-out infinite;
  }

  @keyframes engagement-scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    70% { transform: translateY(12px); opacity: 0.2; }
    100% { transform: translateY(0); opacity: 1; }
  }

  .engagement-scroll-cue__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-muted);
    max-width: 200px;
    line-height: 1.45;
  }

  .engagement-scroll-cue__slide {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
  }

  .engagement-scroll-cue__arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.7;
    animation: engagement-arrow-nudge 1.8s ease-in-out infinite;
  }

  .engagement-scroll-cue__arrow--right {
    animation-delay: 0.9s;
  }

  @keyframes engagement-arrow-nudge {
    0%, 100% { transform: translateX(0); opacity: 0.45; }
    50% { transform: translateX(3px); opacity: 1; }
  }

  .engagement-scroll-cue__track {
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 2px;
    background: rgba(10, 102, 194, 0.18);
    overflow: hidden;
    position: relative;
  }

  .engagement-scroll-cue__thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 100%;
    border-radius: 2px;
    background: var(--color-primary);
    animation: engagement-thumb-slide 1.8s ease-in-out infinite;
  }

  @keyframes engagement-thumb-slide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(38px); }
  }

  .engagement-section--engaged .engagement-scroll-cue {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
  }

  .engagement-section--engaged .engagement-viewport::after {
    opacity: 0;
    animation: none;
  }

  .engagement-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: max-content;
    height: 100%;
    min-height: 100vh;
    padding: 0;
    gap: 0;
  }

  .engagement-step {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 0 clamp(40px, 6vw, 88px) 0 clamp(32px, 5vw, 72px);
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .engagement-step__head {
    margin-bottom: clamp(20px, 2.5vh, 32px);
    gap: clamp(16px, 2vw, 28px);
  }

  .engagement-step__bg-num {
    font-size: clamp(72px, 9vw, 112px);
    opacity: 0.12;
  }

  .engagement-step.active .engagement-step__bg-num {
    opacity: 0.18;
  }

  .engagement-step__body {
    position: relative;
    z-index: 1;
    max-width: min(680px, 88%);
    padding-top: 8vh;
    padding-bottom: 8vh;
  }

  .engagement-step__title {
    font-size: clamp(44px, 5.5vw, 72px);
  }

  .engagement-step__text {
    font-size: clamp(18px, 1.75vw, 24px);
    line-height: 1.65;
    max-width: min(640px, 100%);
    color: var(--color-text);
    opacity: 0.72;
  }
}

@media (max-width: 767px) {
  .engagement-scroll-cue {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .engagement-scroll-cue__wheel,
  .engagement-scroll-cue__thumb,
  .engagement-scroll-cue__arrow,
  .engagement-viewport::after {
    animation: none;
  }

  .engagement-viewport::after {
    opacity: 0.75;
  }
}

/* ================================================================
   8. TESTIMONIALS
   ================================================================ */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 96px;
  color: var(--color-border);
  font-family: Georgia, serif;
  line-height: 1;
  leading-trim: both;
  text-edge: cap;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.author-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--color-text); }
.author-info span   { font-size: 12px; color: var(--color-muted); }

.testimonials-note {
  text-align: center;
  font-style: italic;
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 32px;
}

/* ================================================================
   9. CTA BAND (pre-footer — distinct from .site-footer)
   ================================================================ */
.cta-band {
  background: #0a66c2;
  padding: 88px 0 92px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 56px;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-band p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin: 0 auto;
  max-width: 36em;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: center;
  align-items: center;
  margin-top: 36px;
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
}

.cta-band .btn {
  display: inline-flex !important;
  min-width: 168px;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 1;
}

.cta-band .btn-primary {
  background: var(--color-white);
  color: #0a66c2;
  border: 2px solid var(--color-white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
}

.cta-band .btn-primary:hover {
  background: var(--color-primary-50);
  color: var(--color-cta-hover);
  border-color: var(--color-primary-50);
  box-shadow: 0 8px 28px rgba(0,0,0,0.16);
}

.cta-band .btn-ghost {
  border-color: rgba(255,255,255,0.75);
  color: var(--color-white);
}

.cta-band .btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  border-color: var(--color-white);
}

/* ================================================================
   10. PAGE HERO (service/inner pages)
   ================================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
  padding: 80px 0 72px;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(14,138,222,0.2) 0%, transparent 60%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.page-hero h1,
.page-hero p {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.page-hero-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.page-hero-icon svg { width: 34px; height: 34px; color: white; }
.page-hero h1 { color: white; margin-bottom: 16px; font-size: clamp(32px, 4vw, 52px); }
.page-hero p  { font-size: 18px; opacity: 0.85; max-width: 560px; color: white; }

/* Breadcrumb + eyebrow on blue hero (avoid primary-blue-on-blue) */
.page-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 20px;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.page-hero .breadcrumb a:hover {
  color: #fff;
  opacity: 1;
}

.page-hero .breadcrumb span {
  color: rgba(255, 255, 255, 0.55);
  opacity: 1;
}

.page-hero .section-label {
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
  transform: none;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  padding: 0;
  background: none;
  border: none;
}

/* ================================================================
   11. PAGE HEADER (non-gradient inner pages)
   ================================================================ */
.page-header {
  background: var(--color-bg);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 { color: var(--color-text); margin-bottom: 12px; font-size: clamp(28px, 4vw, 44px); }
.page-header p  { font-size: 17px; color: var(--color-muted); max-width: 560px; }

/* ================================================================
   12. SERVICE OVERVIEW SECTION
   ================================================================ */
.overview-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

.overview-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.overview-body p {
  font-size: 16px;
  color: var(--color-muted);
  margin-bottom: 18px;
  line-height: 1.8;
}

/* ================================================================
   13. OFFERING GRID
   ================================================================ */
.offering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Rectangular Key Offerings — flex layout; hover + top accent via unified block */
.offering-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 22px 20px;
}

.offering-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(10,102,194,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

.offering-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}

.offering-text {
  flex: 1;
  min-width: 0;
}

.offering-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--color-text); }
.offering-text p  { font-size: 13px; color: var(--color-muted); line-height: 1.55; margin: 0; }

/* Service practice subsections (e.g. Channel Sales 4a–4c) */
.practice-blocks { max-width: 920px; margin: 0 auto; }

.practice-block {
  margin-bottom: 52px;
}

.practice-block:last-child {
  margin-bottom: 0;
}

.service-compliance-note {
  max-width: 920px;
  margin: 40px auto 0;
  padding: 20px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-muted);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-card);
}

.service-compliance-note strong {
  color: var(--color-text);
  font-weight: 700;
}

.practice-block h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.practice-block > p {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.service-bullet-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  padding: 0;
  margin: 0;
}

.service-bullet-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.6;
}

.service-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
}

@media (max-width: 720px) {
  .service-bullet-list {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   14. PERSONA CARDS
   ================================================================ */
.persona-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  text-align: center;
}

.persona-emoji { display: none; }
.persona-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.persona-card p  { font-size: 14px; color: var(--color-muted); line-height: 1.65; }

/* ================================================================
   14b. CAREERS — JOB LISTINGS
   ================================================================ */
.jobs-loading,
.jobs-error {
  text-align: center;
  color: var(--color-muted);
  font-size: 15px;
  margin: 0 0 24px;
}

.jobs-error a { color: var(--color-primary); font-weight: 600; }

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.jobs-empty {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
}

.jobs-empty p {
  color: var(--color-muted);
  margin-bottom: 20px;
}

.job-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.job-card-dept {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.job-card-type {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 600;
}

.job-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.job-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-muted);
  margin: 0;
}

.job-card-meta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.job-card-summary {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}

.job-card-desc {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.65;
  white-space: pre-wrap;
}

.job-card-reqs {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.55;
}

.job-card-apply {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 640px) {
  .jobs-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   15. CTA STRIP (service pages)
   ================================================================ */
.cta-strip {
  background: #0a66c2;
  padding: 80px 0 84px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 56px;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-strip > .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.cta-strip h2 {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 14px;
  line-height: 1.2;
}

.cta-strip p {
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 36em;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.cta-strip .btn-primary {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.cta-strip .btn-primary:hover {
  background: var(--color-primary-50);
  color: var(--color-cta-hover);
  border-color: var(--color-primary-50);
}

.cta-strip .btn-ghost {
  border-color: rgba(255,255,255,0.75);
}

.cta-strip .btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  border-color: var(--color-white);
}

/* Solid brand blue — stats + pre-footer CTA + service page CTA (no gradient wash) */
.stats-bar,
.cta-band,
.cta-strip {
  background-color: #0a66c2 !important;
  background-image: none !important;
}

.stats-bar::before,
.cta-band::before,
.cta-strip::before {
  background-color: transparent !important;
}

/* ================================================================
   16. SERVICES OVERVIEW PAGE — full-width cards
   ================================================================ */
.service-full-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 20px;
}

.service-full-card .svc-icon {
  width: 72px;
  height: 72px;
  background: rgba(10,102,194,0.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.service-full-card .svc-icon svg { width: 36px; height: 36px; }

.service-full-card .svc-body h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.service-full-card .svc-body p  { font-size: 15px; color: var(--color-muted); margin-bottom: 14px; line-height: 1.65; }

.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-full-card .svc-action { flex-shrink: 0; }

/* Comparison table */
.comparison-table-wrap {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-card);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--color-border);
}

.comparison-table { width: 100%; border-collapse: collapse; min-width: 480px; }

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}

.comparison-table th {
  background: var(--color-primary);
  color: white;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-display);
}

.comparison-table th:first-child,
.comparison-table td:first-child { text-align: left; font-weight: 600; }

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: rgba(10,102,194,0.025); }

.cmp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0 auto;
  vertical-align: middle;
}

.cmp-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.cmp-yes { color: var(--color-primary); }
.cmp-no  { color: #94a3b8; }

.comparison-table td.cmp-cell { vertical-align: middle; }

.comparison-table td.cmp-text {
  color: var(--color-muted);
  font-weight: 500;
}

.persona-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(10, 102, 194, 0.08);
  color: var(--color-primary);
}

.persona-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.btn-arrow {
  display: inline-block;
  margin-left: 0.2em;
}

/* ================================================================
   17. ABOUT PAGE
   ================================================================ */
.mission-block {
  background: var(--color-bg);
  padding: var(--section-py) 0;
}

.mission-quote { max-width: 800px; margin: 0 auto; text-align: center; }

.mission-quote blockquote {
  font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
  font-size: clamp(20px, 2.25vw, 28px);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
  color: var(--color-ink-700, #193764);
  line-height: 1.68;
  max-width: 38em;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative;
}

.mission-quote blockquote::before,
.mission-quote blockquote::after {
  content: '"';
  font-family: inherit;
  font-size: clamp(2.75rem, 7vw, 4.25rem);
  font-weight: 300;
  color: var(--color-primary);
  opacity: 0.14;
  line-height: 0;
  vertical-align: -0.22em;
}

.mission-quote cite {
  display: block;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-style: normal;
  color: var(--color-muted);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.value-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 40px 28px;
  text-align: center;
}

.value-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(10,102,194,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-primary);
}

.value-icon svg { width: 30px; height: 30px; }
.value-card h3  { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.value-card p   { font-size: 14px; color: var(--color-muted); line-height: 1.65; }

.team-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 40px 28px;
  text-align: center;
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-display);
}

.team-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-title   { font-size: 13px; color: var(--color-muted); margin-bottom: 18px; }

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  transition: opacity 0.2s;
}

.team-linkedin:hover { opacity: 0.7; }
.team-linkedin svg { width: 16px; height: 16px; }

/* Founder / single leadership profile (About page) */
.team-founder-section .section-header .t-section {
  color: #0a66c2;
  color: var(--color-primary, #0a66c2);
}

.team-founder {
  max-width: 960px;
  margin: 0 auto;
}
.team-founder-card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  text-align: left;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.team-founder-photo-wrap {
  flex-shrink: 0;
}
.team-founder-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  background: var(--color-primary-50, #eaf2fb);
  border: 4px solid rgba(10, 102, 194, 0.12);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.team-founder-body {
  flex: 1;
  min-width: 220px;
}
.team-founder-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.team-founder-body .team-title {
  margin-bottom: 14px;
}
.team-founder-message {
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--color-border);
}
.team-founder-message__title {
  margin: 0 0 18px;
  padding-left: 14px;
  border-left: 4px solid var(--color-primary);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-primary-900, #002a52);
}
.team-founder-message p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 14px;
}
.team-founder-message p:last-of-type {
  margin-bottom: 0;
}
.team-founder-message__sign {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}
.team-founder-message__sign p {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-muted);
}
.team-founder-message__name {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--color-text) !important;
}
.team-founder-message__sign p:last-child {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .team-founder-card {
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
  }
  .team-founder-body {
    width: 100%;
    text-align: center;
  }
  .team-founder-message {
    text-align: left;
    width: 100%;
  }
  .team-founder-message__title {
    text-align: left;
  }
}

.why-rows {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  cursor: default;
}

.why-row-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(10, 102, 194, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

.why-row-icon svg { width: 22px; height: 22px; }
.why-row-text h4 { font-size: 16px; font-weight: 700; margin-bottom: 5px; color: var(--color-text); }
.why-row-text p  { font-size: 14px; color: var(--color-muted); }

/* ================================================================
   18. CONTACT FORM — Floating Labels
   ================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.contact-layout__col {
  min-width: 0;
}

.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(10,102,194,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: background 0.3s, transform 0.3s;
}

.contact-info-block:hover .contact-info-icon { background: rgba(10,102,194,0.12); transform: scale(1.05); }
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-text h4  { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: 14px; color: var(--color-muted); transition: color 0.2s; }
.contact-info-text a:hover { color: var(--color-primary); }
.contact-info-text .gbp-link { color: var(--color-primary); font-weight: 600; }
.contact-info-text .gbp-link:hover { text-decoration: underline; }

.map-container {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-top: 32px;
  min-height: 260px;
  aspect-ratio: 600 / 260;
}

.map-container iframe { width: 100%; height: 260px; display: block; border: 0; }

/* Contact form card */
.contact-form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 44px 40px;
}

.contact-form h2 { margin-bottom: 6px; }
.contact-form > p { font-size: 14px; color: var(--color-muted); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Floating label group */
.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease, background 0.2s ease, padding 0.2s ease;
  pointer-events: none;
  background: transparent;
  padding: 0;
  white-space: nowrap;
  z-index: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 22px 16px 8px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235f6b76' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* Float the label up on focus or when filled */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group.has-value select ~ label {
  top: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary);
  background: white;
  padding: 0 4px;
  left: 12px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(10,102,194,0.1);
}

/* Validation */
.form-error {
  font-size: 12px;
  color: #e53e3e;
  margin-top: 5px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #e53e3e;
}

.form-group.has-error .form-error { display: block; }

/* Submit button */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 12px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  background: var(--color-primary);
  box-shadow: 0 4px 14px rgba(10, 102, 194, 0.28);
  transition:
    background 0.22s var(--ease-out),
    transform 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out);
}

.btn-submit__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit__label {
  line-height: 1;
}

.btn-submit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.22s var(--ease-out);
}

.btn-submit__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.btn-submit:hover:not(:disabled) {
  background: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 65, 130, 0.38);
}

.btn-submit:hover:not(:disabled) .btn-submit__icon {
  transform: translate(2px, -2px);
}

.btn-submit:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.25);
}

.btn-submit:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn-submit.is-loading .btn-submit__icon svg {
  display: none;
}

.btn-submit.is-loading .btn-submit__icon::after {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSubmitSpin 0.7s linear infinite;
}

@keyframes btnSubmitSpin {
  to { transform: rotate(360deg); }
}

.btn-submit[disabled],
.btn-submit.is-loading {
  opacity: 0.88;
  cursor: wait;
  transform: none;
  box-shadow: 0 2px 8px rgba(10, 102, 194, 0.18);
  filter: none;
}

.btn-submit[disabled] .btn-submit__icon,
.btn-submit.is-loading .btn-submit__icon {
  transform: none;
}

.form-status {
  margin-top: 12px;
  min-height: 18px;
  font-size: 13px;
  color: var(--color-muted);
}

.form-status.is-error { color: #b42318; }
.form-status.is-success { color: var(--color-primary); }

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.visible { display: block; }

.form-success .success-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(10,102,194,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-primary);
}

.form-success .success-icon svg { width: 34px; height: 34px; }
.form-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.form-success p  { font-size: 15px; color: var(--color-muted); }

/* ================================================================
   19. FOOTER — brand navy + LinkedIn accents (layout unchanged)
   ================================================================ */
.site-footer {
  background: linear-gradient(
    180deg,
    var(--color-footer-bg-soft) 0%,
    var(--color-footer-bg) 18%,
    var(--color-footer-bg) 100%
  );
  color: var(--color-footer-text);
  padding: 80px 0 0;
  border-top: 3px solid var(--color-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  margin-bottom: 14px;
}

.footer-logo picture {
  display: block;
  line-height: 0;
}

.footer-logo-img {
  width: auto;
  height: 58px;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  color: var(--color-footer-meta);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 28em;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a,
.footer-social .footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: var(--color-footer-social-bg);
  border: 1px solid var(--color-footer-border);
  color: var(--color-primary-50, #eaf2fb);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-out);
}

.footer-social a:hover {
  background: var(--color-footer-social-hover);
  border-color: var(--color-footer-social-hover);
  color: var(--color-white);
  transform: scale(1.1) translateY(-2px);
}

.footer-social .footer-social-icon {
  cursor: default;
  pointer-events: none;
}

.footer-social svg { width: 17px; height: 17px; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-footer-heading);
  margin-bottom: 22px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: var(--color-footer-link);
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--color-footer-link-hover);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--color-footer-link);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-footer-icon);
}

.footer-contact-item a {
  color: var(--color-footer-link);
  transition: color 0.2s;
  word-break: break-all;
  overflow-wrap: anywhere;
}
.footer-contact-item a:hover {
  color: var(--color-footer-link-hover);
}

.footer-bottom {
  border-top: 1px solid var(--color-footer-border);
  margin-top: 64px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--color-footer-meta);
}

.footer-bottom-links { display: flex; gap: 24px; }

.footer-bottom-links a {
  font-size: 13px;
  color: var(--color-footer-meta);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--color-footer-link-hover);
}

.footer-credit {
  flex-basis: 100%;
  margin: 0;
  padding-top: 4px;
  text-align: center;
  font-size: 12px;
  color: var(--color-footer-meta);
}

.footer-credit a {
  color: var(--color-footer-link);
  text-decoration: none;
  border-bottom: none;
  transition: color 0.2s;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--color-footer-link-hover);
  text-decoration: none;
}

.footer-credit sup {
  font-size: 0.55em;
  font-weight: 600;
  vertical-align: super;
  line-height: 0;
  letter-spacing: 0.02em;
}

.footer-credit--locked {
  visibility: hidden;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}

/* Torch reveal — credit hidden until cursor spotlight passes over */
.footer-credit--torch {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 24px;
  --torch-x: 50%;
  --torch-y: 50%;
  --torch-r: 92px;
  cursor: default;
}

.footer-credit__dim {
  display: block;
  color: var(--color-footer-bg);
  opacity: 1;
  user-select: none;
  pointer-events: none;
  line-height: 1.5;
}

.footer-credit__reveal {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: inherit;
  font-size: inherit;
  line-height: 1.5;
  white-space: nowrap;
  color: var(--color-footer-meta);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.12s ease;
  -webkit-mask-image: radial-gradient(
    circle var(--torch-r) at var(--torch-x) var(--torch-y),
    #000 0%,
    rgba(0, 0, 0, 0.9) 32%,
    transparent 70%
  );
  mask-image: radial-gradient(
    circle var(--torch-r) at var(--torch-x) var(--torch-y),
    #000 0%,
    rgba(0, 0, 0, 0.9) 32%,
    transparent 70%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.footer-credit--torch.is-torching .footer-credit__reveal {
  opacity: 1;
  pointer-events: auto;
}

.footer-credit__reveal a {
  color: var(--color-footer-link);
  text-decoration: none;
  pointer-events: auto;
}

.footer-credit__reveal a:hover,
.footer-credit__reveal a:focus-visible {
  color: var(--color-footer-link-hover);
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  .footer-credit--torch .footer-credit__dim {
    display: none;
  }

  .footer-credit--torch .footer-credit__reveal {
    position: static;
    opacity: 1;
    pointer-events: auto;
    -webkit-mask-image: none;
    mask-image: none;
    padding: 0;
  }
}

/* ================================================================
   COMPACT DESKTOP — Windows display scale 125%–175% (1080p/1440p)
   Effective viewport ≈ 1100px–1540px; keeps layout stable without UI redesign.
   ================================================================ */
@media (max-width: 1400px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-ctas,
  .cta-band__actions,
  .cta-strip__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: min(100%, 36rem);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas .btn,
  .cta-band__actions .btn,
  .cta-strip__actions .btn {
    flex: 1 1 11rem;
    min-width: min(100%, 11rem);
    max-width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .cta-band .btn {
    min-width: 0 !important;
  }
}

@media (max-width: 1200px) {
  .hero-ctas,
  .cta-band__actions,
  .cta-strip__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: min(100%, 22rem);
  }

  .hero-ctas .btn,
  .cta-band__actions .btn,
  .cta-strip__actions .btn {
    width: 100%;
    flex: none;
  }
}

/* ================================================================
   20. RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 20px; gap: 12px; }

  .hero-tagline {
    letter-spacing: 0.06em;
  }

  .hero-tagline .hero-word {
    display: block;
    white-space: normal;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-inner {
    container-type: normal;
    padding: 0;
  }

  .hero-section { padding: 60px 0 80px; min-height: auto; }
  .scroll-indicator { display: none; }

  .overview-section { grid-template-columns: 1fr; gap: 36px; }
  .overview-headline { position: static; }

  .offering-grid { grid-template-columns: 1fr; }

  .service-full-card { grid-template-columns: 64px 1fr; }
  .service-full-card .svc-action { grid-column: 1 / -1; }

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer: stack + FAB safe area (no white gap under footer) */
  .site-footer {
    padding-bottom: calc(
      28px + var(--igs-fab-stack-h, 148px) + env(safe-area-inset-bottom, 0px)
    );
  }

  .cta-band,
  .cta-strip {
    margin-bottom: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    margin-top: 48px;
    padding: 20px 16px 0;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-bottom p {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 14px;
    width: 100%;
    max-width: 100%;
  }

  .footer-bottom-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 6px 8px;
    white-space: nowrap;
  }

  .footer-credit {
    flex-basis: 100%;
    width: 100%;
    padding: 12px 8px 0;
    overflow-wrap: anywhere;
  }

  .footer-contact-item span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* Equal-width stacked CTAs (hero, CTA band/strip, forms) */
  .hero-ctas,
  .cta-band__actions,
  .cta-strip__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: min(100%, 22rem);
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }

  .hero-ctas .btn,
  .cta-band__actions .btn,
  .cta-strip__actions .btn,
  .mobile-cta-wrap .btn,
  .contact-form button[type="submit"],
  .contact-form .btn-submit,
  .service-full-card .svc-action .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0 !important;
    min-height: 48px;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .cta-band .btn {
    min-width: 0 !important;
  }
}

@media (max-width: 640px) {
  .nav-inner { padding: 0 16px; }
  .nav-logo-img { height: 42px; max-width: min(200px, 58vw); }
  .footer-logo-img { height: 48px; max-width: 240px; }

  .hero-brand {
    font-size: clamp(26px, 7.2vw, 40px);
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-tagline {
    letter-spacing: 0.05em;
    font-size: clamp(11px, 3.1vw, 14px);
    line-height: 1.45;
    padding: 0 2px;
  }

  .hero-tagline .hero-word {
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    max-width: 100%;
  }

  .hero-sub {
    max-width: 100%;
    font-size: clamp(15px, 4vw, 17px);
    padding: 0 2px;
  }

  .hero-section { padding: 48px 0 72px; }

  .service-row { gap: 16px; }
  .service-row-number { font-size: 48px; min-width: 56px; }
  .service-row-icon { display: none; }
  .service-row-tags { gap: 6px; }
  .svc-tag:nth-child(n+3) { display: none; }

  .stats-grid { grid-template-columns: 1fr; gap: 36px; }
  .stat-item + .stat-item::before { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .service-full-card { grid-template-columns: 1fr; }
  .service-full-card .svc-icon { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 28px 20px; }

  .why-grid { grid-template-columns: 1fr; }

  .mission-quote blockquote { padding: 0 12px; }

  .hero-section { padding: 32px 0 56px; }
  .page-hero { padding: 40px 0 36px; }
  .cta-band { padding: 64px 0; }
  .cta-strip { padding: 56px 0; }

  .comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    margin-inline: -20px;
    border-left: none;
    border-right: none;
  }
  .comparison-table { min-width: 0; width: 100%; }
  .comparison-table td,
  .comparison-table th {
    font-size: 14px;
    padding: 10px 12px;
  }

  .footer-bottom p,
  .footer-bottom-links a,
  .footer-credit,
  .footer-credit a {
    font-size: 13px;
  }

  .why-card p,
  .offering-text p,
  .testimonials-note,
  .author-info span {
    font-size: 14px;
  }

  .team-founder-body {
    min-width: 0;
  }
}

/* ================================================================
   AUTOFILL — prevent yellow flash + float label on Chrome autofill
   ================================================================ */
.form-group input:-webkit-autofill ~ label,
.form-group input:-webkit-autofill:hover ~ label,
.form-group input:-webkit-autofill:focus ~ label {
  top: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary);
  background: white;
  padding: 0 4px;
  left: 12px;
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px white inset;
  box-shadow: 0 0 0 1000px white inset;
  -webkit-text-fill-color: var(--color-text);
  transition: background-color 5000s ease-in-out 0s;
}

/* ================================================================
   TRUST STATEMENT (homepage — branded trust band)
   ================================================================ */
.trust-statement {
  padding: 0;
  overflow: hidden;
}

.trust-statement__band {
  position: relative;
  padding: clamp(56px, 8vh, 88px) 0;
  background: linear-gradient(
    180deg,
    var(--color-white) 0%,
    var(--color-primary-50, #eaf2fb) 42%,
    rgba(10, 102, 194, 0.08) 100%
  );
  border-top: 1px solid rgba(10, 102, 194, 0.12);
}

.trust-statement__band::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-accent) 50%,
    var(--color-primary) 100%
  );
}

.trust-statement__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    radial-gradient(circle at 12% 50%, rgba(10, 102, 194, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 88% 30%, rgba(55, 143, 233, 0.1) 0%, transparent 38%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 28px,
      rgba(10, 102, 194, 0.03) 28px,
      rgba(10, 102, 194, 0.03) 29px
    );
  pointer-events: none;
}

.trust-statement__card {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 44px) clamp(28px, 5vw, 48px);
  text-align: center;
  background: var(--color-white);
  border: 1px solid rgba(10, 102, 194, 0.14);
  border-radius: var(--radius-card, 12px);
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 20px 48px rgba(10, 102, 194, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.trust-statement__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(120px, 30%);
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.trust-statement__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--color-primary);
  background: linear-gradient(145deg, rgba(10, 102, 194, 0.12) 0%, rgba(55, 143, 233, 0.08) 100%);
  border-radius: 50%;
  border: 1px solid rgba(10, 102, 194, 0.15);
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.12);
}

.trust-statement__mark svg {
  width: 28px;
  height: 28px;
}

.trust-statement__text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.6vw, 24px);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: -0.02em;
  color: var(--color-primary-900, #002a52);
  text-wrap: balance;
}

.trust-statement__text::before {
  content: '“';
  display: block;
  margin-bottom: 4px;
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.35;
}

.trust-statement__sector {
  display: inline;
  padding: 0 0 0 0.06em;
  font-weight: 700;
  color: var(--color-primary);
  background: linear-gradient(
    to bottom,
    transparent 62%,
    rgba(10, 102, 194, 0.12) 62%,
    rgba(10, 102, 194, 0.12) 92%,
    transparent 92%
  );
  border-radius: 2px;
}

.trust-statement__accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.trust-statement__accent span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--color-primary);
  opacity: 0.35;
}

.trust-statement__accent span:nth-child(1) {
  width: 24px;
  opacity: 0.2;
}

.trust-statement__accent span:nth-child(2) {
  width: 48px;
  opacity: 0.55;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.trust-statement__accent span:nth-child(3) {
  width: 24px;
  opacity: 0.2;
}

@media (max-width: 640px) {
  .trust-statement__card {
    padding: 28px 20px 32px;
  }

  .trust-statement__text {
    font-size: 18px;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-statement__card {
    box-shadow: 0 8px 24px rgba(10, 102, 194, 0.08);
  }
}

/* ================================================================
   GRAND LAUNCH ANNOUNCEMENT (homepage, once per page load)
   ================================================================ */
.igs-launch-confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 7150;
  pointer-events: none;
}

.igs-launch-slide {
  --igs-launch-gold: #f59e0b;
  --igs-launch-gold-light: #fbbf24;
  position: fixed;
  inset: 0;
  z-index: var(--z-announcement, 8500);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Push panel below the main nav + announcement bar so nothing overlaps */
  padding:
    calc(var(--nav-h, 72px) + var(--nav-announce-h, 0px) + max(16px, env(safe-area-inset-top, 0px)))
    16px
    max(calc(var(--igs-mobile-ui-clearance, 0px) + 16px), env(safe-area-inset-bottom, 0px));
  overflow: hidden;
}

.igs-launch-slide::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 45%, rgba(55, 143, 233, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(245, 158, 11, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse 60% 45% at 85% 20%, rgba(167, 139, 250, 0.2) 0%, transparent 45%),
    linear-gradient(165deg, rgba(0, 42, 82, 0.82) 0%, rgba(10, 102, 194, 0.55) 45%, rgba(15, 23, 42, 0.78) 100%);
  transition: opacity 0.5s ease;
}

.igs-launch-slide.is-visible::before {
  opacity: 1;
  pointer-events: auto;
}

.igs-launch-slide.is-visible {
  pointer-events: auto;
}

.igs-launch-slide__fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.igs-launch-slide__glow {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(900px, 120vw);
  height: min(500px, 70vh);
  transform: translate(-50%, -50%) scale(0.6);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(55, 143, 233, 0.55) 0%,
    rgba(10, 102, 194, 0.25) 35%,
    transparent 70%
  );
  opacity: 0;
  filter: blur(2px);
}

.igs-launch-slide.is-visible .igs-launch-slide__glow {
  animation: igs-launch-glow-pulse 2.8s ease-in-out infinite;
}

.igs-launch-slide__ring {
  position: absolute;
  left: 50%;
  top: 42%;
  border-radius: 50%;
  border: 2px solid rgba(251, 191, 36, 0.35);
  transform: translate(-50%, -50%) scale(0.3);
  opacity: 0;
}

.igs-launch-slide__ring--1 {
  width: 280px;
  height: 280px;
}

.igs-launch-slide__ring--2 {
  width: 420px;
  height: 420px;
  border-color: rgba(55, 143, 233, 0.3);
}

.igs-launch-slide__ring--3 {
  width: 560px;
  height: 560px;
  border-color: rgba(255, 255, 255, 0.12);
}

.igs-launch-slide.is-visible .igs-launch-slide__ring {
  animation: igs-launch-ring-expand 1.8s ease-out forwards;
}

.igs-launch-slide.is-visible .igs-launch-slide__ring--2 {
  animation-delay: 0.15s;
}

.igs-launch-slide.is-visible .igs-launch-slide__ring--3 {
  animation-delay: 0.3s;
}

.igs-launch-slide__burst {
  position: absolute;
  inset: 0;
  background:
    repeating-conic-gradient(
      from 0deg at 50% 42%,
      transparent 0deg 14deg,
      rgba(251, 191, 36, 0.06) 14deg 16deg
    );
  opacity: 0;
  mix-blend-mode: screen;
}

.igs-launch-slide.is-visible .igs-launch-slide__burst {
  animation: igs-launch-burst-spin 12s linear infinite;
  opacity: 1;
}

@keyframes igs-launch-glow-pulse {
  0%,
  100% {
    opacity: 0.65;
    transform: translate(-50%, -50%) scale(0.95);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes igs-launch-ring-expand {
  0% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(0.35);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.35);
  }
}

@keyframes igs-launch-burst-spin {
  to {
    transform: rotate(360deg);
  }
}

.igs-launch-slide__panel {
  pointer-events: auto;
  position: relative;
  z-index: 2;
  width: min(720px, calc(100vw - 32px));
  max-width: 100%;
  max-height: min(380px, calc(100vh - var(--nav-h, 72px) - var(--nav-announce-h, 0px) - var(--igs-mobile-ui-clearance, 0px) - 96px));
  overflow: hidden;
  display: grid;
  grid-template-columns: 10px 1fr;
  border-radius: 8px;
  background:
    linear-gradient(145deg, #fffef9 0%, #ffffff 35%, #f5f9ff 100%);
  border: 2px solid rgba(245, 158, 11, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 0 0 4px rgba(10, 102, 194, 0.08),
    0 32px 72px rgba(0, 42, 82, 0.4),
    0 0 100px rgba(55, 143, 233, 0.28),
    0 0 140px rgba(245, 158, 11, 0.18);
  transform: scale(0.82) translateY(28px);
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.22, 1.12, 0.36, 1),
    opacity 0.4s ease,
    box-shadow 0.55s ease;
}

.igs-launch-slide__panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--igs-launch-gold-light) 35%,
    var(--color-accent) 65%,
    var(--color-primary) 100%
  );
  background-size: 200% 100%;
  opacity: 0.95;
}

.igs-launch-slide.is-visible .igs-launch-slide__panel::after {
  animation: igs-launch-shimmer 2.4s ease-in-out infinite;
}

@keyframes igs-launch-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.igs-launch-slide.is-visible .igs-launch-slide__panel {
  transform: scale(1) translateY(0);
  opacity: 1;
  animation: igs-launch-panel-pop 0.65s cubic-bezier(0.22, 1.12, 0.36, 1);
}

@keyframes igs-launch-panel-pop {
  0% {
    transform: scale(0.82) translateY(28px);
  }
  55% {
    transform: scale(1.03) translateY(-4px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

.igs-launch-slide__accent {
  grid-row: 1 / -1;
  background: linear-gradient(
    180deg,
    var(--color-primary) 0%,
    var(--color-accent) 40%,
    var(--igs-launch-gold) 100%
  );
}

.igs-launch-slide__content {
  padding: 26px 28px 22px 22px;
  overflow: auto;
  min-width: 0;
}

.igs-launch-slide__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(248, 113, 113, 0.45);
  border-radius: 4px;
  background: #fee2e2;
  color: #dc2626;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.12);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.igs-launch-slide__close:hover {
  background: #fecaca;
  color: #b91c1c;
  border-color: rgba(220, 38, 38, 0.55);
  transform: scale(1.05);
}

.igs-launch-slide__close:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.igs-launch-slide__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 6px 14px 6px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #92400e;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.2);
}

.igs-launch-slide__badge-icon {
  color: var(--igs-launch-gold);
  font-size: 14px;
  line-height: 1;
  animation: igs-launch-sparkle 1.2s ease-in-out infinite;
}

@keyframes igs-launch-sparkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.15) rotate(12deg);
  }
}

.igs-launch-slide__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 4.2vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  color: #002a52;
  -webkit-text-fill-color: #002a52;
  margin: 0 48px 12px 0;
  padding: 0 0 10px;
  border-bottom: 2px solid rgba(245, 158, 11, 0.45);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.igs-launch-slide__title-label {
  color: #f47323;
  -webkit-text-fill-color: #f47323;
  font-weight: 800;
  font-size: calc(1em + 2px);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.95);
  paint-order: stroke fill;
  text-shadow:
    1px 0 0 rgba(255, 255, 255, 0.4),
    -1px 0 0 rgba(255, 255, 255, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.4),
    0 -1px 0 rgba(255, 255, 255, 0.4),
    0 2px 3px rgba(0, 42, 82, 0.2);
  animation: igs-grand-launch-glow 2.6s ease-in-out infinite;
}

.igs-launch-slide__title-sep {
  display: inline-block;
  width: 1px;
  height: 0.95em;
  margin: 0 14px;
  background: rgba(0, 42, 82, 0.22);
  align-self: center;
}

.igs-launch-slide__title-rest {
  font-weight: 700;
  color: #002a52;
  -webkit-text-fill-color: #002a52;
}

.igs-launch-slide__message {
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.65;
  color: #334155;
  margin: 0 0 20px;
  max-width: 58ch;
}

.igs-launch-slide__message--script {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(15px, 2.6vw, 17px);
  line-height: 1.7;
  color: #1e3a5f;
}

.igs-launch-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.igs-launch-slide__cta {
  flex: 1 1 160px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.igs-launch-slide__cta--primary {
  color: #fff;
  border: none;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  box-shadow: 0 6px 20px rgba(10, 102, 194, 0.35);
}

.igs-launch-slide__cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10, 102, 194, 0.42);
  color: #fff;
}

.igs-launch-slide__cta--secondary {
  color: var(--color-primary);
  background: #fff;
  border: 2px solid var(--color-primary);
}

.igs-launch-slide__cta--secondary:hover {
  background: var(--color-primary-50, #eaf2fb);
  transform: translateY(-2px);
}

.igs-launch-slide__end {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-muted);
  opacity: 0.9;
}

@media (max-width: 640px) {
  .igs-launch-slide__panel {
    width: min(100%, calc(100vw - 24px));
    max-height: min(420px, calc(100vh - var(--nav-h, 72px) - var(--igs-mobile-ui-clearance, 148px) - 32px));
    border-radius: 6px;
  }

  .igs-launch-slide__content {
    padding: 22px 20px 18px 16px;
  }

  .igs-launch-slide__title {
    margin-right: 40px;
  }

  .igs-launch-slide__actions {
    flex-direction: column;
  }

  .igs-launch-slide__cta {
    width: 100%;
    flex: 1 1 auto;
  }

  .igs-launch-slide__ring--3 {
    width: 320px;
    height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .igs-launch-slide__panel,
  .igs-launch-slide.is-visible .igs-launch-slide__panel {
    transition: opacity 0.25s ease;
    transform: none;
    animation: none;
  }

  .igs-launch-slide.is-visible .igs-launch-slide__glow,
  .igs-launch-slide.is-visible .igs-launch-slide__ring,
  .igs-launch-slide.is-visible .igs-launch-slide__burst,
  .igs-launch-slide.is-visible .igs-launch-slide__panel::after,
  .igs-launch-slide__badge-icon {
    animation: none;
  }

  .igs-launch-slide.is-visible .igs-launch-slide__glow {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
}
