/* MicroHub - Home Page Styles */

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 72px 0 44px;
  overflow: hidden;
  background: linear-gradient(135deg, #121A24 0%, #0f172a 48%, #2D3D4F 100%);
  isolation: isolate;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(99, 102, 241, 0.16) 0%, transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(99, 102, 241, 0.14) 0%, transparent 28%),
    linear-gradient(180deg, rgba(18, 26, 36, 0.06) 0%, rgba(18, 26, 36, 0.32) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.72;
}

.hero-content-shell {
  z-index: 1;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 90px);
  mask-image: radial-gradient(circle at center, #000 0%, #000 44%, transparent 82%);
  animation: hero-grid-drift 22s linear infinite;
  pointer-events: none;
}

.hero-bg-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  transform: translate3d(0, var(--home-shift, 0px), 0);
  will-change: transform;
}

.hero-bg-orb--one {
  top: 13%;
  left: 4%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 70%);
  animation: hero-orb-breathe 8s ease-in-out infinite;
}

.hero-bg-orb--two {
  right: 5%;
  bottom: 9%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  animation: hero-orb-breathe 10s ease-in-out 2s infinite;
}

.hero-kicker {
  background: rgba(99, 102, 241, 0.18);
  color: var(--primary-light);
  border: 1px solid rgba(99, 102, 241, 0.18);
  box-shadow: 0 10px 28px rgba(6, 78, 59, 0.18);
}

