/* ── Navigation ─────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(3, 7, 18, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.brand__symbol {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand__name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav__link {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.main-nav__link:hover,
.main-nav__link.is-active {
  color: var(--text-primary);
}

.main-nav__link.is-active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent-cyan);
  border-radius: 2px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown__toggle:hover {
  color: var(--text-primary);
}

.nav-dropdown__toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown__toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  padding: 0.5rem;
  background: rgba(10, 15, 30, 0.95);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav-dropdown__menu a:hover {
  color: var(--text-primary);
  background: rgba(59, 130, 246, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero Section ───────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: calc(100dvh - var(--nav-height));
  padding-top: var(--nav-height);
  padding-bottom: clamp(2.5rem, 5vh, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}

.hero__network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.hero__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  grid-template-rows: auto;
  column-gap: clamp(1.25rem, 2.5vw, 2.5rem);
  row-gap: 0.75rem;
  align-items: center;
  padding-block: 8px 0;
  max-width: min(1440px, 100%);
}

.hero__content {
  grid-column: 1;
  grid-row: 1;
  max-width: 640px;
}

.hero__visual--hybrid {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin-top: clamp(2rem, 5vh, 3.25rem);
}

.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.85rem;
}

.hero__tagline::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent-cyan);
}

.hero__title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__actions .btn--ghost {
  gap: 0.65rem;
}

.play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.play-icon svg {
  width: 10px;
  height: 10px;
  margin-left: 2px;
}

.hero__platforms {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: clamp(0.5rem, 1.5vh, 1rem);
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 5.5rem;
  min-height: 5.5rem;
  padding: 0.85rem 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.platform-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
}

.platform-card__icon svg {
  width: 100%;
  height: 100%;
}

.platform-card__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.platform-card--web {
  color: #38bdf8;
}

.platform-card--windows {
  color: #3b82f6;
}

.platform-card--mobile {
  color: #c084fc;
}

.platform-card--mobile .platform-card__label {
  background: linear-gradient(90deg, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.platform-card--ios {
  color: #f472b6;
}

.platform-card--ios .platform-card__label {
  background: linear-gradient(90deg, #f472b6, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Hero Visual — Hybrid (artwork + live cards) ─────────────── */

.hero__visual--hybrid {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: min(620px, 100%);
  margin-inline: auto;
  margin-top: 0;
  overflow: visible;
}

.hero__visual--hybrid .hero__hub-scene {
  position: absolute;
  inset: 6% 0 0 0;
  transform: none;
  transform-origin: center center;
  background: transparent;
  overflow: visible;
}

.hero__visual--hybrid .service-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.hero__visual--hybrid .service-cards--back {
  z-index: 12;
}

.hero__visual--hybrid .service-cards--front {
  z-index: 38;
}

/* ── Scene background layers ─────────────────────────────────── */

.hero__visual--hybrid .hub-scene__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__visual--hybrid .hub-scene__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Legacy frame removed — hide if cached markup still includes it */
.hero__visual--hybrid .hub-scene__frame {
  display: none !important;
}

.hero__visual--hybrid .hub-scene__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero__visual--hybrid .hub-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #22d3ee;
  opacity: 0.55;
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.7);
}

.hero__visual--hybrid .hub-particle:nth-child(1)  { top: 8%;  left: 22%; }
.hero__visual--hybrid .hub-particle:nth-child(2)  { top: 14%; left: 68%; }
.hero__visual--hybrid .hub-particle:nth-child(3)  { top: 28%; left: 88%; }
.hero__visual--hybrid .hub-particle:nth-child(4)  { top: 52%; left: 94%; }
.hero__visual--hybrid .hub-particle:nth-child(5)  { top: 76%; left: 80%; }
.hero__visual--hybrid .hub-particle:nth-child(6)  { top: 90%; left: 48%; }
.hero__visual--hybrid .hub-particle:nth-child(7)  { top: 78%; left: 14%; }
.hero__visual--hybrid .hub-particle:nth-child(8)  { top: 52%; left: 5%;  }
.hero__visual--hybrid .hub-particle:nth-child(9)  { top: 28%; left: 10%; }
.hero__visual--hybrid .hub-particle:nth-child(10) { top: 42%; left: 38%; width: 2px; height: 2px; opacity: 0.35; }
.hero__visual--hybrid .hub-particle:nth-child(11) { top: 18%; left: 48%; width: 2px; height: 2px; opacity: 0.35; }
.hero__visual--hybrid .hub-particle:nth-child(12) { top: 62%; left: 62%; width: 2px; height: 2px; opacity: 0.35; }

