/* ─── Image Hotspots & Cards ───────────────────── */
.ihc-section {
  background: #1A1A1A;
  border-radius: 40px;
  margin: 0;
  padding: 80px 60px 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ihc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 36px;
}

.ihc-section h2 {
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #fff;
  margin: 0;
}
.ihc-intro {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.ihc-stage {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: stretch;
}
.ihc-canvas {
  position: relative;
  overflow: hidden;
}

.ihc-illustration {
  position: relative;
  width: 100%;
  aspect-ratio: 1500 / 1000;
}
.ihc-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 24px;
}
.ihc-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
}
.ihc-hotspot-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E2E319;
  color: #1A1A1A;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(226,227,25,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.ihc-hotspot-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #E2E319;
  opacity: 0;
  animation: ihc-hotspot-pulse 2.4s ease-out infinite;
}
@keyframes ihc-hotspot-pulse {
  0%   { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
.ihc-hotspot:hover .ihc-hotspot-dot,
.ihc-hotspot.active .ihc-hotspot-dot {
  transform: scale(1.12);
  box-shadow: 0 0 0 10px rgba(226,227,25,0.28);
}
.ihc-hotspot.active .ihc-hotspot-dot::after { display: none; }

.ihc-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ihc-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 18px 20px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ihc-step:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.ihc-step.active {
  background: #E2E319;
  border-color: #E2E319;
  color: #1A1A1A;
}
.ihc-step.active .ihc-step-num   { background: #1A1A1A; color: #E2E319; }
.ihc-step.active .ihc-step-title { color: #1A1A1A; }
.ihc-step.active .ihc-step-body  { color: rgba(0,0,0,0.75); }

.ihc-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(226,227,25,0.15);
  color: #E2E319;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.ihc-step-text  { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.ihc-step-title { font-size: 16px; font-weight: 600; color: #fff; font-family: 'Galano Grotesque', sans-serif; line-height: 1.1;}
.ihc-step-body  { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.55); }

.ihc-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ihc-play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E2E319;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0;
  flex-shrink: 0;
}
.ihc-play:hover { background: #C8C900; }
.ihc-play svg { width: 14px; height: 14px; }
.ihc-progress {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.ihc-progress-fill {
  position: absolute;
  inset: 0;
  background: #E2E319;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.ihc-counter {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.ihc-counter b { color: #fff; }

.ihc-spotlight {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(226,227,25,0.22) 0%, rgba(226,227,25,0) 65%);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.5s ease;
  z-index: 1;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%) scale(0.7);
}
.ihc-spotlight.visible { opacity: 1; transform: translate(-50%, -50%) scale(1); }

@media (max-width: 980px) {
  .ihc-section { margin: 0 16px; padding: 48px 24px; border-radius: 28px; }
  .ihc-stage  { grid-template-columns: 1fr; }
  .ihc-header { grid-template-columns: 1fr; gap: 16px; }
}