.hero-title {
  margin-bottom: 1.1rem;
  color: var(--white);
  font-size: clamp(1.75rem, 3.3vw, 3.1rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-title-accent {
  color: var(--primary-light);
}

.hero-lead {
  margin-bottom: 2rem;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-secondary-btn {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}

.hero-secondary-btn:hover {
  border-color: rgba(99, 102, 241, 0.26);
}

.hero-proof-list {
  transition-delay: 0.6s;
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.hero-proof-item i {
  color: var(--primary-light);
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 560px;
  margin-top: 1.4rem;
}

.hero-mini-card {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 34px rgba(26, 37, 50, 0.16);
  backdrop-filter: blur(14px);
}

.hero-mini-card strong,
.hero-mini-card span {
  display: block;
}

.hero-mini-card strong {
  margin-bottom: 0.16rem;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-mini-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.45;
}

@keyframes hero-grid-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(18px, 12px, 0);
  }
}

@keyframes hero-orb-breathe {
  0%,
  100% {
    transform: translate3d(0, var(--home-shift, 0px), 0) scale(1);
  }
  50% {
    transform: translate3d(0, calc(var(--home-shift, 0px) - 12px), 0) scale(1.04);
  }
}

.feature-card {
  height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(99, 102, 241, 0.15);
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.13);
}

.feature-card h4 {
  margin-bottom: 0.6rem;
  color: #1f2937;
  font-size: 1.08rem;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.6;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 0.8rem;
  background: none !important;
}
.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  display: block;
}
.testimonial-text {
  display: -webkit-box;
  -webkit-line-clamp: 6; /* 👈 same lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.hero-globe-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 720px;
  width: 100%;
  overflow: visible;
}

.hero-visual-stage::before,
.hero-visual-stage::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s ease;
}

.hero-visual-stage::before {
  width: 480px;
  height: 480px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.hero-visual-stage::after {
  width: 550px;
  height: 550px;
  border: 1px dashed rgba(99, 102, 241, 0.18);
}

.hero-visual-stage.is-settled::before,
.hero-visual-stage.is-settled::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hero-globe-shell {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
  aspect-ratio: 1;
}

.hero-globe-canvas {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  aspect-ratio: 1;
}

.hero-globe-shell::before {
  content: '';
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(99, 102, 241, 0.03) 55%, transparent 72%);
  filter: blur(18px);
  z-index: -1;
}

.hero-globe-shell::after {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(99, 102, 241, 0.16);
  box-shadow:
    0 0 34px rgba(99, 102, 241, 0.16),
    inset 0 0 24px rgba(99, 102, 241, 0.06);
}

.hero-product-card {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 220px;
  padding: 0.8rem 1.05rem;
  border: 1px solid #d9e2ec;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #F3F7FB 100%);
  color: #0f172a;
  text-decoration: none;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  box-shadow:
    0 20px 44px rgba(15, 23, 42, 0.14),
    0 2px 10px rgba(15, 23, 42, 0.05);
  transform: translate(-50%, -50%) scale(0.68);
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s ease,
    filter 0.5s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.hero-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.04));
  pointer-events: none;
}

.hero-product-card::after {
  content: '';
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.65), transparent 78%);
  opacity: 0.75;
  pointer-events: none;
}

.hero-visual-stage.is-settled .hero-product-card {
  opacity: 1;
  filter: none;
  pointer-events: auto;
  transform: translate(calc(-50% + var(--orbit-x)), calc(-50% + var(--orbit-y))) scale(1);
}

.hero-visual-stage.is-settled .hero-product-card:hover {
  transform: translate(calc(-50% + var(--orbit-x)), calc(-50% + var(--orbit-y))) scale(1.04);
  border-color: rgba(99, 102, 241, 0.42);
  box-shadow:
    0 28px 52px rgba(15, 23, 42, 0.2),
    0 0 0 4px rgba(99, 102, 241, 0.08);
  color: #0f172a;
}

.hero-product-card:focus-visible {
  outline: none;
  border-color: rgba(99, 102, 241, 0.58);
  box-shadow:
    0 28px 52px rgba(15, 23, 42, 0.2),
    0 0 0 4px rgba(99, 102, 241, 0.12);
}

.hero-product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(99, 102, 241, 0.16);
  border-radius: 14px 18px 14px 18px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.14), rgba(99, 102, 241, 0.05));
  color: #4F46E5;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-product-copy {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  min-width: 0;
}

.hero-product-name {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-product-meta {
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.18rem;
  color: #4F46E5;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-product-link i {
  transition: transform 0.25s ease;
}

.hero-product-card:hover .hero-product-link i,
.hero-product-card:focus-visible .hero-product-link i {
  transform: translateX(3px);
}

.hero-product-card--crm {
  --orbit-x: 0px;
  --orbit-y: -244px;
  transition-delay: 0.04s;
}

.hero-product-card--ticketing {
  --orbit-x: -188px;
  --orbit-y: -132px;
  transition-delay: 0.1s;
}

.hero-product-card--inventory {
  --orbit-x: -278px;
  --orbit-y: 56px;
  transition-delay: 0.16s;
}

.hero-product-card--hr {
  --orbit-x: 278px;
  --orbit-y: 56px;
  transition-delay: 0.22s;
}

.hero-product-card--task {
  --orbit-x: 188px;
  --orbit-y: -132px;
  transition-delay: 0.28s;
}

.hero-product-card--finance {
  --orbit-x: 0px;
  --orbit-y: 244px;
  transition-delay: 0.34s;
}

.home-products-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.12) 0%, transparent 20%),
    radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.08) 0%, transparent 22%),
    linear-gradient(180deg, #EFF4F9 0%, #F4F7FB 44%, #ffffff 100%);
}

.capabilities-section {
  position: relative;
}

.capabilities-section .flip-card {
  height: 390px;
}

.capabilities-section .flip-card-inner,
.capabilities-section .flip-card-front,
.capabilities-section .flip-card-back {
  border-radius: 24px;
}

.capabilities-section .flip-card-front {
  justify-content: flex-end;
}

.capabilities-section .flip-card-front::after {
  background: linear-gradient(180deg, rgba(5, 14, 18, 0.06) 0%, rgba(5, 14, 18, 0.16) 34%, rgba(5, 14, 18, 0.86) 100%);
}

.capabilities-section .flip-front-img {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1.45rem 1.5rem 0;
}

.capabilities-section .flip-front-icon-ring {
  width: 80px;
  height: 80px;
}

.capabilities-section .flip-front-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 1.35rem 1.45rem 1.45rem;
  background: none;
}

.capabilities-section .flip-tag {
  width: fit-content;
  margin-bottom: 0.7rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.capabilities-section .flip-title {
  margin: 0 0 0.4rem;
  font-size: 1.7rem;
  line-height: 1.02;
}

.capabilities-section .flip-hint {
  margin-top: auto;
  padding-top: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-style: italic;
}

.capabilities-section .flip-hint i {
  color: rgba(255, 255, 255, 0.72);
}

.capabilities-section .flip-card-back {
  padding: 1.45rem;
  border-color: rgba(99, 102, 241, 0.12);
  box-shadow: 0 20px 48px rgba(99, 102, 241, 0.14);
}

.capabilities-section .flip-card-back--teal {
  background: linear-gradient(160deg, #F4F7FB 0%, #ffffff 100%);
}

.capabilities-section .flip-back-header {
  margin-bottom: 0.85rem;
}

.capabilities-section .flip-back-header h4 {
  font-size: 1.08rem;
}

.capabilities-section .flip-back-desc {
  margin-bottom: 0.95rem;
}

.capabilities-section .flip-back-list {
  gap: 0.42rem;
  margin-bottom: 1rem;
}

.capabilities-section .flip-back-list li {
  line-height: 1.45;
}

.capabilities-section .flip-cta {
  margin-top: auto;
}

.flip-front-desc {
  margin: 0;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  line-height: 1.55;
}

@media (max-width: 1199.98px) {
  .capabilities-section .flip-card {
    height: 370px;
  }

  .capabilities-section .flip-title {
    font-size: 1.55rem;
  }
}

@media (max-width: 991.98px) {
  .capabilities-section .flip-card {
    height: 350px;
  }

  .capabilities-section .flip-front-img {
    padding-top: 1.3rem;
  }
}

@media (max-width: 767.98px) {
  .capabilities-section .flip-card {
    height: auto;
  }

  .capabilities-section .flip-front-img {
    padding: 1.1rem 1.2rem 0;
  }

  .capabilities-section .flip-front-body {
    padding: 1.1rem 1.2rem 1.2rem;
  }

  .capabilities-section .flip-title {
    font-size: 1.35rem;
  }

  .capabilities-section .flip-card-back {
    padding: 1.15rem;
  }
}

.products-spotlight {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.35rem;
  padding: 1.45rem;
  border-radius: 34px;
  border: 1px solid rgba(99, 102, 241, 0.14);
  background: linear-gradient(140deg, #131B25 0%, #1a2332 54%, #1e2d3d 100%);
  box-shadow: 0 24px 58px rgba(26, 37, 50, 0.12);
}

.products-spotlight::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 80px);
  opacity: 0.58;
  pointer-events: none;
}

.products-spotlight-copy,
.products-spotlight-visual {
  position: relative;
  z-index: 1;
}

.products-spotlight .section-label {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.products-spotlight-title {
  margin-bottom: 0.85rem;
  max-width: 10ch;
  color: var(--white);
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.products-spotlight-desc {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.74);
}

.products-spotlight-points {
  display: grid;
  gap: 0.62rem;
  margin: 1.15rem 0 1.3rem;
}

.products-spotlight-points span {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  line-height: 1.55;
}

.products-spotlight-points i {
  color: rgba(255,255,255,0.65);
}

.products-spotlight-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.products-spotlight-metric {
  padding: 0.95rem 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.06);
}

.products-spotlight-metric strong,
.products-spotlight-metric span {
  display: block;
}

.products-spotlight-metric strong {
  margin-bottom: 0.2rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.products-spotlight-metric span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  line-height: 1.45;
}

.products-spotlight-visual {
  position: relative;
  min-height: 420px;
  transform: translate3d(0, var(--home-shift, 0px), 0);
  transition: transform 0.16s linear;
  will-change: transform;
}

.products-visual-image {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(26, 37, 50, 0.12) 0%, rgba(26, 37, 50, 0.82) 100%),
    url('../assets/images/on team.png') center/cover no-repeat;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 22px 48px rgba(26, 37, 50, 0.18);
}

.products-visual-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.2), transparent 40%),
    radial-gradient(circle at top right, rgba(99, 102, 241, 0.24) 0%, transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 68px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 68px);
}

.products-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product-float-card {
  position: absolute;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(26, 37, 50, 0.72);
  box-shadow: 0 16px 30px rgba(26, 37, 50, 0.2);
  backdrop-filter: blur(14px);
}

.product-float-card--main {
  left: 1rem;
  bottom: 1rem;
  width: min(340px, calc(100% - 2rem));
  padding: 1rem 1.05rem;
}

.product-float-card--mini {
  top: 1rem;
  right: 1rem;
  min-width: 200px;
  padding: 0.8rem 0.9rem;
  animation: product-float 7s ease-in-out infinite;
}

.product-float-card--chip {
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  animation: product-float 8s ease-in-out 1s infinite;
}

.product-float-card--chip i {
  color: rgba(255,255,255,0.65);
}

.product-float-label,
.product-float-card--mini span {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: rgba(153, 246, 228, 0.88);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-float-card strong {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.18;
}

.product-float-card small {
  display: block;
  margin-top: 0.32rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  line-height: 1.5;
}

.products-visual-rail {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  width: 174px;
}

.products-visual-rail span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.58rem 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 700;
}

.products-visual-rail i {
  color: rgba(255,255,255,0.72);
}

.product-highlight-grid {
  margin-top: 1.25rem;
}

.product-highlight-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-highlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.28);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

/* Image area */
.product-highlight-media {
  position: relative;
  height: 180px;
  min-height: 170px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  flex-shrink: 0;
}

.product-highlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.product-highlight-card:hover .product-highlight-img {
  transform: scale(1.04);
}

.product-highlight-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 17, 23, 0.08) 0%, rgba(13, 17, 23, 0.42) 100%);
  pointer-events: none;
}