.hero__visual--hybrid .hub-scene__deco-cubes {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero__visual--hybrid .deco-cube {
  position: absolute;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(34, 211, 238, 0.15));
  border: 1px solid rgba(59, 130, 246, 0.45);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.35);
  transform: rotate(45deg);
}

.hero__visual--hybrid .deco-cube--1 { width: 14px; height: 14px; top: 12%; left: 78%; opacity: 0.7; }
.hero__visual--hybrid .deco-cube--2 { width: 10px; height: 10px; top: 22%; left: 14%; opacity: 0.5; }
.hero__visual--hybrid .deco-cube--3 { width: 18px; height: 18px; top: 68%; left: 88%; opacity: 0.6; }
.hero__visual--hybrid .deco-cube--4 { width: 8px;  height: 8px;  top: 82%; left: 22%; opacity: 0.45; }
.hero__visual--hybrid .deco-cube--5 { width: 12px; height: 12px; top: 38%; left: 6%;  opacity: 0.55; }
.hero__visual--hybrid .deco-cube--6 { width: 10px; height: 10px; top: 55%; left: 92%; opacity: 0.4; }

/* ── Center cube PNG ─────────────────────────────────────────── */

.hero__visual--hybrid .hub-scene__cube-hit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 27%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 31;
  transform: translate(-50%, -42%);
  will-change: transform;
  pointer-events: auto;
}

.hero__visual--hybrid .hub-scene__cube-glow {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(59, 130, 246, 0.55) 0%,
    rgba(99, 102, 241, 0.28) 38%,
    transparent 72%
  );
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  z-index: 0;
}

.hero__visual--hybrid .hub-scene__cube-hit:hover .hub-scene__cube-glow,
.hero__visual--hybrid .hub-scene__cube-hit:focus-visible .hub-scene__cube-glow {
  opacity: 1;
  transform: scale(1);
}

.hero__visual--hybrid .hub-scene__cube-hit:hover .hub-scene__cube,
.hero__visual--hybrid .hub-scene__cube-hit:focus-visible .hub-scene__cube {
  filter:
    drop-shadow(0 8px 32px rgba(59, 130, 246, 0.35))
    drop-shadow(0 0 28px rgba(99, 102, 241, 0.65))
    drop-shadow(0 0 48px rgba(59, 130, 246, 0.45));
}

.hero__visual--hybrid .hub-scene__cube-hit:focus-visible {
  outline: 2px solid rgba(96, 165, 250, 0.85);
  outline-offset: 6px;
  border-radius: 12px;
}

.hero__visual--hybrid .hub-scene__cube {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  z-index: 1;
  filter: drop-shadow(0 8px 32px rgba(59, 130, 246, 0.35));
  transition: filter 0.45s ease;
}

.hero__visual--hybrid .hub-circuit-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 28;
  pointer-events: none;
  overflow: visible;
}

.hero__visual--hybrid .circuit-line path {
  transition: stroke-opacity 0.5s ease;
}

.hero__visual--hybrid .circuit-line__base {
  stroke-opacity: 0.42;
}

.hero__visual--hybrid .circuit-line__active {
  stroke-opacity: 0;
  stroke-dasharray: 8 14;
}

.hero__visual--hybrid .circuit-line__flow {
  stroke-opacity: 0.5;
  stroke-dasharray: 2 52;
  animation: circuit-packet 3.2s linear infinite;
  animation-delay: calc(var(--line-index, 0) * -0.38s);
}

.hero__visual--hybrid .circuit-line.is-active .circuit-line__base {
  stroke-opacity: 0.22;
}

