/* About page composition. Reuses homepage primitives (home.css) and the
   global HansalDev premium system (theme.css / premium.css / motion.css).
   Only page-specific layout and micro-adjustments live here. */
.hd-about-hero { padding-top: 100px; }
.hd-about-hero .hs-about-breadcrumb { margin-bottom: 28px; }
.hs-about-breadcrumb .breadcrumb { margin-bottom: 0; font-size: 13px; }

/* Hero decorative network (CSS/SVG only — no 3D on this page). */
.hs-about-network-body { padding: 20px; display: grid; gap: 14px; }
.hs-about-network { width: 100%; height: auto; display: block; }

/* Story section. */
.hs-about-story .col-lg-6 > p { color: var(--hs-muted); font-size: 16px; line-height: 1.8; margin: 0 0 16px; }
.hs-about-story .hd-actions { margin-top: 28px; }

.hs-story-visual { position: relative; display: flex; justify-content: center; }
.hs-story-glow {
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.hs-story-frame { width: 100%; max-width: 560px; }
.hs-story-shot { aspect-ratio: 16 / 10; overflow: hidden; background: var(--hs-bg-soft); }
.hs-story-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--hs-motion-slow) ease;
}
.hs-story-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background-image: var(--hs-grad-soft);
}
@media (hover: hover) {
  .hs-story-frame:hover .hs-story-shot img { transform: scale(1.02); }
}

/* Products + custom development blocks. */
.hs-action-block .hs-action-category {
  color: var(--hs-primary-hover);
  font-size: 14px;
  font-weight: 600;
  margin: 8px 0 0;
}
@media (hover: hover) {
  .hs-action-block:hover .hs-showcase-media img { transform: scale(1.03); }
}

/* How we build: horizontal process on desktop, vertical timeline on mobile. */
.hs-process-row { position: relative; }
.hs-process-rail {
  position: absolute;
  top: 32px;
  left: calc(16.6667% + 34px);
  right: calc(16.6667% + 34px);
  height: 2px;
  border-radius: 999px;
  background: var(--hs-border);
  transform-origin: 0 50%;
  z-index: 0;
  pointer-events: none;
}
.hd-step { position: relative; z-index: 1; text-align: center; }
.hs-step-num {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--hs-primary-light);
  color: var(--hs-primary);
  font: 700 20px/1 var(--font-heading);
}
.hd-step h3 { font-size: 20px; margin-bottom: 12px; }
.hd-step p { color: var(--hs-muted); font-size: 15px; margin: 0 auto; max-width: 320px; }

@media (max-width: 991.98px) {
  .hs-process-rail { display: none; }
  .hd-step {
    position: relative;
    padding-left: 92px;
    text-align: left;
  }
  .hs-step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    margin: 0;
    font-size: 18px;
  }
  .hs-process-row .hd-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 70px;
    bottom: -32px;
    width: 2px;
    border-radius: 999px;
    background: var(--hs-border);
  }
  .hd-step p { margin: 0; }
}

@media (max-width: 767.98px) {
  .hd-about-hero { padding-top: 56px; }
  .hd-about-hero .hs-about-breadcrumb { margin-bottom: 20px; }
  .hs-about-network-body { padding: 16px; }
}