/* Icon badge on image */
.product-media-badge {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.product-media-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--primary);
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-media-cat {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Card body */
.product-highlight-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.95rem 1rem 0.8rem;
}

.product-highlight-body h3 {
  margin: 0 0 0.32rem;
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.product-highlight-body p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.84rem;
  line-height: 1.65;
}

.product-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-top: 0.85rem;
}

.product-highlight-list span {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
}

.product-highlight-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 0.45rem;
  border-top: none;
  margin-top: 0.6rem;
}

.product-highlight-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  transition: gap 0.2s ease;
}

.product-highlight-card:hover .product-highlight-link {
  gap: 0.65rem;
}

.product-highlight-link i {
  transition: transform 0.25s ease;
}

.product-highlight-card:hover .product-highlight-link i {
  transform: translateX(3px);
}

.customer-slider-section {
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(46, 75, 101, 0.08) 0%, transparent 22%),
    radial-gradient(circle at bottom right, rgba(46, 75, 101, 0.08) 0%, transparent 20%),
    linear-gradient(180deg, #f5f8fc 0%, #eef4f8 100%);
  padding: 52px 0;
}
.customer-slider-section + .section-pad {
  padding-top: 48px;
}

.customer-slider-title {
  margin-bottom: 0.75rem;
}

.customer-slider-shell {
  position: relative;
  overflow: hidden;
  padding: 0.35rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.customer-slider-track {
  display: flex;
  width: max-content;
  animation: customer-logo-marquee 34s linear infinite;
  will-change: transform;
}

.customer-slider-shell:hover .customer-slider-track {
  animation-play-state: paused;
}

.customer-slider-group {
  display: flex;
  align-items: stretch;
  gap: 1.15rem;
  padding-right: 1.15rem;
  flex-shrink: 0;
}

.customer-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(160px, 18vw, 220px);
  height: 108px;
  padding: 1.2rem 1.35rem;
  border-radius: 22px;
  border: 1px solid rgba(46, 75, 101, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.customer-logo-card img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
}

@keyframes customer-logo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.why-microhub-section {
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.08) 0%, transparent 24%),
    radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.06) 0%, transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #F5F8FC 100%);
}