.hero__visual--hybrid .circuit-line.is-active .circuit-line__active {
  stroke-opacity: 0.35;
  animation: circuit-flow 1.35s linear infinite;
  filter: url(#circuitGlowActive);
}

.hero__visual--hybrid .circuit-line.is-active .circuit-line__flow {
  stroke-opacity: 1;
  stroke-width: 3.2;
  stroke-dasharray: 3 18 1.5 22;
  animation: circuit-packet 1.05s linear infinite;
  filter: url(#circuitGlowActive);
}

@keyframes circuit-flow {
  to {
    stroke-dashoffset: -44;
  }
}

@keyframes circuit-packet {
  to {
    stroke-dashoffset: -96;
  }
}

.hero__visual--hybrid .circuit-line__node {
  transition: opacity 0.5s ease, filter 0.5s ease;
  filter: drop-shadow(0 0 3px currentColor);
  transform-box: fill-box;
  transform-origin: center;
  animation: circuitNodeIdle 3.4s ease-in-out infinite;
  animation-delay: calc(var(--line-index, 0) * -0.32s);
}

@keyframes circuitNodeIdle {
  0%, 100% { transform: scale(1); opacity: 0.68; }
  50% { transform: scale(1.22); opacity: 0.88; }
}

.hero__visual--hybrid .circuit-line.is-active .circuit-line__node {
  filter: drop-shadow(0 0 6px currentColor) drop-shadow(0 0 14px currentColor);
  animation: circuitNodePulse 1.05s ease-in-out infinite;
}

@keyframes circuitNodePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.55); }
}

.hero__visual--hybrid .service-card {
  position: absolute;
  width: 25%;
  min-width: 158px;
  max-width: 196px;
  border-radius: 14px;
  will-change: transform, left, top, width;
  transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1), max-width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  cursor: default;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.hero__visual--hybrid .service-card.is-hovered {
  z-index: 62;
  cursor: pointer;
  pointer-events: auto;
}

.hero__visual--hybrid .service-card.is-active.is-hovered {
  transition: width 0.22s ease, max-width 0.22s ease, min-width 0.22s ease;
}

.hero__visual--hybrid .service-card.is-active.is-hovered .service-card__inner {
  transition: padding 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.hero__visual--hybrid .service-card__glow {
  display: none;
}

.hero__visual--hybrid .service-card__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.68rem 0.7rem;
  pointer-events: auto;
  cursor: pointer;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(var(--card-accent-rgb), 0.16) 0%, rgba(var(--card-accent-rgb), 0) 42%),
    linear-gradient(158deg, rgba(22, 32, 58, 0.72) 0%, rgba(11, 18, 38, 0.6) 52%, rgba(7, 12, 28, 0.52) 100%);
  border: 1px solid rgba(var(--card-accent-rgb), 0.34);
  border-radius: 14px;
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.42),
    0 3px 10px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 0 1px rgba(var(--card-accent-rgb), 0.08);
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    background 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__visual--hybrid .service-card.is-hovered:not(.is-active) .service-card__inner {
  border-color: rgba(var(--card-accent-rgb), 0.6);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 4px 14px rgba(0, 0, 0, 0.3),
    0 0 26px rgba(var(--card-accent-rgb), 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.hero__visual--hybrid .service-card.is-hovered:not(.is-active) .service-card__shine {
  opacity: 1;
  transform: translateX(20%) rotate(-8deg);
}

.hero__visual--hybrid .service-card__shine {
  position: absolute;
  inset: -20% -35%;
  background: linear-gradient(
    118deg,
    transparent 36%,
    rgba(255, 255, 255, 0.03) 44%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.04) 58%,
    transparent 68%
  );
  opacity: 0;
  transform: translateX(-28%) rotate(-8deg);
  transition: opacity 0.65s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 2;
}

.hero__visual--hybrid .service-card__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(var(--card-accent-rgb), 0.7) 0%,
    rgba(var(--card-accent-rgb), 0.15) 45%,
    rgba(59, 130, 246, 0.35) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.72;
  transition: opacity 0.75s ease, background 0.75s ease;
}

.hero__visual--hybrid .service-card.is-active {
  z-index: 58;
  width: 43%;
  min-width: 222px;
  max-width: 296px;
  opacity: 1;
  pointer-events: auto;
}

.hero__visual--hybrid .service-card.is-active .service-card__inner {
  opacity: 1;
  background: linear-gradient(
    158deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgb(var(--card-accent-rgb)) 18%,
    color-mix(in srgb, rgb(var(--card-accent-rgb)) 72%, rgb(12, 20, 42)) 48%,
    rgb(12, 20, 42) 100%
  );
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  padding: 0.8rem 0.88rem;
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.58),
    0 12px 28px rgba(0, 0, 0, 0.35),
    0 0 42px rgba(var(--card-accent-rgb), 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}

