/* Custom styles complementing Tailwind */

:root {
  --header-height: 4rem;
}

@media (min-width: 1024px) {
  :root {
    --header-height: 5rem;
  }
}

.site-header.is-scrolled {
  --header-height: 3.25rem;
}

@media (min-width: 1024px) {
  .site-header.is-scrolled {
    --header-height: 3.75rem;
  }
}

.site-header__inner {
  height: var(--header-height);
  transition: height 0.25s ease;
}

.site-header__logo-img {
  width: 4rem;
  height: auto;
  transition: width 0.25s ease, height 0.25s ease;
}

.site-header.is-scrolled .site-header__logo-img {
  width: 3.25rem;
}

@media (min-width: 1024px) {
  .site-header__logo-img {
    width: 7rem;
  }

  .site-header.is-scrolled .site-header__logo-img {
    width: 5.25rem;
  }
}

.site-header.is-scrolled #header-bar {
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
}

.site-mobile-menu {
  top: var(--header-height);
}

.hero-pattern {
  background-image: radial-gradient(circle, #dbeafe 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-section {
  min-height: calc(100dvh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-section__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (max-width: 767px) {
  .hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
  }

  .hero-section__inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.hero-section__main {
  flex: 0 1 auto;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-copy > p,
.hero-copy > h1 {
  width: 100%;
  text-align: center;
}

.hero-copy > p.max-w-xl,
.hero-copy .max-w-xl {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy .mt-8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1rem;
}

.hero-copy .mt-8 > a {
  width: min(100%, 16rem);
}

@media (max-width: 1023px) {
  .hero-copy {
    align-items: center !important;
    text-align: center !important;
    width: 100%;
  }

  .hero-copy > p,
  .hero-copy > h1 {
    text-align: center !important;
  }

  .hero-copy .mt-8 {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-copy .mt-8 > a {
    width: min(100%, 16rem);
  }
}

@media (min-width: 1024px) {
  .hero-section__main {
    align-items: stretch;
  }

  .hero-copy {
    align-self: stretch;
    align-items: flex-start;
    text-align: left;
    min-height: 100%;
    justify-content: center;
  }

  .hero-copy > p,
  .hero-copy > h1 {
    text-align: left;
  }

  .hero-copy .mt-8 {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }

  .hero-copy .mt-8 > a {
    width: auto;
  }
}

/* Section intros: center on mobile/tablet, left on desktop */
@media (max-width: 1023px) {
  .section-intro,
  .portfolio-intro {
    text-align: center;
  }

  .section-intro > span.block,
  .portfolio-intro span.block {
    margin-left: auto;
    margin-right: auto;
  }

  .section-intro .max-w-xl,
  .portfolio-intro .max-w-xl {
    margin-left: auto;
    margin-right: auto;
  }

  .section-intro > a,
  .portfolio-intro a.inline-flex {
    margin-left: auto;
    margin-right: auto;
  }

  .section-intro > ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-intro > ul > li {
    justify-content: center;
  }

  /* About checklist: 2 on first row, 1 centered on second */
  .section-intro > ul.about-checklist {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.85rem 1.5rem;
    row-gap: 0.85rem;
  }

  .section-intro > ul.about-checklist > li {
    justify-content: flex-start;
    width: auto;
  }

  .section-intro > ul.about-checklist.space-y-4 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0;
  }

  /* Keep contact feature rows readable in a centered column */
  .section-intro > ul.mt-10,
  .section-intro .contact-feature {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: 22rem;
  }

  .section-intro > ul.mt-10 {
    margin-left: auto;
    margin-right: auto;
  }

  .section-intro > ul.mt-10 > li {
    justify-content: flex-start;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .section-intro,
  .portfolio-intro {
    text-align: left;
  }
}

.particle-logos-section {
  padding: 2.5rem 0 3.5rem;
}

.particle-logos-section__bg {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(43, 127, 253, 0.06), transparent 70%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 55%, #ffffff 100%);
}

.particle-logo-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
}

.particle-logo-card {
  position: relative;
  min-height: 11rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(55, 90, 164, 0.1);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(55, 90, 164, 0.06);
  overflow: hidden;
}

.particle-logo-card__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.45s ease;
}

.particle-logo-card__img {
  position: absolute;
  inset: auto;
  width: auto;
  height: auto;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.45s ease;
  will-change: opacity;
}

.particle-logo-card.is-merging .particle-logo-card__img {
  opacity: 1;
}

.particle-logo-card.is-revealed .particle-logo-card__canvas {
  opacity: 0;
}

.particle-logo-card.is-revealed .particle-logo-card__img {
  opacity: 1;
}

.particle-logo-card__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 640px) {
  .particle-logos-section {
    padding: 3rem 0 4rem;
  }

  .particle-logo-rail {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .particle-logo-card {
    min-height: 12.5rem;
  }
}

@media (min-width: 768px) {
  .hero-section__inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-section__inner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .particle-logo-card {
    min-height: 14rem;
  }
}

.wave-bg {
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 50%, #eff6ff 100%);
}

.section-dots {
  background-image: radial-gradient(circle, #bfdbfe 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}

.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(55, 90, 164, 0.15);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #375AA4;
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hero-glow {
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
}

.process-line {
  background: linear-gradient(90deg, transparent, #93c5fd, transparent);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}

.hero-illustration {
  position: relative;
  width: 100%;
  min-height: 42rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Reference frame: large centered globe, AI on lower globe, cards on the ring */
.hero-stage {
  position: relative;
  width: min(100%, 48rem);
  height: 42rem;
  overflow: visible;
}

.hero-globe {
  position: absolute;
  left: 50%;
  top: 34%;
  z-index: 1;
  width: min(100%, 44rem);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-globe__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-ai-art {
  position: absolute;
  left: 42%;
  bottom: 25%;
  z-index: 3;
  display: block;
  width: auto;
  height: 26rem;
  transform: translateX(-50%);
  pointer-events: none;
  filter: drop-shadow(0 16px 36px rgba(55, 90, 164, 0.2));
}

.hero-mobile-art {
  display: none;
}

.hero-strokes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

.hero-strokes__line {
  fill: none;
  stroke: #8ec0ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 6 7;
  animation: hero-stroke-flow 1.4s linear infinite;
}

.hero-strokes__dot {
  fill: #375AA4;
}

@keyframes hero-stroke-flow {
  to {
    stroke-dashoffset: -26;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-strokes__line {
    animation: none;
  }
}

.hero-feature {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 14rem;
  text-align: left;
}

.hero-feature-icon {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  padding: 1.05rem;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e4ecf8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(55, 90, 164, 0.1);
}

.hero-feature-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.hero-feature-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #375AA4;
  line-height: 1.3;
}

.hero-feature-desc {
  margin-top: 0.2rem;
  font-size: 0.6875rem;
  color: #4b5563;
  line-height: 1.4;
}

.hero-feature__copy {
  min-width: 0;
  flex: 1;
}

/* Left cards: icon on the right, text right-aligned (toward AI) */
.hero-feature--tl,
.hero-feature--bl {
  flex-direction: row-reverse;
  text-align: right;
}

/* Card placement matching reference ring around the globe */
.hero-feature--tl {
  top: 5%;
  left: 0;
}

.hero-feature--tr {
  top: 4%;
  right: 0;
}

.hero-feature--bl {
  top: 52%;
  left: 0;
}

.hero-feature--mr {
  top: 40%;
  right: 0;
}

.hero-feature--br {
  bottom: 14%;
  right: 0;
}

@media (min-width: 1024px) {
  .hero-illustration {
    min-height: 52rem;
  }

  .hero-stage {
    width: min(100%, 56rem);
    height: 52rem;
  }

  /* Larger globe, raised so ~bottom 25% overlaps the AI art */
  .hero-globe {
    width: min(112%, 56rem);
    top: 22%;
  }

  /* AI pedestal anchored to lower-middle of the globe */
  .hero-ai-art {
    height: 34rem;
    left: 40%;
    bottom: 25%;
  }

  .hero-feature {
    max-width: 15rem;
  }

  /* Icon glyph ~50% of circle — generous white padding */
  .hero-feature-icon {
    width: 4.75rem;
    height: 4.75rem;
    padding: 1.15rem;
  }

  .hero-feature-title {
    font-size: 0.875rem;
  }

  .hero-feature-desc {
    font-size: 0.75rem;
  }

  .hero-feature--tl {
    top: 4%;
    left: -4%;
  }

  .hero-feature--tr {
    top: 2%;
    right: -4%;
  }

  .hero-feature--bl {
    top: 58%;
    left: -4%;
  }

  .hero-feature--mr {
    top: 40%;
    right: -5%;
  }

  .hero-feature--br {
    bottom: 18%;
    right: -4%;
  }
}

.hero-ai-pedestal {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 40px;
}

.hero-ai-pedestal-ring {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #dbeafe 0%, #93c5fd 100%);
  box-shadow: 0 4px 20px rgba(55, 90, 164, 0.2);
}

.hero-ai-pedestal-ring--outer {
  bottom: 0;
  width: 120px;
  height: 28px;
  opacity: 0.6;
}

.hero-ai-pedestal-ring--inner {
  bottom: 10px;
  width: 80px;
  height: 18px;
  opacity: 0.8;
}

.hero-ai-chip {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-ai-chip-body {
  position: relative;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #2c4883 0%, #375AA4 50%, #5a78b8 100%);
  border-radius: 12px;
  box-shadow:
    0 8px 32px rgba(55, 90, 164, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: perspective(200px) rotateX(8deg);
}

.hero-ai-chip-grid {
  position: absolute;
  inset: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  opacity: 0.3;
}

.hero-ai-chip-grid span {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

.hero-ai-chip-label {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 20px rgba(147, 197, 253, 0.8);
  letter-spacing: 0.05em;
  z-index: 1;
}

@media (max-width: 1023px) {
  .hero-illustration {
    min-height: auto;
    flex-direction: column;
    gap: 0;
    padding: 0 0 1rem;
    margin-bottom: 0.5rem;
  }

  /* Mobile: static header art instead of globe + AI */
  .hero-stage {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    overflow: visible;
  }

  .hero-stage::before {
    content: none;
    display: none;
  }

  .hero-strokes {
    display: none !important;
  }

  .hero-globe,
  .hero-ai-art {
    display: none !important;
  }

  .hero-mobile-art {
    display: block;
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 28rem;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
  }

  /* Mobile header art already includes callouts */
  .hero-feature {
    display: none !important;
  }
}

.services-scroll-section {
  --services-scroll-height: 280vh;
  height: auto;
}

@media (min-width: 768px) {
  .services-scroll-section {
    height: var(--services-scroll-height);
  }

  .services-scroll-sticky {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
}

.service-step {
  opacity: 0.38;
  transform: scale(0.97);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    filter 0.45s ease;
  filter: grayscale(0.2);
}

.service-step.is-active,
.service-step.is-complete {
  opacity: 1;
  transform: scale(1);
  filter: none;
}

.service-icon-wrap {
  position: relative;
  width: 130px;
  height: 130px;
}

.service-icon-ring {
  position: absolute;
  inset: -19px;
  width: calc(100% + 38px);
  height: calc(100% + 38px);
  pointer-events: none;
}

.service-icon-ring__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.service-icon-ring__track,
.service-icon-ring__progress {
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: butt;
  transform-box: fill-box;
  transform-origin: center;
  transform: rotate(-90deg);
}

.service-icon-ring__track {
  stroke: #dbeafe;
  stroke-dasharray: 4 5.5;
  opacity: 0.95;
}

.service-icon-ring__progress {
  stroke: #375AA4;
  stroke-dasharray: 4 5.5;
}

.service-icon-ring__svg--progress {
  opacity: 0;
  mask-image: conic-gradient(
    from -90deg,
    #000 0deg,
    #000 calc(var(--ring-progress, 0) * 360deg),
    transparent 0
  );
  -webkit-mask-image: conic-gradient(
    from -90deg,
    #000 0deg,
    #000 calc(var(--ring-progress, 0) * 360deg),
    transparent 0
  );
}

.service-step.is-active .service-icon-ring__svg--progress,
.service-step.is-complete .service-icon-ring__svg--progress {
  opacity: 1;
}

.service-step.is-active .service-icon-ring__track,
.service-step.is-complete .service-icon-ring__track {
  stroke: #bfdbfe;
}

.service-icon-milestone {
  position: absolute;
  left: -22px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 50%;
  background: #375AA4;
  box-shadow: 0 0 0 4px rgba(55, 90, 164, 0.15);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.45, 0.64, 1);
  z-index: 3;
  pointer-events: none;
}

.service-step.has-milestone .service-icon-milestone {
  opacity: 1;
  transform: scale(1);
}

.service-icon-circle {
  position: relative;
  z-index: 1;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #375AA4;
  transition: box-shadow 0.35s ease, background-color 0.35s ease;
}

.service-step.is-active .service-icon-circle,
.service-step.is-complete .service-icon-circle {
  background: #eff6ff;
  box-shadow: 0 10px 28px rgba(55, 90, 164, 0.12);
}

.service-icon-svg {
  width: 52px;
  height: 52px;
}

.service-number-badge {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #93a4c0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(55, 90, 164, 0.15);
  z-index: 2;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.service-step.is-active .service-number-badge,
.service-step.is-complete .service-number-badge {
  background: #375AA4;
  box-shadow: 0 8px 20px rgba(55, 90, 164, 0.35);
}

.service-step.is-active .service-number-badge {
  transform: translateX(-50%) scale(1.06);
}

.services-grid {
  padding-bottom: 1rem;
}

.services-connectors {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.service-connector {
  position: absolute;
  top: 9.35rem;
  width: 12%;
  height: 12px;
  display: flex;
  align-items: center;
}

.service-connector[data-connector="0"] {
  left: 27.5%;
}

.service-connector[data-connector="1"] {
  left: 60.5%;
}

.service-connector__line {
  display: block;
  height: 1px;
  width: 100%;
  background: #375AA4;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0.35;
  transition: transform 0.35s ease, opacity 0.35s ease;
  border-radius: 999px;
}

.service-connector__arrow {
  position: absolute;
  right: -1px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 5px solid #375AA4;
  transform: translateY(-50%) scale(0.4);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.45, 0.64, 1);
}

.service-connector.is-drawing .service-connector__line,
.service-connector.is-complete .service-connector__line {
  transform: scaleX(1);
  opacity: 1;
}

.service-connector.is-drawing .service-connector__arrow,
.service-connector.is-complete .service-connector__arrow {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.service-connector.is-drawing .service-connector__line {
  transform: scaleX(var(--connector-progress, 0));
}

.service-connector.is-drawing .service-connector__arrow {
  opacity: var(--connector-progress, 0);
}

@media (min-width: 1024px) {
  .service-connector {
    width: 14%;
    top: 9.5rem;
  }

  .service-connector[data-connector="0"] {
    left: 26.5%;
  }

  .service-connector[data-connector="1"] {
    left: 59.5%;
  }
}

@media (max-width: 767px) {
  .service-step {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .service-icon-ring__svg--progress {
    opacity: 1;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .service-step .service-icon-milestone {
    opacity: 1;
    transform: scale(1);
  }

  .service-number-badge {
    background: #375AA4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-step,
  .service-icon-milestone,
  .service-number-badge,
  .service-icon-circle,
  .service-connector__line,
  .service-connector__arrow,
  .service-icon-ring__progress {
    transition: none !important;
  }
}

.why-card {
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

.why-card--light {
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.why-card--accent {
  background: linear-gradient(180deg, #5a78b8 0%, #375AA4 100%);
  box-shadow: 0 8px 32px rgba(55, 90, 164, 0.25);
}

.why-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-icon--light {
  background: #eff6ff;
  color: #375AA4;
}

.why-card-icon--accent {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

#careers {
  position: relative;
  z-index: 5;
  background-color: #ffffff;
}

.products-hero-scroll {
  position: relative;
  z-index: 1;
  height: 220vh;
  background: #ffffff;
}

.products-hero {
  position: sticky;
  top: var(--header-height);
  height: calc(100dvh - var(--header-height));
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 45%, #f8fbff 100%);
}

.products-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
}

.products-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  width: min(92vw, 100%);
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.products-fill-heading {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  font-family: "Manrope", sans-serif;
  /* Scales down so the longest line stays inside the viewport; caps at 128px */
  font-size: clamp(1.75rem, 5.5vw, 128px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
  overflow: visible;
}

.products-fill-line {
  display: flex;
  justify-content: center;
  width: 100%;
}

.products-fill-word {
  position: relative;
  display: inline-block;
  max-width: 100%;
  text-align: center;
}

.products-fill-word__outline,
.products-fill-word__fill {
  display: block;
  white-space: nowrap;
}

.products-fill-word__outline {
  color: rgba(55, 90, 164, 0.2);
}

.products-fill-word__fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  color: #0f172a;
  clip-path: inset(0 calc((1 - var(--fill, 0)) * 100%) 0 0);
  will-change: clip-path;
}

.products-fill-word--accent .products-fill-word__outline {
  color: rgba(55, 90, 164, 0.18);
}

.products-fill-word--accent .products-fill-word__fill {
  color: #375AA4;
}

.products-hero__sub {
  margin: 1.5rem auto 0;
  max-width: min(38rem, 100%);
  padding: 0 0.5rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: #64748b;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.products-hero__sub.is-visible {
  opacity: 1;
  transform: translateY(0);
}



.products-stack {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  padding: 2rem 0 4rem;
  background: #ffffff;
}

.products-stack__item {
  position: sticky;
  top: var(--header-height);
  height: auto;
  margin: 0 0 2.5rem;
  z-index: 1;
  display: flex;
  align-items: stretch;
  perspective: 1200px;
  perspective-origin: 50% 0%;
}

.products-stack__item:nth-child(1) {
  z-index: 1;
}

.products-stack__item:nth-child(2) {
  z-index: 2;
}

.products-stack__item:nth-child(3) {
  z-index: 3;
  margin-bottom: 0;
}

.products-card {
  position: relative;
  width: 100%;
  height: auto;
  max-height: none;
  min-height: 0;
  margin: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  transform-origin: top center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  background: #ffffff;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.16),
    0 8px 24px rgba(55, 90, 164, 0.1);
  will-change: transform, opacity, filter;
}

.products-card__inner {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
}

.products-card__hero {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  min-height: 0;
  height: auto;
  padding: 1.35rem 1.25rem 0;
  gap: 0.15rem;
  background:
    radial-gradient(
      ellipse 90% 80% at 50% 18%,
      #375AA4 0%,
      #5a78b8 38%,
      #9bb0d6 68%,
      #e8eef7 100%
    );
}

/* ADT — dashboard primary blue */
.products-card--adt .products-card__hero {
  background:
    radial-gradient(
      ellipse 90% 80% at 50% 18%,
      #0062e3 0%,
      #3b82f6 36%,
      #93c5fd 64%,
      #e7f0ff 100%
    );
}

/* T-Procure — dark sidebar charcoal from mockup */
.products-card--p2p .products-card__hero {
  background:
    radial-gradient(
      ellipse 90% 80% at 50% 12%,
      #2c3748 0%,
      #1a2332 42%,
      #151e2d 72%,
      #0b1220 100%
    );
}

.products-card__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

.products-card__header {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
  padding: 0.35rem 1rem 0.15rem;
}

.products-brand-logo {
  display: block;
  height: auto;
  width: auto;
  max-width: min(180px, 46vw);
  max-height: 40px;
  margin: 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.products-brand-logo--adt {
  max-width: min(160px, 44vw);
  max-height: 38px;
}

.products-brand-logo--p2p {
  max-width: min(200px, 50vw);
  max-height: 38px;
}

.products-card__desc {
  margin: 0.75rem auto 1.15rem;
  max-width: 38rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.products-features {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  flex: 0 0 auto;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 1.15rem 1.35rem 1.35rem;
  background: #ffffff;
  border-radius: 0 0 1.5rem 1.5rem;
  box-shadow:
    0 -8px 28px rgba(15, 23, 42, 0.06),
    0 2px 8px rgba(55, 90, 164, 0.06);
}

.products-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
  max-width: 18rem;
  margin: 0 auto;
  padding: 0.55rem 0.5rem 1.15rem;
  border: none;
  background: transparent;
  box-shadow: none;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.products-feature__title {
  font-family: "Manrope", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(15, 23, 42, 0.35);
  transition: color 0.3s ease;
}

.products-feature__text {
  font-family: "Poppins", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.32);
  max-width: 100%;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.products-device__frame {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 0;
  width: min(90%, 30rem);
  margin: 0.5rem auto 0;
  padding: 0;
}

.products-device__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(50vh, 24rem);
  object-fit: contain;
  object-position: bottom center;
  border-radius: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.products-device__image.is-switching {
  opacity: 0.5;
  transform: scale(0.985);
}

.products-feature:hover .products-feature__title {
  color: rgba(15, 23, 42, 0.55);
}

.products-feature:hover .products-feature__text {
  color: rgba(15, 23, 42, 0.45);
}

.products-feature.is-active .products-feature__title {
  color: #0f172a;
}

.products-feature.is-active .products-feature__text {
  color: #475569;
}

.products-feature__timer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  height: 2px;
  overflow: hidden;
  background: transparent;
}

.products-feature__track {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.12);
}

.products-feature__progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #375AA4;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

@media (min-width: 640px) {
  .products-card__desc {
    font-size: 0.875rem;
  }

  .products-hero__sub {
    margin-top: 1.75rem;
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .products-stack {
    padding-top: 2.5rem;
  }

  .products-card {
    border-radius: 1.5rem;
  }

  .products-card__hero {
    padding: 1.5rem 1.75rem 0;
    gap: 0.25rem;
  }

  .products-card__header {
    padding: 0.35rem 1.25rem 0;
  }

  .products-brand-logo {
    max-width: 200px;
    max-height: 46px;
  }

  .products-card__desc {
    font-size: 0.9375rem;
    margin-top: 0.65rem;
    margin-bottom: 1.35rem;
    line-height: 1.65;
    max-width: 42rem;
  }

  .products-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding: 1.35rem 2.5rem 1.75rem;
    border-radius: 0 0 1.5rem 1.5rem;
  }

  .products-feature {
    max-width: 18.5rem;
    padding: 0.55rem 0.65rem 1.25rem;
    gap: 0.55rem;
  }

  .products-feature__title {
    font-size: 1.0625rem;
  }

  .products-feature__text {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  .products-device__frame {
    width: min(76%, 44rem);
    margin: 0.35rem auto 0;
    padding: 0;
  }

  .products-device__image {
    max-height: min(58vh, 32rem);
    border-radius: 0;
  }
}

@media (min-width: 1024px) {
  .products-card__hero {
    padding: 1.65rem 2rem 0;
    gap: 0.4rem;
  }

  .products-card__desc {
    font-size: 1rem;
    max-width: 44rem;
    margin-bottom: 1.5rem;
  }

  .products-device__frame {
    width: min(78%, 46rem);
    margin: 0.5rem auto 0;
  }

  .products-device__image {
    max-height: min(62vh, 34rem);
  }

  .products-features {
    gap: 1.75rem;
    padding: 1.25rem 2.5rem 1.5rem;
  }

  .products-feature {
    max-width: 17.5rem;
    padding: 0.5rem 0.5rem 1.1rem;
    gap: 0.4rem;
  }

  .products-feature__title {
    font-size: 0.9375rem;
  }

  .products-feature__text {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .products-card {
    border-radius: 1.5rem;
  }

  .products-card__hero {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .products-stack__item {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    margin-bottom: 2rem;
    perspective: none;
  }

  .products-card {
    height: auto;
    min-height: 0;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .products-stack {
    padding-bottom: 4rem;
  }
}

/* Tablet & down: keep tablet flush above feature cards */
@media (max-width: 1023px) {
  .products-card__hero {
    justify-content: flex-start;
    gap: 0.35rem;
    padding-bottom: 0;
  }

  .products-device__frame {
    flex: 0 0 auto;
    margin-top: 0.5rem;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .products-hero-scroll {
    height: 180vh;
  }

  .products-fill-heading {
    font-size: clamp(1.5rem, 7vw, 2.75rem);
    letter-spacing: 0.03em;
  }

  .products-card__hero {
    gap: 0.25rem;
    padding: 1.25rem 1.15rem 0;
  }

  .products-card__desc {
    margin-top: 0.45rem;
    margin-bottom: 0.85rem;
  }

  .products-device__frame {
    width: min(90%, 24rem);
    margin: 0.5rem auto 0;
  }

  .products-device__image {
    max-height: 38vh;
    border-radius: 0;
  }

  .products-features {
    grid-template-columns: 1fr;
    padding: 0.75rem 1.15rem 1.1rem;
    gap: 0.65rem;
  }

  .products-feature {
    max-width: 100%;
    margin: 0;
    gap: 0.4rem;
    padding: 0.7rem 0.25rem 0.85rem;
  }

  .products-feature__title {
    font-size: 0.875rem;
  }

  .products-feature__text {
    font-size: 0.75rem;
    line-height: 1.45;
  }

  .products-feature__timer {
    left: 0;
    right: 0;
    bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .products-hero-scroll {
    height: 100vh;
  }

  .products-fill-word__fill {
    clip-path: none;
  }

  .products-fill-word__outline {
    opacity: 0;
  }

  .products-hero__sub {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .products-particles {
    opacity: 0.45;
  }
}

.product-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card-logo {
  height: 6rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.product-card-divider {
  display: block;
  margin-top: 1.75rem;
  width: 3rem;
  height: 2px;
  background: #60a5fa;
  border-radius: 9999px;
}

.product-card-btn {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border: 1px solid #375AA4;
  color: #375AA4;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

.product-card-btn:hover {
  background: #eff6ff;
}

.leadership-deck {
  --leadership-gap: 1.5rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--leadership-gap);
  align-items: stretch;
}

@media (max-width: 1023px) {
  .leadership-deck:not(.is-open) .leadership-card {
    opacity: 0;
    transform: translate3d(0, 36px, 0) scale(0.96);
  }

  .leadership-deck.is-open .leadership-card {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .leadership-deck.is-open .leadership-card[data-fan="-1"] {
    transition-delay: 0.05s;
  }

  .leadership-deck.is-open .leadership-card[data-fan="0"] {
    transition-delay: 0.16s;
  }

  .leadership-deck.is-open .leadership-card[data-fan="1"] {
    transition-delay: 0.28s;
  }

  .leadership-card:hover .leadership-card__inner,
  .leadership-card:focus-within .leadership-card__inner {
    transform: rotateY(180deg);
  }
}

@media (min-width: 640px) {
  .leadership-deck {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .leadership-deck .leadership-card[data-fan="1"] {
    grid-column: 1 / -1;
    max-width: 22rem;
    justify-self: center;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .leadership-deck {
    --leadership-gap: 2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 31rem;
    perspective: 1800px;
  }

  .leadership-deck .leadership-card[data-fan="1"] {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .leadership-deck:not(.is-open) .leadership-card {
    pointer-events: none;
  }

  /* Stacked deck in the center before reveal */
  .leadership-deck:not(.is-open) .leadership-card[data-fan="-1"] {
    transform:
      translate3d(calc(100% + var(--leadership-gap)), 18px, -40px)
      rotate(-14deg)
      rotateY(18deg)
      scale(0.9);
    opacity: 0.72;
    filter: brightness(0.94);
    z-index: 1;
  }

  .leadership-deck:not(.is-open) .leadership-card[data-fan="0"] {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    opacity: 1;
    z-index: 3;
  }

  .leadership-deck:not(.is-open) .leadership-card[data-fan="1"] {
    transform:
      translate3d(calc(-100% - var(--leadership-gap)), 18px, -40px)
      rotate(14deg)
      rotateY(-18deg)
      scale(0.9);
    opacity: 0.72;
    filter: brightness(0.94);
    z-index: 2;
  }

  .leadership-deck.is-open .leadership-card[data-fan="-1"] {
    transform: translate3d(0, 0, 0) rotate(0deg) rotateY(0deg) scale(1);
    opacity: 1;
    filter: none;
    z-index: 1;
    transition-delay: 0.05s;
  }

  .leadership-deck.is-open .leadership-card[data-fan="0"] {
    transform: translate3d(0, -8px, 20px) rotate(0deg) scale(1.02);
    opacity: 1;
    filter: none;
    z-index: 3;
    transition-delay: 0.18s;
  }

  .leadership-deck.is-open .leadership-card[data-fan="1"] {
    transform: translate3d(0, 0, 0) rotate(0deg) rotateY(0deg) scale(1);
    opacity: 1;
    filter: none;
    z-index: 1;
    transition-delay: 0.1s;
  }

  .leadership-deck.is-open.is-settled .leadership-card[data-fan="0"] {
    transform: translate3d(0, 0, 0) scale(1);
    transition-delay: 0s;
  }
}

.leadership-card {
  --leadership-blue: #375aa4;
  perspective: 1600px;
  height: 100%;
  min-height: 28rem;
  transform-origin: center center;
  will-change: transform, opacity, filter;
  transition:
    transform 1.15s cubic-bezier(0.16, 1.15, 0.28, 1),
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
}

.leadership-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 28rem;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.leadership-deck.is-open .leadership-card:hover .leadership-card__inner,
.leadership-deck.is-open .leadership-card:focus-within .leadership-card__inner {
  transform: rotateY(180deg);
}

.leadership-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem 1.75rem;
  border-radius: 1.5rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.leadership-card__face--front {
  background:
    radial-gradient(circle at 50% 18%, rgba(55, 90, 164, 0.1) 0%, transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid rgba(55, 90, 164, 0.08);
  box-shadow:
    0 18px 48px rgba(15, 23, 42, 0.08),
    0 4px 14px rgba(55, 90, 164, 0.06);
}

.leadership-card__face--front::before {
  content: "";
  position: absolute;
  top: -18%;
  right: -12%;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  border: 1px solid rgba(55, 90, 164, 0.12);
  pointer-events: none;
}

.leadership-card__face--front::after {
  content: "";
  position: absolute;
  bottom: -22%;
  left: -16%;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 90, 164, 0.08) 0%, transparent 68%);
  pointer-events: none;
}

.leadership-card__face--back {
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.16) 0%, transparent 42%),
    linear-gradient(160deg, #4a6fb3 0%, var(--leadership-blue) 48%, #2c4883 100%);
  transform: rotateY(180deg);
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.75rem 1.35rem;
  box-shadow:
    0 22px 50px rgba(44, 72, 131, 0.35),
    0 8px 20px rgba(15, 23, 42, 0.12);
}

.leadership-card__photo-wrap {
  position: relative;
  z-index: 1;
  width: 12.5rem;
  height: 12.5rem;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.leadership-card__photo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(
      from 210deg,
      rgba(55, 90, 164, 0.15),
      rgba(55, 90, 164, 0.55),
      rgba(147, 176, 216, 0.35),
      rgba(55, 90, 164, 0.15)
    );
  filter: blur(0.2px);
  animation: leadership-ring 8s linear infinite;
}

.leadership-card__photo-ring::after {
  content: "";
  position: absolute;
  inset: 0.35rem;
  border-radius: 50%;
  background: #ffffff;
}

.leadership-card__photo {
  position: relative;
  z-index: 1;
  width: 11.2rem;
  height: 11.2rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow:
    0 16px 36px rgba(15, 23, 42, 0.18),
    0 0 0 4px rgba(255, 255, 255, 0.95);
}

.leadership-card__name {
  position: relative;
  z-index: 1;
  margin: 1.5rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.leadership-card__role {
  position: relative;
  z-index: 1;
  margin: 0.45rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--leadership-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.leadership-card__accent {
  position: relative;
  z-index: 1;
  display: block;
  width: 2.75rem;
  height: 2px;
  margin-top: 1.15rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, transparent, #7f9bcc, transparent);
}

.leadership-card__back-top {
  width: 100%;
  flex: 0 0 auto;
  padding-bottom: 0.75rem;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.leadership-card__face--back .leadership-card__name {
  margin-top: 0;
  color: #ffffff;
  font-size: 0.95rem;
}

.leadership-card__face--back .leadership-card__role {
  color: rgba(255, 255, 255, 0.82);
}

.leadership-card__bio {
  position: relative;
  z-index: 1;
  margin: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  max-width: 21rem;
  width: 100%;
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
}

.leadership-card__linkedin {
  position: relative;
  z-index: 1;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.95);
  color: var(--leadership-blue);
  border-radius: 0.55rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.leadership-card__linkedin:hover {
  background: #ffffff;
  color: #2c4883;
  transform: translateY(-2px);
}

@keyframes leadership-ring {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .leadership-card,
  .leadership-card__inner {
    min-height: 30rem;
  }

  .leadership-card__photo-wrap {
    width: 13.75rem;
    height: 13.75rem;
  }

  .leadership-card__photo {
    width: 12.35rem;
    height: 12.35rem;
  }

  .leadership-card__name {
    font-size: 1.05rem;
  }

  .leadership-card__bio {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}

@media (min-width: 1024px) {
  .leadership-card,
  .leadership-card__inner {
    min-height: 31rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .leadership-card {
    transition: none;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    pointer-events: auto !important;
  }

  .leadership-card__inner {
    transition: none;
  }

  .leadership-card__photo-ring {
    animation: none;
  }

  .leadership-deck.is-open .leadership-card:hover .leadership-card__inner,
  .leadership-deck.is-open .leadership-card:focus-within .leadership-card__inner {
    transform: none;
  }

  .leadership-card__face--back {
    position: static;
    transform: none;
    margin-top: 1rem;
  }

  .leadership-card__face--front {
    position: static;
  }

  .leadership-card__inner {
    min-height: 0;
  }
}

.partnership-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 2.5rem 2rem;
  min-height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partnership-card-logo {
  height: 3rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.portfolio-intro__left,
.portfolio-intro__right {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-section {
  background-color: #ffffff;
}

.portfolio-section.is-inview .portfolio-intro__left {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.05s;
}

.portfolio-section.is-inview .portfolio-intro__right {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.18s;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  perspective: 1400px;
}

.portfolio-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.portfolio-card {
  --i: 0;
  position: relative;
  background: #fff;
  border-radius: 1.15rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  isolation: isolate;
  opacity: 0;
  transform: translate3d(0, 48px, 0) rotateX(8deg) scale(0.94);
  filter: blur(4px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1.1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1.15, 0.28, 1),
    filter 0.7s ease,
    box-shadow 0.35s ease;
  transition-delay: calc(var(--i) * 0.1s + 0.12s);
  will-change: transform, opacity, filter;
}

.portfolio-section.is-inview .portfolio-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0deg) scale(1);
  filter: blur(0);
}

.portfolio-column:first-child .portfolio-card {
  transform: translate3d(-40px, 48px, 0) rotateY(10deg) scale(0.94);
}

.portfolio-column:last-child .portfolio-card {
  transform: translate3d(40px, 48px, 0) rotateY(-10deg) scale(0.94);
}

.portfolio-column--center .portfolio-card {
  transform: translate3d(0, 64px, 0) scale(0.88);
}

.portfolio-section.is-inview .portfolio-column:first-child .portfolio-card,
.portfolio-section.is-inview .portfolio-column:last-child .portfolio-card,
.portfolio-section.is-inview .portfolio-column--center .portfolio-card {
  transform: translate3d(0, 0, 0) rotateY(0deg) scale(1);
}

.portfolio-card__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 48%,
    transparent 62%
  );
  transform: translateX(-130%) skewX(-18deg);
  opacity: 0;
}

.portfolio-card:hover .portfolio-card__shine {
  opacity: 1;
  animation: portfolio-shine 0.9s ease forwards;
}

.portfolio-card-image {
  height: 11rem;
  overflow: hidden;
  background: #f8fafc;
}

.portfolio-card-image--brand {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  padding: 1.5rem;
}

.portfolio-card-image--featured {
  height: auto;
  min-height: 14rem;
  flex: 1;
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card-logo {
  height: 4rem;
  width: auto;
  max-width: 80%;
  object-fit: contain;
}

.portfolio-card--overlay {
  position: relative;
  background-image: url(./assets/images/portfolio-1.webp);
  background-size: 108%;
  background-position: top center;
  min-height: 22rem;
  justify-content: flex-end;
  background-repeat: no-repeat;
  transition:
    opacity 0.85s cubic-bezier(0.16, 1.1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1.15, 0.28, 1),
    filter 0.7s ease,
    box-shadow 0.35s ease,
    background-size 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card--overlay::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 270% 120% at 0% 120%, #ffffff 0%, #ffffff 30%, rgba(255, 255, 255, 0.95) 55%, rgba(255, 255, 255, 0.72) 72%, rgba(255, 255, 255, 0.35) 80%, transparent 100%);
  transition: height 0.45s ease;
}

.portfolio-card--overlay .portfolio-card-body {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  background: transparent;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(8px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.portfolio-card-title--accent {
  color: #375AA4;
}

.portfolio-card-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.6;
  transition: opacity 0.3s ease;
}

.portfolio-card-btn {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.5rem 1rem;
  border: 1px solid #375AA4;
  color: #375AA4;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.portfolio-card-btn:hover {
  background: #375AA4;
  color: #ffffff;
  transform: translateX(2px);
  box-shadow: 0 8px 18px rgba(55, 90, 164, 0.25);
}

.portfolio-card--featured {
  height: 100%;
  padding: 1.5rem;
  background-color: #f8fafc;
  min-height: 28rem;
}

.portfolio-card--featured .portfolio-card-body {
  padding-bottom: 1rem;
  margin-top: auto;
  transform: translateY(8px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-section.is-inview .portfolio-card--featured {
  animation: portfolio-featured-float 4.5s ease-in-out 1.1s infinite;
}

.portfolio-card:hover {
  box-shadow:
    0 24px 50px rgba(15, 23, 42, 0.14),
    0 8px 20px rgba(55, 90, 164, 0.12);
  z-index: 2;
}

.portfolio-section.is-inview .portfolio-card:hover {
  transform: translate3d(0, -10px, 0) scale(1.02);
  filter: blur(0);
}

.portfolio-card--overlay:hover {
  background-size: 118%;
}

.portfolio-card--overlay:hover::before {
  height: 72%;
}

.portfolio-card:hover .portfolio-card-body,
.portfolio-card--featured:hover .portfolio-card-body {
  transform: translateY(0);
}

.portfolio-card:hover .portfolio-card-title {
  letter-spacing: 0.02em;
}

@keyframes portfolio-shine {
  from {
    transform: translateX(-130%) skewX(-18deg);
  }
  to {
    transform: translateX(130%) skewX(-18deg);
  }
}

@keyframes portfolio-featured-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .portfolio-column--center {
    display: flex;
  }

  .portfolio-card--featured {
    min-height: 100%;
  }

  .portfolio-section.is-inview .portfolio-card:hover {
    transform: translate3d(0, -12px, 12px) scale(1.025);
  }

  .portfolio-section.is-inview .portfolio-card--featured:hover {
    animation: none;
    transform: translate3d(0, -14px, 18px) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-intro__left,
  .portfolio-intro__right,
  .portfolio-card,
  .portfolio-card--overlay,
  .portfolio-card-body,
  .portfolio-card-btn {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .portfolio-card__shine {
    display: none;
  }
}

.csr-feature {
  text-align: center;
}

.csr-feature-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  border-radius: 50%;
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #375AA4;
}

.csr-feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.csr-feature-title {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.csr-feature-desc {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: #374151;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .csr-feature-title {
    font-size: 0.9375rem;
  }

  .csr-feature-desc {
    font-size: 0.8125rem;
  }
}

.csr-visual {
  position: relative;
  width: 100%;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 1330 / 1183;
}

@media (min-width: 1024px) {
  .csr-visual {
    max-width: 42rem;
    margin-right: 0;
  }
}

.csr-globe {
  --csr-orbit-r: 48%;
  position: absolute;
  left: 50%;
  top: 38%;
  z-index: 0;
  width: min(70%, 23rem);
  aspect-ratio: 1;
  transform: translate(-50%, -52%);
  pointer-events: none;
}

.csr-globe__chart {
  position: absolute;
  inset: 8%;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(
    circle at 35% 30%,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(147, 197, 253, 0.2) 35%,
    rgba(55, 90, 164, 0.12) 100%
  );
  box-shadow:
    0 0 0 1px rgba(55, 90, 164, 0.12),
    0 12px 40px rgba(55, 90, 164, 0.18),
    inset 0 0 40px rgba(255, 255, 255, 0.25);
}


.csr-globe__orbit-wrap {
  position: absolute;
  left: 50%;
  top: 38%;
  z-index: 1;
  width: min(92%, 31rem);
  aspect-ratio: 1;
  transform: translate(-50%, -52%);
  pointer-events: none;
}

.csr-globe__clouds {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.csr-globe__cloud {
  position: absolute;
  background: #2b7ffd;
  border-radius: 9999px;
  opacity: 0.28;
}

.csr-globe__cloud::before,
.csr-globe__cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 9999px;
}

.csr-globe__cloud--1 {
  left: 2%;
  top: 28%;
  width: 2.6rem;
  height: 0.85rem;
}

.csr-globe__cloud--1::before {
  width: 1.35rem;
  height: 1.35rem;
  left: 0.35rem;
  top: -0.7rem;
}

.csr-globe__cloud--1::after {
  width: 1.1rem;
  height: 1.1rem;
  left: 1.25rem;
  top: -0.45rem;
}

.csr-globe__cloud--2 {
  right: 0%;
  top: 34%;
  width: 2.9rem;
  height: 0.9rem;
}

.csr-globe__cloud--2::before {
  width: 1.45rem;
  height: 1.45rem;
  left: 0.4rem;
  top: -0.75rem;
}

.csr-globe__cloud--2::after {
  width: 1.15rem;
  height: 1.15rem;
  left: 1.4rem;
  top: -0.5rem;
}

.csr-globe__cloud--3 {
  left: 42%;
  top: 2%;
  width: 1.9rem;
  height: 0.65rem;
  opacity: 0.75;
}

.csr-globe__cloud--3::before {
  width: 1rem;
  height: 1rem;
  left: 0.25rem;
  top: -0.5rem;
}

.csr-globe__cloud--3::after {
  width: 0.85rem;
  height: 0.85rem;
  left: 0.9rem;
  top: -0.35rem;
}

.csr-globe__sparks {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.csr-globe__sparks span {
  position: absolute;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 9999px;
  background: #2b7ffd;
  opacity: 0.55;
}

.csr-globe__sparks span:nth-child(1) { left: 18%; top: 14%; }
.csr-globe__sparks span:nth-child(2) { left: 78%; top: 12%; width: 0.22rem; height: 0.22rem; }
.csr-globe__sparks span:nth-child(3) { left: 12%; top: 48%; width: 0.18rem; height: 0.18rem; }
.csr-globe__sparks span:nth-child(4) { right: 10%; top: 52%; }

.csr-globe__sparks span:nth-child(5),
.csr-globe__sparks span:nth-child(6),
.csr-globe__sparks span:nth-child(7),
.csr-globe__sparks span:nth-child(8) {
  width: 0.55rem;
  height: 0.55rem;
  background: transparent;
}

.csr-globe__sparks span:nth-child(5)::before,
.csr-globe__sparks span:nth-child(5)::after,
.csr-globe__sparks span:nth-child(6)::before,
.csr-globe__sparks span:nth-child(6)::after,
.csr-globe__sparks span:nth-child(7)::before,
.csr-globe__sparks span:nth-child(7)::after,
.csr-globe__sparks span:nth-child(8)::before,
.csr-globe__sparks span:nth-child(8)::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #2b7ffd;
  border-radius: 1px;
  opacity: 0.55;
}

.csr-globe__sparks span:nth-child(5)::before,
.csr-globe__sparks span:nth-child(6)::before,
.csr-globe__sparks span:nth-child(7)::before,
.csr-globe__sparks span:nth-child(8)::before {
  width: 0.55rem;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.csr-globe__sparks span:nth-child(5)::after,
.csr-globe__sparks span:nth-child(6)::after,
.csr-globe__sparks span:nth-child(7)::after,
.csr-globe__sparks span:nth-child(8)::after {
  width: 1.5px;
  height: 0.55rem;
  transform: translate(-50%, -50%);
}

.csr-globe__sparks span:nth-child(5) { left: 24%; top: 8%; }
.csr-globe__sparks span:nth-child(6) { right: 20%; top: 22%; }
.csr-globe__sparks span:nth-child(7) { left: 8%; top: 36%; }
.csr-globe__sparks span:nth-child(8) { right: 6%; top: 40%; }

.csr-globe__arc {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.csr-visual__art {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 78%,
    rgba(0, 0, 0, 0.92) 88%,
    rgba(0, 0, 0, 0.7) 96%,
    rgba(0, 0, 0, 0.35) 100%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 78%,
    rgba(0, 0, 0, 0.92) 88%,
    rgba(0, 0, 0, 0.7) 96%,
    rgba(0, 0, 0, 0.35) 100%
  );
  filter: drop-shadow(0 14px 18px rgba(43, 127, 253, 0.14));
}

.csr-globe__icon {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform: rotate(var(--a));
}

.csr-globe__icon-face {
  --csr-icon-size: 3.25rem;
  position: absolute;
  left: 50%;
  /* Circle r=46 in 100 viewBox → ring sits at 4% from edge; center icon on that ring */
  top: calc(4% - (var(--csr-icon-size) / 2));
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--csr-icon-size);
  height: var(--csr-icon-size);
  margin-left: calc(var(--csr-icon-size) / -2);
  border-radius: 9999px;
  background: #ffffff;
  border: 1.5px solid #2b7ffd;
  box-shadow: 0 6px 16px rgba(43, 127, 253, 0.14);
  transform: rotate(calc(var(--a) * -1));
  overflow: hidden;
}

.csr-globe__icon-face img {
  display: block;
  width: 64%;
  height: 64%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .csr-globe {
    width: min(72%, 25rem);
  }

  .csr-globe__orbit-wrap {
    width: min(84%, 33rem);
  }

  .csr-globe__icon-face {
    --csr-icon-size: 3.75rem;
  }

  .csr-globe__cloud--1 {
    width: 3.1rem;
    height: 1rem;
  }

  .csr-globe__cloud--2 {
    width: 3.4rem;
    height: 1.05rem;
  }
}

.contact-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #375AA4;
  flex-shrink: 0;
}

.contact-feature-icon svg,
.contact-feature-icon .material-symbols-outlined {
  width: 1.375rem;
  height: 1.375rem;
  font-size: 1.375rem;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.contact-feature-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
}

.contact-feature-desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}

.contact-form-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #f3f4f6;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .contact-form-card {
    padding: 2rem;
  }
}

.contact-field {
  position: relative;
  display: block;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.75rem 2.75rem 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #111827;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #9ca3af;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.contact-field textarea {
  resize: none;
  min-height: 7rem;
}

.contact-field-icon {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
  color: #9ca3af;
  pointer-events: none;
}

.contact-field-icon--textarea {
  top: 1rem;
  transform: none;
}

.contact-submit-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: #375AA4;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 0 8px 24px rgba(55, 90, 164, 0.25);
}

.contact-submit-btn:hover {
  background: #1d4ed8;
}

.contact-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #374151;
  text-align: center;
}

.contact-privacy svg {
  width: 1rem;
  height: 1rem;
  color: #375AA4;
  flex-shrink: 0;
}

.contact-info-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  padding: 1.35rem 1.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  align-items: center;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

a.contact-info-item:hover .contact-info-value {
  color: #375AA4;
}

.contact-info-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.contact-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-info-icon--blue {
  background: #375AA4;
}

.contact-info-icon--green {
  background: #22c55e;
}

.contact-info-icon--purple {
  background: #8b5cf6;
}

.contact-info-icon--orange {
  background: #f97316;
}

.contact-info-item > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #111827;
}

.contact-info-value {
  font-size: 0.8125rem;
  color: #374151;
  line-height: 1.45;
  transition: color 0.2s ease;
  word-break: break-word;
}

.contact-info-item--address {
  align-items: center;
}

.contact-info-item--address .contact-info-icon {
  margin-top: 0;
}

@media (min-width: 640px) {
  .contact-info-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
  }

  .contact-info-item--address {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .contact-info-bar {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 1.5fr);
    gap: 0;
    padding: 1.5rem 1rem;
    align-items: stretch;
  }

  .contact-info-item--address {
    grid-column: auto;
  }

  .contact-info-item:not(:last-child) {
    border-right: 1px solid #e5e7eb;
    padding-right: 1.25rem;
    margin-right: 1.25rem;
  }

  .contact-info-item--address .contact-info-value {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}

.site-footer {
  position: relative;
}

.footer-wave {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 16rem;
  opacity: 0.28;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.footer-wave canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-brand {
  max-width: 20rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #375AA4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social-link svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer-social-link:hover {
  background: #375AA4;
  color: #fff;
}

.footer-nav-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #375AA4;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-nav-list a {
  font-size: 0.875rem;
  color: #374151;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-list a:hover {
  color: #375AA4;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: #9ca3af;
}

.contact-arc-pattern {
  position: absolute;
  top: -2%;
  right: -1%;
  width: 100px;
  height: 100px;
  color: #c7d2fe;
  opacity: 0.85;
  rotate: 90deg;
}

.contact-wave-pattern {
  position: absolute;
  bottom: -4.5rem;
  left: -1.5rem;
  width: calc(100% + 2rem);
  max-width: 34rem;
  height: auto;
  color: #a5b4fc;
  opacity: 0.55;
  z-index: 0;
}

@media (min-width: 640px) {
  .contact-arc-pattern {
    width: 170px;
    height: 170px;
  }

  .contact-wave-pattern {
    bottom: -5.5rem;
    left: -2.5rem;
    max-width: 38rem;
    opacity: 0.6;
  }
}

.footer-dots {
  display: grid;
  grid-template-columns: repeat(4, 0.375rem);
  gap: 1rem;
  position: absolute;
right: 0;
bottom: 10%;
background: white;
padding: 30px;
}
.footer-dots.dark span{
  background: #2663eb;
}

.footer-dots span {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #bfdbfe;
}

.footer-dots--full-width {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  grid-template-columns: repeat(auto-fill, 0.375rem);
  grid-auto-rows: 0.375rem;
  gap: 0.5rem;
  padding: 1.25rem 7rem;
  max-height: calc(0.375rem * 3 + 0.75rem * 2 + 2.5rem);
  overflow: hidden;
  align-content: start;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
  }

  .footer-nav {
    padding-left: 1.5rem;
    border-left: 1px solid #e5e7eb;
  }
}

html {
  scroll-behavior: smooth;
}
section{
    position: relative;
}

/* ===== Trusted / Companies That Trust (Nest-style fan) ===== */
.trust-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #f8fafc 100%);
}

.trust-section__dots {
  position: absolute;
  top: 8%;
  left: 2%;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(circle, #bfdbfe 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.7;
}

.trust-section__rings {
  position: absolute;
  top: 4%;
  right: 3%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(147, 197, 253, 0.45);
  opacity: 0.7;
}

.trust-section__rings::before,
.trust-section__rings::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(147, 197, 253, 0.4);
}

.trust-section__rings::after {
  inset: 36%;
  border-color: rgba(96, 165, 250, 0.35);
}

.trust-fan {
  position: relative;
  display: none;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 360px;
  margin-left: auto;
  margin-right: auto;
}

.trust-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(300px, 28vw);
  aspect-ratio: 1;
  margin: 0;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  will-change: transform;
  z-index: 1;
  cursor: pointer;
  outline: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-card.is-hovered {
  z-index: 20;
}

.trust-card__face {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding: 1.75rem 1.35rem 1.5rem;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e8eef7;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.03),
    0 16px 40px rgba(55, 90, 164, 0.08);
  transition:
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease,
    align-items 0.35s ease,
    text-align 0.35s ease;
}

.trust-card.is-hovered .trust-card__face,
.trust-card:focus-visible .trust-card__face {
  align-items: center;
  text-align: center;
  border-color: #bfdbfe;
  box-shadow:
    0 8px 16px rgba(15, 23, 42, 0.06),
    0 24px 56px rgba(55, 90, 164, 0.16);
}

.trust-card__logo {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.25rem 0 1.25rem;
}

.trust-card__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.trust-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
}

.trust-card__desc {
  margin-top: 0.65rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
  max-width: 16rem;
}

.trust-card--mobile .trust-card__face {
  align-items: center;
  text-align: center;
}

/* Mobile carousel (Nest-style breakpoint ~1080px) */
.trust-fan-mobile {
  display: block;
}

.trust-fan-mobile__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0.25rem 1.25rem;
  scrollbar-width: none;
}

.trust-fan-mobile__track::-webkit-scrollbar {
  display: none;
}

.trust-card--mobile {
  position: relative;
  left: auto;
  top: auto;
  flex: 0 0 min(320px, 82vw);
  width: min(320px, 82vw);
  aspect-ratio: 1;
  transform: none !important;
  scroll-snap-align: center;
  transition: opacity 0.3s ease;
}

.trust-card--mobile .trust-card__desc {
  margin-top: 0.65rem;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1.25rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem 0;
}

.trust-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.trust-stat__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: #eff6ff;
  color: #375AA4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-stat__icon .material-symbols-outlined {
  font-size: 1.65rem;
}

.trust-stat__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #375AA4;
  line-height: 1.15;
}

.trust-stat__label {
  font-size: 0.9375rem;
  color: #6b7280;
  margin-top: 0.2rem;
}

@media (min-width: 640px) {
  .trust-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
  }

  .trust-stat__value {
    font-size: 2.25rem;
  }

  .trust-stat__label {
    font-size: 1rem;
  }

  .trust-stat__icon {
    width: 4rem;
    height: 4rem;
  }

  .trust-stat__icon .material-symbols-outlined {
    font-size: 1.85rem;
  }
}

@media (min-width: 1080px) {
  .trust-fan {
    display: flex;
  }

  .trust-fan-mobile {
    display: none;
  }

  .trust-card {
    width: 300px;
  }
}

@media (min-width: 1280px) {
  .trust-fan {
    height: 380px;
  }

  .trust-card {
    width: 320px;
  }
}

@media (max-width: 639px) {
  .trust-section__dots,
  .trust-section__rings {
    opacity: 0.4;
  }

  .trust-stats {
    gap: 1.5rem 1rem;
  }

  .trust-stat {
    justify-content: flex-start;
  }

  .trust-stat__value {
    font-size: 1.5rem;
  }

  .trust-stat__label {
    font-size: 0.8125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-card,
  .trust-card__face {
    transition: none !important;
  }
}

/* About — corporate video thumbnail + modal */
.about-video {
  --about-video-radius: 1.25rem;
  position: relative;
  padding: 0.85rem 0.85rem 1.1rem 0.85rem;
}

.about-video__glow {
  position: absolute;
  inset: 8% 4% -4% 4%;
  border-radius: calc(var(--about-video-radius) + 0.5rem);
  background: radial-gradient(
    ellipse at 50% 70%,
    rgba(55, 90, 164, 0.28) 0%,
    rgba(55, 90, 164, 0.08) 45%,
    transparent 72%
  );
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.about-video__frame {
  position: absolute;
  inset: 0.35rem 0.2rem 0.55rem 0.55rem;
  border-radius: calc(var(--about-video-radius) + 0.15rem);
  background: linear-gradient(145deg, #375aa4 0%, #5b7ec4 48%, #9bb0d6 100%);
  opacity: 0.9;
  transform: rotate(-2.5deg);
  z-index: 0;
  pointer-events: none;
}

.about-video__trigger {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--about-video-radius);
  overflow: hidden;
  background: #0f172a;
  cursor: pointer;
  isolation: isolate;
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.16),
    0 8px 20px rgba(55, 90, 164, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.5) inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-video__trigger:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 60px rgba(15, 23, 42, 0.2),
    0 12px 28px rgba(55, 90, 164, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

.about-video__trigger:focus-visible {
  outline: 2px solid #375aa4;
  outline-offset: 4px;
}

.about-video__thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  vertical-align: middle;
  transform: scale(1.01);
  transition: transform 0.45s ease;
}

.about-video__trigger:hover .about-video__thumb {
  transform: scale(1.045);
}

.about-video__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.18) 0%,
      transparent 32%,
      transparent 58%,
      rgba(15, 23, 42, 0.42) 100%
    ),
    radial-gradient(
      circle at 50% 50%,
      transparent 0%,
      transparent 42%,
      rgba(15, 23, 42, 0.2) 100%
    );
  pointer-events: none;
}

.about-video__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

.about-video__badge::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: #7dd3fc;
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.25);
}

.about-video__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.about-video__play-ring {
  position: absolute;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  animation: about-video-pulse 2.4s ease-out infinite;
}

.about-video__play-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.35rem;
  height: 4.35rem;
  border-radius: 9999px;
  color: #375aa4;
  background: linear-gradient(180deg, #ffffff 0%, #eef3fb 100%);
  box-shadow:
    0 14px 36px rgba(15, 23, 42, 0.28),
    0 0 0 6px rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-video__play-btn svg {
  width: 1.55rem;
  height: 1.55rem;
  margin-left: 0.15rem;
}

.about-video__trigger:hover .about-video__play-btn {
  transform: scale(1.08);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.32),
    0 0 0 8px rgba(255, 255, 255, 0.22);
}

@keyframes about-video-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.28);
    opacity: 0;
  }
  100% {
    transform: scale(1.28);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-video__play-ring {
    animation: none;
  }

  .about-video__trigger,
  .about-video__thumb,
  .about-video__play-btn {
    transition: none;
  }
}

.about-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.about-video-modal[hidden] {
  display: none !important;
}

.about-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(4px);
}

.about-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.about-video-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  border-radius: 9999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.65);
  cursor: pointer;
  transition: background 0.2s ease;
}

.about-video-modal__close:hover {
  background: rgba(15, 23, 42, 0.9);
}

.about-video-modal__close svg {
  width: 1.15rem;
  height: 1.15rem;
}

.about-video-modal__player {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(80vh, 540px);
  background: #000;
  aspect-ratio: 16 / 9;
}

body.about-video-open {
  overflow: hidden;
}