.why-story-layout {
  position: relative;
}

.why-story-media {
  flex: 1 1 auto;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #E1E8F0;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
}

.why-story-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.why-story-copy {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
  padding: 0.45rem 0 0.45rem 1.15rem;
}

.why-story-title {
  margin: 0 0 0.8rem;
  color: var(--dark);
  font-size: clamp(1.3rem, 1.9vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  max-width: none;
}

.why-story-lead {
  max-width: 62ch;
  margin: 0 0 1.4rem;
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.75;
}

.why-story-list {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.why-story-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.why-story-index {
  display: inline-block;
  color: rgba(15, 118, 110, 0.34);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.why-story-body h4 {
  margin: 0 0 0.28rem;
  color: var(--dark);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.why-story-body p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.87rem;
  line-height: 1.68;
  max-width: 62ch;
}

.why-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.25rem;
  padding-top: 1rem;
}

.why-story-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.why-story-meta span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  flex-shrink: 0;
}

.why-story-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.why-story-actions p {
  margin: 0;
  max-width: 38ch;
  color: var(--text-light);
  font-size: 0.84rem;
  line-height: 1.7;
}

.infra-command h3 {
  max-width: 26ch;
  font-size: clamp(1.08rem, 1.38vw, 1.28rem);
  line-height: 1.1;
  text-wrap: balance;
}

.infra-command p {
  max-width: 46ch;
  font-size: 0.86rem;
  line-height: 1.58;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.infra-visual-stage {
  position: relative;
  overflow: hidden;
  min-height: 196px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 74px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 74px);
  transform: translate3d(0, var(--home-shift, 0px), 0);
  transition: transform 0.16s linear;
  will-change: transform;
}

.infra-visual-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 37, 50, 0.08) 0%, rgba(26, 37, 50, 0.78) 100%),
    url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}

.infra-visual-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 24%, rgba(99, 102, 241, 0.18) 0%, transparent 20%),
    radial-gradient(circle at 78% 28%, rgba(96, 165, 250, 0.16) 0%, transparent 24%);
}