.hero__visual--hybrid .service-card.is-active .service-card__inner::before {
  opacity: 1;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(var(--card-accent-rgb), 0.85) 22%,
    rgba(var(--card-accent-rgb), 0.25) 55%,
    rgba(59, 130, 246, 0.45) 100%
  );
}

.hero__visual--hybrid .service-card.is-active .service-card__shine {
  opacity: 1;
  transform: translateX(18%) rotate(-8deg);
  animation: cardShineSweep 3.6s ease-in-out infinite;
}

@keyframes cardShineSweep {
  0%, 100% { transform: translateX(10%) rotate(-8deg); opacity: 0.75; }
  50% { transform: translateX(24%) rotate(-6deg); opacity: 1; }
}

.hero__visual--hybrid .service-card.is-active .service-card__icon-wrap {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.16),
    0 8px 18px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: #fff;
  transform: translateZ(12px);
  animation: iconLift 2.6s ease-in-out infinite;
}

@keyframes iconLift {
  0%, 100% { transform: translateZ(12px) translateY(0) scale(1); }
  50% { transform: translateZ(18px) translateY(-3px) scale(1.08); }
}

.hero__visual--hybrid .service-card.is-active .service-card__icon-wrap svg {
  animation: iconGlow 2.6s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.35));
}

@keyframes iconGlow {
  0%, 100% { opacity: 0.92; }
  50% { opacity: 1; }
}

.hero__visual--hybrid .service-card.is-active .service-card__title {
  font-size: 0.96rem;
  color: #fff;
}

.hero__visual--hybrid .service-card.is-active .service-card__desc {
  color: rgba(241, 245, 249, 0.92);
}