.hardware-showcase-section {
  background:
    radial-gradient(circle at top right, rgba(99, 102, 241, 0.08) 0%, transparent 24%),
    radial-gradient(circle at bottom left, rgba(99, 102, 241, 0.08) 0%, transparent 26%),
    linear-gradient(180deg, #F4F7FB 0%, #EFF4F9 100%);
}

.hardware-showcase-panel {
  position: relative;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hardware-showcase-panel::before {
  display: none;
}

.hardware-showcase-panel::after {
  display: none;
}

.hardware-showcase-head,
.hardware-slider-window,
.hardware-slider-footer {
  position: relative;
  z-index: 1;
}

.hardware-showcase-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.1rem;
  text-align: center;
}

.hardware-showcase-copy {
  max-width: 72ch;
  margin: 0 auto;
  text-align: center;
}

.hardware-showcase-title {
  margin-bottom: 0.55rem;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 1.02;
}

.hardware-showcase-desc {
  margin-bottom: 0;
  max-width: 74ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9rem;
  line-height: 1.5;
}

.hardware-showcase-toolbar {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.hardware-slider-controls {
  display: inline-flex;
  gap: 0.65rem;
}

.hardware-slider-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #F1F5FA 100%);
  color: var(--dark);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.hardware-slider-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.22);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.09);
}

.hardware-slider-window {
  overflow: hidden;
}

.hardware-track {
  display: flex;
  gap: 0.8rem;
  align-items: stretch;
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hardware-card {
  --hardware-rgb: 46, 75, 101;
  position: relative;
  overflow: hidden;
  flex: 0 0 calc((100% - 2.4rem) / 4);
  min-width: 0;
  min-height: 294px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0;
  background: linear-gradient(180deg, #ffffff 0%, #F5F8FC 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  color: inherit;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hardware-card::before {
  content: '';
  position: absolute;
  top: -18px;
  right: -22px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--hardware-rgb), 0.16) 0%, transparent 68%);
  pointer-events: none;
}

.hardware-card:hover {
  transform: translateY(-7px);
  border-color: rgba(var(--hardware-rgb), 0.28);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.hardware-card-media {
  position: relative;
  height: 152px;
  overflow: hidden;
  background: #DCE4ED;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.hardware-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 37, 50, 0) 0%, rgba(26, 37, 50, 0.14) 100%),
    linear-gradient(135deg, rgba(var(--hardware-rgb), 0.14) 0%, transparent 44%);
}

.hardware-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.hardware-card:hover .hardware-card-media img {
  transform: scale(1.05);
}

.hardware-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.48rem;
  padding: 0.82rem 0.9rem 0.92rem;
}

.hardware-card h3 {
  margin: 0;
  color: var(--dark);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hardware-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.79rem;
  line-height: 1.52;
}

.hardware-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin-top: auto;
  color: var(--primary-dark);
  font-size: 0.74rem;
  font-weight: 800;
}

.hardware-card-link i {
  transition: transform 0.25s ease;
}

.hardware-card:hover .hardware-card-link i {
  transform: translateX(3px);
}

.hardware-card--laptops,
.hardware-card--desktops,
.hardware-card--smartphones,
.hardware-card--mac,
.hardware-card--printers,
.hardware-card--networking,
.hardware-card--accessories {
  --hardware-rgb: 46, 75, 101;
}

.hardware-slider-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.95rem;
}

.hardware-slider-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hardware-slider-dot {
  width: 16px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
  transition:
    width 0.25s ease,
    background 0.25s ease,
    opacity 0.25s ease;
}

.hardware-slider-dot.is-active {
  width: 32px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.hardware-showcase-panel.is-static .hardware-slider-controls {
  opacity: 0.42;
  pointer-events: none;
}

.hardware-showcase-panel.is-static .hardware-slider-dots {
  display: none;
}

.home-cta {
  background:
    radial-gradient(circle at 12% 18%, rgba(99, 102, 241, 0.18) 0%, transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(96, 165, 250, 0.2) 0%, transparent 24%),
    linear-gradient(135deg, #141210 0%, #26211C 48%, #3B332C 100%);
  isolation: isolate;
}

.home-cta::before {
  top: 50%;
  left: 50%;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 42%, transparent 72%);
  opacity: 0.8;
}

.home-cta::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 110px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 110px);
  opacity: 0.12;
}

.home-cta-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow: 0 34px 72px rgba(3, 12, 17, 0.28);
}

.home-cta-shell::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  pointer-events: none;
}

.home-cta-shell::after {
  content: '';
  position: absolute;
  top: 0;
  right: -16%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.home-cta-copy,
.home-cta-brief {
  position: relative;
  z-index: 1;
}

.home-cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 0.25rem 0;
}

.home-cta-eyebrow {
  display: inline-flex;
  width: max-content;
  margin-bottom: 1rem;
  padding: 0.46rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d6faf4;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-cta-title {
  margin: 0 0 1rem;
  max-width: 12ch;
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.home-cta-text {
  margin: 0 0 2rem;
  max-width: 57ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.72;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.home-cta-actions .btn-white-custom {
  box-shadow: 0 16px 34px rgba(255, 255, 255, 0.16);
}

.home-cta-outline {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.home-cta-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: none;
}

.home-cta-brief {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: clamp(1.2rem, 2vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(5, 17, 20, 0.34), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(14px);
}

.home-cta-brief-label {
  margin: 0;
  color: #9ae9dc;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-cta-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 0.95rem 0 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-cta-step:last-of-type {
  padding-bottom: 0.15rem;
  border-bottom: 0;
}

.home-cta-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.home-cta-step h3 {
  margin: 0 0 0.32rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-cta-step p {
  margin: 0;
  max-width: 31ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.66;
}

.home-cta-note {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: auto;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1.6;
}

.home-cta-note i {
  margin-top: 0.16rem;
  color: #98f0e5;
}

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

@media (max-width: 1399.98px) {
  .hero-product-card {
    width: 210px;
  }

  .hardware-card {
    flex-basis: calc((100% - 1.6rem) / 3);
  }
}

@media (max-width: 1199.98px) {
  .hero-visual-stage {
    min-height: 660px;
  }

  .hero-title {
    font-size: clamp(1.65rem, 4vw, 2.7rem);
  }

  .hero-mini-grid {
    max-width: none;
  }

  .hero-globe-shell {
    width: 280px;
    height: 280px;
  }

  .hero-product-card {
    width: 194px;
    padding: 0.76rem 0.95rem;
  }

  .hero-visual-stage::before {
    width: 410px;
    height: 410px;
  }

  .hero-visual-stage::after {
    width: 480px;
    height: 480px;
  }

  .hero-product-card--crm { --orbit-x: 0px; --orbit-y: -220px; }
  .hero-product-card--ticketing { --orbit-x: -158px; --orbit-y: -118px; }
  .hero-product-card--inventory { --orbit-x: -236px; --orbit-y: 50px; }
  .hero-product-card--hr { --orbit-x: 236px; --orbit-y: 50px; }
  .hero-product-card--task { --orbit-x: 158px; --orbit-y: -118px; }
  .hero-product-card--finance { --orbit-x: 0px; --orbit-y: 220px; }

  .products-spotlight-title {
    max-width: none;
  }

  .products-spotlight-visual {
    min-height: 390px;
  }

  .why-story-media img {
    min-height: 520px;
  }

  .why-story-title {
    max-width: none;
  }

  .hardware-showcase-title {
    max-width: none;
  }

  .hardware-card {
    flex-basis: calc((100% - 1.6rem) / 3);
  }
}

@media (max-width: 991.98px) {
  .hero-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-globe-wrap {
    margin-top: 3rem;
  }

  .hero-visual-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 1rem;
    min-height: auto;
  }

  .hero-visual-stage::before,
  .hero-visual-stage::after {
    display: none;
  }

  .hero-globe-shell {
    grid-column: 1 / -1;
    order: -1;
    width: min(100%, 360px);
    height: auto;
    margin: 0 auto 0.75rem;
  }

  .hero-product-card {
    position: static;
    width: 100%;
    min-height: 100%;
    transform: none;
    opacity: 1;
    filter: none;
    pointer-events: auto;
  }

  .hero-visual-stage.is-settled .hero-product-card,
  .hero-visual-stage.is-settled .hero-product-card:hover {
    transform: none;
  }

  .products-spotlight {
    padding: 1.2rem;
  }

  .products-spotlight-copy {
    text-align: left;
  }

  .products-spotlight-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .products-spotlight-visual {
    min-height: 360px;
  }

  .product-float-card--main {
    width: min(300px, calc(100% - 2rem));
  }

  .products-visual-rail {
    width: 150px;
  }

  .product-highlight-card {
    min-height: 0;
  }

  .why-story-copy {
    min-height: auto;
    padding: 0;
  }

  .why-story-media img {
    min-height: 440px;
  }

  .why-story-title {
    max-width: none;
  }

  .infra-visual-stage {
    min-height: 220px;
  }

  .hardware-showcase-head {
    align-items: center;
  }

  .hardware-showcase-toolbar {
    justify-content: center;
  }

  .hardware-slider-footer {
    align-items: center;
    flex-direction: column;
  }

  .hardware-card {
    flex-basis: calc((100% - 0.8rem) / 2);
  }

  .home-cta-shell {
    border-radius: 28px;
  }

  .home-cta-title {
    max-width: none;
  }

  .home-cta-copy {
    padding-bottom: 0.35rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 104px 0 54px;
  }

  .hero-grid-lines {
    display: none;
  }

  .hero-title {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-proof-list {
    justify-content: center;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .hero-globe-wrap {
    margin-top: 2rem;
  }

  .hero-visual-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .hero-globe-shell {
    display: none;
  }

  .hero-product-card {
    padding: 0.72rem 0.82rem;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  }

  .hero-product-icon {
    width: 40px;
    height: 40px;
    font-size: 0.92rem;
  }

  .hero-product-name {
    font-size: 0.86rem;
  }

  .hero-product-meta,
  .hero-product-link {
    font-size: 0.74rem;
  }

  .products-spotlight {
    padding: 1rem;
    border-radius: 28px;
  }

  .products-spotlight::before {
    inset: 14px;
    border-radius: 20px;
  }

  .products-spotlight-metrics {
    grid-template-columns: 1fr;
  }

  .products-spotlight-visual {
    min-height: auto;
  }

  .products-visual-image {
    border-radius: 24px;
  }

  .products-visual-overlay {
    position: relative;
    display: grid;
    gap: 0.75rem;
    padding: 0.9rem;
  }

  .product-float-card {
    position: static;
    width: 100%;
    min-width: 0;
    animation: none;
  }

  .products-visual-rail {
    position: static;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 0.9rem 0.9rem;
  }

  .products-visual-rail span {
    justify-content: center;
  }

  .product-highlight-card {
    padding: 1rem;
  }

  .why-story-media {
    border-radius: 26px;
  }

  .why-story-media img {
    min-height: 320px;
  }

  .why-story-title {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .why-story-item {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .why-story-index {
    font-size: 1.45rem;
  }

  .why-story-meta {
    gap: 0.65rem 1rem;
  }

  .why-story-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .why-story-actions p {
    max-width: none;
  }

  .product-highlight-top,
  .product-highlight-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .infra-command h3,
  .infra-command p {
    max-width: none;
  }

  .infra-visual-stage {
    min-height: 230px;
  }

  .hardware-showcase-panel {
    padding: 0;
    border-radius: 0;
  }

  .hardware-showcase-panel::after {
    display: none;
  }

  .hardware-showcase-title {
    font-size: clamp(1.28rem, 6.4vw, 1.7rem);
  }

  .hardware-slider-btn {
    width: 40px;
    height: 40px;
  }

  .hardware-track {
    gap: 0.75rem;
  }

  .hardware-card {
    flex-basis: 100%;
    min-height: 0;
  }

  .hardware-card-media {
    height: 174px;
  }

  .hardware-slider-footer {
    margin-top: 1rem;
  }

  .home-cta-shell {
    padding: 1rem;
    border-radius: 24px;
  }

  .home-cta-shell::before {
    inset: 10px;
    border-radius: 18px;
  }

  .home-cta-shell::after {
    right: -42%;
    width: 240px;
    height: 240px;
  }

  .home-cta-title {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
  }

  .home-cta-actions {
    flex-direction: column;
  }

  .home-cta-actions a {
    width: 100%;
    justify-content: center;
  }

  .home-cta-brief {
    gap: 0.9rem;
    border-radius: 22px;
  }

  .home-cta-step {
    gap: 0.8rem;
  }

  .home-cta-step p {
    max-width: none;
  }
}

.infra-solutions-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(99, 102, 241, 0.06) 0%, transparent 22%),
    linear-gradient(180deg, #F4F7FB 0%, #EEF2F8 100%);
}

.infra-solutions-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 46%),
    repeating-linear-gradient(90deg, rgba(99, 102, 241, 0.015) 0 1px, transparent 1px 132px),
    repeating-linear-gradient(0deg, rgba(15, 23, 42, 0.01) 0 1px, transparent 1px 132px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.14));
  pointer-events: none;
}

.infra-solutions-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1rem, 2vw, 1.45rem);
  align-items: stretch;
}

.infra-solutions-copy {
  position: relative;
  padding: 1.35rem;
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
}

.infra-solutions-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  width: auto;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.95), rgba(99, 102, 241, 0.38));
  filter: none;
  pointer-events: none;
}