.hero__visual--hybrid .service-card__icon-wrap {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(
    145deg,
    rgba(var(--card-accent-rgb), 0.28) 0%,
    rgba(var(--card-accent-rgb), 0.08) 100%
  );
  border: 1px solid rgba(var(--card-accent-rgb), 0.5);
  color: var(--card-accent);
  box-shadow:
    0 0 16px rgba(var(--card-accent-rgb), 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.75s ease,
    border-color 0.75s ease;
}

.hero__visual--hybrid .service-card__icon-wrap svg {
  width: 19px;
  height: 19px;
}

.hero__visual--hybrid .service-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__visual--hybrid .service-card__title {
  font-size: clamp(0.72rem, 1.15vw, 0.82rem);
  font-weight: 700;
  margin: 0 0 0.16rem;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: #f8fafc;
  text-wrap: balance;
}

.hero__visual--hybrid .service-card__desc {
  font-size: clamp(0.54rem, 0.9vw, 0.6rem);
  color: rgba(203, 213, 225, 0.82);
  margin: 0;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-wrap: pretty;
}

/* Let the spotlighted / opened card reveal the full description */
.hero__visual--hybrid .service-card.is-active .service-card__desc {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

/* Legacy pure-CSS hub (kept for reference, unused in hybrid mode) */
.hero__visual:not(.hero__visual--hybrid) {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 720px;
  margin-inline: auto;
  perspective: 1600px;
  overflow: visible;
}

.hero__hub-scene {
  position: absolute;
  inset: 2% 0;
  transform-style: preserve-3d;
  transform: rotateX(16deg) rotateY(-5deg);
  transform-origin: center 52%;
}

/* ── SVG Hexagon Floor ─────────────────────────────────────── */

.hexagon-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hex-svg {
  width: 100%;
  height: 100%;
}

.hex-floor {
  fill: none;
  stroke: url(#hexEdgeGrad);
  stroke-width: 3;
  filter: url(#neonGlow);
}

.hex-floor-fill {
  fill: rgba(2, 6, 20, 0.72);
  stroke: rgba(34, 211, 238, 0.06);
  stroke-width: 1;
}

.hex-inner-grid {
  fill: none;
  stroke: rgba(59, 130, 246, 0.06);
  stroke-width: 0.6;
  stroke-dasharray: 4 6;
}

.hex-floor-glow {
  animation: hubPulse 4s ease-in-out infinite;
}

@keyframes hubPulse {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

/* ── Particles ─────────────────────────────────────────────── */

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #22d3ee;
  opacity: 0.55;
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.7);
}

.particle:nth-child(1)  { top: 8%;  left: 22%; }
.particle:nth-child(2)  { top: 14%; left: 68%; }
.particle:nth-child(3)  { top: 28%; left: 88%; }
.particle:nth-child(4)  { top: 52%; left: 94%; }
.particle:nth-child(5)  { top: 76%; left: 80%; }
.particle:nth-child(6)  { top: 90%; left: 48%; }
.particle:nth-child(7)  { top: 78%; left: 14%; }
.particle:nth-child(8)  { top: 52%; left: 5%;  }
.particle:nth-child(9)  { top: 28%; left: 10%; }
.particle:nth-child(10) { top: 42%; left: 38%; width: 2px; height: 2px; opacity: 0.35; }
.particle:nth-child(11) { top: 18%; left: 48%; width: 2px; height: 2px; opacity: 0.35; }
.particle:nth-child(12) { top: 62%; left: 62%; width: 2px; height: 2px; opacity: 0.35; }

/* ── PCB Connection Lines ────────────────────────────────────── */

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

.connection-line {
  fill: none;
  stroke: rgba(34, 211, 238, 0.42);
  stroke-width: 0.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 3 2.5;
  vector-effect: non-scaling-stroke;
  transition: stroke 0.5s ease, stroke-width 0.5s ease, filter 0.5s ease;
}

.connection-line.is-active {
  stroke: var(--line-accent, #22d3ee);
  stroke-width: 0.9;
  stroke-dasharray: none;
  filter: drop-shadow(0 0 6px var(--line-accent, #22d3ee));
}

/* ── Central 3D Cube ─────────────────────────────────────────── */

.cube-scene {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 118px;
  height: 118px;
  transform: translate(-50%, -65%);
  perspective: 800px;
  z-index: 6;
}

.cube-scene::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 180px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.5), rgba(168, 85, 247, 0.15) 45%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: -2;
}

.cube-tilt {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}

.cube__face {
  position: absolute;
  width: 118px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, rgba(6, 16, 40, 0.98), rgba(18, 42, 88, 0.9));
  border: 1px solid rgba(59, 130, 246, 0.6);
  box-shadow:
    inset 0 0 30px rgba(59, 130, 246, 0.25),
    0 0 24px rgba(59, 130, 246, 0.2);
  backface-visibility: visible;
  overflow: hidden;
}

.cube__face--front  { transform: rotateY(0deg) translateZ(59px); }
.cube__face--back   { transform: rotateY(180deg) translateZ(59px); }
.cube__face--right  { transform: rotateY(90deg) translateZ(59px); }
.cube__face--left   { transform: rotateY(-90deg) translateZ(59px); }
.cube__face--top    { transform: rotateX(90deg) translateZ(59px); }
.cube__face--bottom { transform: rotateX(-90deg) translateZ(59px); }

.cube__face img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.7));
  position: relative;
  z-index: 2;
}

.cube__glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.45), rgba(168, 85, 247, 0.12) 45%, transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.cube__circuit {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 3px;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 7px, rgba(34, 211, 238, 0.08) 7px, rgba(34, 211, 238, 0.08) 8px),
    repeating-linear-gradient(90deg, transparent, transparent 7px, rgba(34, 211, 238, 0.08) 7px, rgba(34, 211, 238, 0.08) 8px);
  pointer-events: none;
  z-index: 1;
}

/* ── Service Cards (reference layout) ────────────────────────── */