.infra-solutions-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.54rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.12);
  background: rgba(99, 102, 241, 0.07);
  color: #5B67FF;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: none;
}

.infra-solutions-title {
  max-width: none;
  margin: 0 0 0.75rem;
  color: var(--dark);
  font-size: clamp(1.75rem, 2.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.infra-solutions-title span {
  color: #6366F1;
}

.infra-solutions-desc {
  max-width: 42ch;
  margin: 0;
  color: #5A6B86;
  font-size: 0.93rem;
  line-height: 1.65;
}

.infra-solutions-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.45rem;
  max-width: none;
}

.infra-solutions-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
}

.infra-solutions-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.09);
  color: #5B67FF;
  box-shadow: none;
}

.infra-solutions-item strong {
  display: block;
  margin: 0;
  color: #0F172A;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.infra-solutions-item p {
  margin: 0;
  color: #5F6E88;
  font-size: 0.84rem;
  line-height: 1.55;
}

.infra-solutions-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  margin-top: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: #FBFCFF;
  box-shadow: none;
  backdrop-filter: none;
}

.infra-solutions-stat {
  padding: 0.95rem 0.8rem 0.88rem;
  text-align: center;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.infra-solutions-stat:last-child {
  border-right: 0;
}

.infra-solutions-stat strong,
.infra-solutions-stat span {
  display: block;
}

.infra-solutions-stat strong {
  margin-bottom: 0.1rem;
  color: #6366F1;
  font-size: clamp(1.45rem, 2.2vw, 1.82rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.infra-solutions-stat span {
  color: #607089;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.infra-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.infra-solution-card {
  --infra-accent: #6366F1;
  --infra-accent-rgb: 99, 102, 241;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 13.7rem;
  padding: 1rem;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(var(--infra-accent-rgb), 0.12);
  background: rgba(255, 255, 255, 0.98);
  color: #0F172A;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.infra-solution-card::before {
  content: '';
  position: absolute;
  right: -1.8rem;
  top: -1.8rem;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--infra-accent-rgb), 0.08) 0%, transparent 72%);
  pointer-events: none;
}