.service-cards {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.service-card {
  position: absolute;
  left: var(--card-x);
  top: var(--card-y);
  transform: translate(-50%, -50%) scale(var(--card-depth, 1));
  width: 198px;
  border-radius: 11px;
  will-change: transform;
  z-index: 1;
}

.service-card__glow {
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  opacity: 0.4;
  background: radial-gradient(ellipse at 25% 20%, rgba(var(--card-accent-rgb), 0.45), transparent 68%);
  z-index: -1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card__inner {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.65rem 0.7rem;
  background: rgba(6, 12, 28, 0.88);
  border: 1px solid rgba(var(--card-accent-rgb), 0.55);
  border-radius: 10px;
  backdrop-filter: blur(16px);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.5),
    0 0 16px rgba(var(--card-accent-rgb), 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-card.is-active {
  z-index: 15;
}

.service-card.is-active .service-card__glow {
  opacity: 1;
}

.service-card.is-active .service-card__inner {
  background: rgba(10, 18, 40, 0.95);
  border-color: rgba(var(--card-accent-rgb), 0.9);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.55),
    0 0 32px rgba(var(--card-accent-rgb), 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-card__icon-wrap {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(var(--card-accent-rgb), 0.12);
  border: 1px solid rgba(var(--card-accent-rgb), 0.45);
  color: var(--card-accent);
  box-shadow: 0 0 12px rgba(var(--card-accent-rgb), 0.25);
}

.service-card__icon-wrap svg {
  width: 18px;
  height: 18px;
}

.service-card__body {
  min-width: 0;
  padding-top: 1px;
}

.service-card__title {
  font-size: 0.74rem;
  font-weight: 700;
  margin: 0 0 0.18rem;
  line-height: 1.2;
  color: #f8fafc;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 0.58rem;
  color: rgba(148, 163, 184, 0.9);
  margin: 0;
  line-height: 1.35;
}

/* ── Trusted By Section ───────────────────────────────────────── */

.trusted-by-section {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.trusted-by__label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.trusted-by__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.trusted-by__logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(148, 163, 184, 0.35);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.trusted-by__logo:hover {
  color: rgba(148, 163, 184, 0.6);
}

/* ── Service detail modal ──────────────────────────────────────── */

body.service-modal-open {
  overflow: hidden;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.service-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 20, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-modal__dialog {
  position: relative;
  width: min(100%, 560px);
  max-height: min(88vh, 720px);
  overflow: auto;
  padding: 1.6rem 1.6rem 1.4rem;
  border-radius: 20px;
  border: 1px solid rgba(var(--modal-accent-rgb, 59, 130, 246), 0.45);
  background:
    linear-gradient(165deg, rgba(16, 26, 52, 0.98) 0%, rgba(8, 14, 30, 0.98) 55%, rgba(6, 10, 22, 1) 100%);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(var(--modal-accent-rgb, 59, 130, 246), 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-modal.is-open .service-modal__dialog {
  transform: translateY(0) scale(1);
}

.service-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.65);
  color: #e2e8f0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.service-modal__close:hover {
  border-color: rgba(var(--modal-accent-rgb, 59, 130, 246), 0.55);
  background: rgba(var(--modal-accent-rgb, 59, 130, 246), 0.12);
}

.service-modal__close svg {
  width: 18px;
  height: 18px;
}

.service-modal__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.15rem;
  padding-right: 2rem;
}

.service-modal__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--modal-accent, #3b82f6);
  background: rgba(var(--modal-accent-rgb, 59, 130, 246), 0.16);
  border: 1px solid rgba(var(--modal-accent-rgb, 59, 130, 246), 0.45);
  box-shadow: 0 0 24px rgba(var(--modal-accent-rgb, 59, 130, 246), 0.22);
}

.service-modal__icon svg {
  width: 26px;
  height: 26px;
}

.service-modal__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--modal-accent, #3b82f6);
}

.service-modal__title {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f8fafc;
}

.service-modal__tagline {
  margin: 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

.service-modal__body {
  margin-bottom: 1.35rem;
}

.service-modal__overview {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #cbd5e1;
}

.service-modal__metric {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1.15rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(var(--modal-accent-rgb, 59, 130, 246), 0.28);
  background: rgba(var(--modal-accent-rgb, 59, 130, 246), 0.1);
}

.service-modal__metric-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--modal-accent, #3b82f6);
  line-height: 1;
}

.service-modal__metric-label {
  font-size: 0.78rem;
  color: #94a3b8;
}

.service-modal__features-title {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e2e8f0;
}

.service-modal__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.service-modal__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #cbd5e1;
}

.service-modal__feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--modal-accent, #3b82f6);
  background: rgba(var(--modal-accent-rgb, 59, 130, 246), 0.14);
}

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

.service-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── All-services hub modal ──────────────────────────────────── */

.services-hub-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.services-hub-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.services-hub-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 18, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.services-hub-modal__dialog {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 20px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(59, 130, 246, 0.22), transparent 55%),
    linear-gradient(165deg, rgba(12, 20, 42, 0.98) 0%, rgba(6, 11, 26, 0.98) 100%);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transform: translateY(18px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-hub-modal.is-open .services-hub-modal__dialog {
  transform: translateY(0) scale(1);
}

.services-hub-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.65);
  color: #e2e8f0;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.services-hub-modal__close:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(148, 163, 184, 0.45);
}

.services-hub-modal__close svg {
  width: 18px;
  height: 18px;
}

.services-hub-modal__header {
  padding-right: 2.5rem;
  margin-bottom: 1.5rem;
}

.services-hub-modal__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #60a5fa;
}

.services-hub-modal__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.2;
  color: #f8fafc;
}

.services-hub-modal__subtitle {
  margin: 0;
  max-width: 62ch;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(203, 213, 225, 0.88);
}

.services-hub-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.services-hub-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  text-align: left;
  border-radius: 14px;
  border: 1px solid rgba(var(--hub-card-accent-rgb), 0.35);
  background: linear-gradient(
    155deg,
    rgba(var(--hub-card-accent-rgb), 0.14) 0%,
    rgba(8, 14, 32, 0.92) 55%,
    rgba(6, 11, 26, 0.98) 100%
  );
  color: #e2e8f0;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.services-hub-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--hub-card-accent-rgb), 0.75);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(var(--hub-card-accent-rgb), 0.22);
}

.services-hub-card__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(var(--hub-card-accent-rgb), 0.18);
  border: 1px solid rgba(var(--hub-card-accent-rgb), 0.4);
  color: var(--hub-card-accent);
}

.services-hub-card__icon svg {
  width: 22px;
  height: 22px;
}

.services-hub-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.services-hub-card__title {
  font-size: 0.98rem;
  font-weight: 600;
  color: #f8fafc;
}

.services-hub-card__desc {
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(203, 213, 225, 0.82);
}

.services-hub-card__metric {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: auto;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  width: 100%;
}

.services-hub-card__metric strong {
  font-size: 1.05rem;
  color: var(--hub-card-accent);
}

.services-hub-card__metric small {
  font-size: 0.7rem;
  color: rgba(148, 163, 184, 0.9);
}

.services-hub-modal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

@media (max-width: 900px) {
  .services-hub-modal__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .services-hub-modal__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero__shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-top: 0.25rem;
    row-gap: 1.25rem;
  }

  .hero__content {
    grid-column: 1;
    grid-row: auto;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .hero__visual--hybrid {
    grid-column: 1;
    grid-row: auto;
    order: -1;
    max-width: min(560px, 94vw);
    margin-inline: auto;
  }

  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__platforms {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__visual--hybrid .service-card {
    min-width: 112px;
    width: 28%;
  }

  .hero__visual--hybrid .service-card.is-active {
    min-width: 186px;
    max-width: 248px;
    width: 45%;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .site-header .btn--nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.is-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__visual--hybrid {
    max-width: min(400px, 92vw);
  }

  .hero__visual--hybrid .service-card {
    min-width: 102px;
    width: 30%;
  }

  .hero__visual--hybrid .service-card.is-active {
    min-width: 140px;
    max-width: 188px;
    width: 47%;
  }

  .trusted-by__logos {
    gap: 1.5rem;
  }

  .trusted-by__logo {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero__visual--hybrid {
    max-width: min(340px, 90vw);
  }

  .hero__visual--hybrid .service-card {
    min-width: 82px;
    width: 30%;
    border-radius: 8px;
  }

  .hero__visual--hybrid .service-card__inner {
    padding: 0.4rem 0.42rem;
    gap: 0.35rem;
    border-radius: 8px;
  }

  .hero__visual--hybrid .service-card__icon-wrap {
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }

  .hero__visual--hybrid .service-card__icon-wrap svg {
    width: 13px;
    height: 13px;
  }

  .hero__visual--hybrid .service-card__desc {
    display: none;
  }

  .hero__visual--hybrid .service-card.is-active {
    min-width: 120px;
    max-width: 162px;
    width: 46%;
  }

  .hero__visual--hybrid .service-card.is-active .service-card__desc {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