.infra-solution-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(var(--infra-accent-rgb), 0.95), rgba(var(--infra-accent-rgb), 0.42));
  pointer-events: none;
}

.infra-solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--infra-accent-rgb), 0.22);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
  color: #0F172A;
}

.infra-solution-card-head,
.infra-solution-card h3,
.infra-solution-card p {
  position: relative;
  z-index: 1;
}

.infra-solution-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.72rem;
}

.infra-solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.95rem;
  background: rgba(var(--infra-accent-rgb), 0.08);
  color: var(--infra-accent);
  border: 1px solid rgba(var(--infra-accent-rgb), 0.12);
}

.infra-solution-icon i {
  font-size: 1rem;
}

.infra-solution-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.56rem;
  border-radius: 999px;
  background: rgba(var(--infra-accent-rgb), 0.08);
  color: var(--infra-accent);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.infra-solution-card h3 {
  margin: 0 0 0.4rem;
  color: #0F172A;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.infra-solution-card p {
  margin: 0;
  color: #5B6B83;
  font-size: 0.84rem;
  line-height: 1.5;
}

.infra-solution-card--setup {
  --infra-accent: #6366F1;
  --infra-accent-rgb: 99, 102, 241;
}

.infra-solution-card--networking {
  --infra-accent: #6366F1;
  --infra-accent-rgb: 99, 102, 241;
}

.infra-solution-card--security {
  --infra-accent: #6366F1;
  --infra-accent-rgb: 99, 102, 241;
}

.infra-solution-card--servers {
  --infra-accent: #6366F1;
  --infra-accent-rgb: 99, 102, 241;
}

.infra-solution-card--support {
  --infra-accent: #6366F1;
  --infra-accent-rgb: 99, 102, 241;
}

.infra-solution-card--amc {
  --infra-accent: #6366F1;
  --infra-accent-rgb: 99, 102, 241;
}

@media (max-width: 1199.98px) {
  .infra-solutions-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .infra-solutions-title {
    max-width: none;
  }

  .infra-solutions-desc {
    max-width: 50ch;
  }
}

@media (min-width: 1200px) {
  .infra-solutions-grid {
    height: 100%;
    align-self: stretch;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .infra-solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .infra-solutions-copy {
    padding: 1.2rem;
  }

  .infra-solutions-stats {
    max-width: none;
  }

  .infra-solution-card {
    height: auto;
    min-height: 13.2rem;
  }
}

@media (max-width: 767.98px) {
  .infra-solutions-kicker {
    margin-bottom: 0.85rem;
    padding: 0.5rem 0.82rem;
    font-size: 0.74rem;
  }

  .infra-solutions-title {
    max-width: none;
    font-size: clamp(1.5rem, 7.2vw, 2rem);
  }

  .infra-solutions-desc {
    max-width: none;
    font-size: 0.88rem;
  }

  .infra-solutions-list {
    gap: 0.9rem;
    margin-top: 1.6rem;
  }

  .infra-solutions-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.72rem;
  }

  .infra-solutions-stats {
    grid-template-columns: 1fr;
  }

  .infra-solutions-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .infra-solutions-stat:last-child {
    border-bottom: 0;
  }

  .infra-solutions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .infra-solution-card {
    min-height: 0;
    padding: 0.95rem;
    border-radius: 18px;
  }

  .infra-solution-card h3 {
    font-size: 0.94rem;
  }

  .infra-solution-card p {
    font-size: 0.82rem;
  }
}
